/* ==========================================================================
   V.G.O. GmbH — Huisstijl "Alpine Premium"
   Diep dennengroen + warm goud op crème. Geen third-party fonts/CDN's
   (DSGVO-vriendelijk: geen externe data-overdracht).
   ========================================================================== */

:root {
  /* Brand colours */
  --green-900: #14352a;
  --green-800: #1f4d3a;
  --green-700: #275c45;
  --green-600: #2f6b50;
  --gold:      #c9a24b;
  --gold-600:  #b78f37;
  --gold-700:  #a9842f;
  --cream:     #f7f4ec;
  --cream-2:   #efe9dc;
  --paper:     #ffffff;
  --ink:       #1c2620;
  --muted:     #5c6660;
  --line:      #e2dccd;

  /* Typography */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Noto Sans", sans-serif;

  /* Scale */
  --maxw: 1140px;
  --radius: 14px;
  --shadow: 0 18px 50px -28px rgba(20, 53, 42, 0.55);
  --shadow-sm: 0 6px 22px -16px rgba(20, 53, 42, 0.5);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset ----------------------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--green-700); text-decoration-color: rgba(201, 162, 75, 0.5); text-underline-offset: 3px; }
a:hover { color: var(--green-800); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.12; color: var(--green-900); letter-spacing: 0.2px; }

/* --- Layout helpers -------------------------------------------------------*/
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.eyebrow {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-700);
  display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 56ch; }

/* --- Buttons --------------------------------------------------------------*/
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  padding: 0.85rem 1.5rem; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--green-900); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-600); color: var(--green-900); }
.btn-ghost { border-color: rgba(20, 53, 42, 0.25); color: var(--green-800); }
.btn-ghost:hover { border-color: var(--green-800); background: rgba(31, 77, 58, 0.05); }
.btn-light { background: rgba(247, 244, 236, 0.12); color: var(--cream); border-color: rgba(247, 244, 236, 0.35); }
.btn-light:hover { background: rgba(247, 244, 236, 0.2); color: #fff; }

/* --- Header / nav ---------------------------------------------------------*/
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 236, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--green-900); }
.brand svg, .brand img { width: 40px; height: 40px; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.18rem; letter-spacing: 0.5px; line-height: 1; }
.brand-sub { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-700); }

.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; padding: 0; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--ink); text-decoration: none; padding: 0.4rem 0; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s var(--ease); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }

/* Language switch */
.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: var(--paper); }
.lang-switch button {
  font: inherit; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.35rem 0.7rem; border: 0; background: transparent; color: var(--muted); cursor: pointer;
}
.lang-switch button[aria-pressed="true"] { background: var(--green-800); color: var(--cream); }

/* Mobile menu toggle */
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); cursor: pointer; padding: 0; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--green-900); margin-inline: auto; position: relative; transition: 0.25s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* --- Hero -----------------------------------------------------------------*/
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.hero .container { position: relative; z-index: 2; padding-block: clamp(3.5rem, 9vw, 7rem); }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); margin-bottom: 1.2rem; }
.hero h1 .accent { color: var(--gold-700); }
.hero .lead { font-size: clamp(1.1rem, 2vw, 1.35rem); margin-bottom: 2rem; color: #41504a; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; margin-top: 2.2rem; font-size: 0.92rem; color: var(--muted); }
.hero-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta svg { width: 18px; height: 18px; color: var(--gold-700); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* decorative mountains */
.hero-range { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; width: 100%; height: auto; opacity: 0.5; }

/* --- About ----------------------------------------------------------------*/
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-card { background: var(--green-800); color: var(--cream); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.6rem); box-shadow: var(--shadow); }
.about-card h3 { color: var(--cream); font-size: 1.3rem; margin-bottom: 0.6rem; }
.about-card p { color: rgba(247, 244, 236, 0.82); font-size: 0.97rem; }
.stat-row { display: flex; gap: 1.8rem; margin-top: 1.6rem; flex-wrap: wrap; }
.stat .num { font-family: var(--serif); font-size: 2.1rem; color: var(--gold); line-height: 1; }
.stat .label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,244,236,0.7); }

/* --- Brands ---------------------------------------------------------------*/
.brands { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
.brand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.4rem; }
.brand-card {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; display: flex; flex-direction: column; gap: 0.7rem; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.brand-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--green-700), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.brand-card:hover::before { transform: scaleX(1); }
.brand-card .tag { align-self: flex-start; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 999px; }
.tag-open { background: rgba(47, 107, 80, 0.12); color: var(--green-700); }
.tag-soon { background: rgba(201, 162, 75, 0.18); color: var(--gold-700); }
.tag-night { background: rgba(28, 38, 32, 0.08); color: var(--ink); }
.brand-card h3 { font-size: 1.35rem; }
.brand-card p { color: var(--muted); font-size: 0.95rem; }
.brand-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--cream); border: 1px solid var(--line); }
.brand-icon svg { width: 24px; height: 24px; color: var(--green-700); }

/* --- Contact --------------------------------------------------------------*/
.contact { background: var(--green-900); color: var(--cream); position: relative; overflow: hidden; }
.contact h2 { color: var(--cream); }
.contact .lead { color: rgba(247, 244, 236, 0.8); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.contact-list { list-style: none; padding: 0; display: grid; gap: 1.3rem; margin-top: 1.6rem; }
.contact-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-list .ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 10px; background: rgba(247,244,236,0.08); border: 1px solid rgba(247,244,236,0.16); display: grid; place-items: center; }
.contact-list .ico svg { width: 18px; height: 18px; color: var(--gold); }
.contact-list .k { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,244,236,0.6); }
.contact-list .v { color: var(--cream); }
.contact-list a { color: var(--cream); }
.legal-box { background: rgba(247,244,236,0.06); border: 1px solid rgba(247,244,236,0.14); border-radius: var(--radius); padding: 1.5rem; font-size: 0.9rem; }
.legal-box dl { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1.2rem; margin: 0; }
.legal-box dt { color: rgba(247,244,236,0.6); }
.legal-box dd { margin: 0; color: var(--cream); }

/* --- Footer ---------------------------------------------------------------*/
.site-footer { background: var(--green-900); color: rgba(247,244,236,0.7); border-top: 1px solid rgba(247,244,236,0.12); }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; padding-block: 2.4rem; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.4rem; list-style: none; padding: 0; }
.footer-links a { color: rgba(247,244,236,0.8); text-decoration: none; font-size: 0.92rem; }
.footer-links a:hover { color: var(--gold); }
.footer-fine { font-size: 0.84rem; color: rgba(247,244,236,0.5); }

/* --- Legal pages ----------------------------------------------------------*/
.legal-page { background: var(--paper); }
.legal-page .container { max-width: 820px; }
.legal-page .section { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.legal-page h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.4rem; }
.legal-page h2 { font-size: 1.4rem; margin-top: 2.4rem; margin-bottom: 0.7rem; color: var(--green-800); }
.legal-page h3 { font-size: 1.1rem; margin-top: 1.4rem; margin-bottom: 0.4rem; }
.legal-page p, .legal-page li { color: #38423c; }
.legal-page ul, .legal-page ol { padding-left: 1.3rem; display: grid; gap: 0.4rem; }
.legal-page .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.note {
  border-left: 4px solid var(--gold); background: var(--cream); border-radius: 0 10px 10px 0;
  padding: 1rem 1.2rem; margin: 1.4rem 0; font-size: 0.92rem; color: #4a544e;
}
.note strong { color: var(--green-800); }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; text-decoration: none; margin-top: 2.5rem; }

/* --- Responsive -----------------------------------------------------------*/
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: flex-start;
    gap: 0; background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 0.5rem clamp(1.1rem, 4vw, 2.5rem) 1.2rem; box-shadow: var(--shadow-sm);
    max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease);
  }
  .nav-links a { width: 100%; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .nav[data-open="true"] .nav-links { max-height: 380px; }
}
