/* ==========================================================================
   Ishasha Highlands Eco Estate — stylesheet
   Design language based on the "Nature Lodges Uganda" look:
   deep forest green, sage, olive, terracotta accents, cream backgrounds,
   Montserrat for UI/headings, Amatic SC as handwritten accent.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Palette (sampled from the reference site) */
  --forest:        #2c4437;
  --forest-dark:   #1e3026;
  --forest-deep:   #16241c;
  --sage:          #667c6e;
  --sage-light:    #8fa398;
  --olive:         #627d47;
  --olive-dark:    #4e6538;
  --terracotta:    #c05530;
  --terracotta-dk: #a3441f;
  --cream:         #fbf2e1;
  --cream-dark:    #f1e5cd;
  --sand:          #fdd79a;
  --ink:           #313131;
  --ink-soft:      #565656;
  --line:          #e2ddd2;
  --white:         #ffffff;

  /* Typography */
  --font-body:   'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-head:   'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Amatic SC', 'Comic Sans MS', cursive;
  --font-text:   'Roboto', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --wrap:        1200px;
  --wrap-narrow: 860px;
  --gutter:      24px;
  --header-h:    84px;
  --header-h-sm: 68px;

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(22, 36, 28, .08);
  --shadow-md: 0 10px 30px rgba(22, 36, 28, .12);
  --shadow-lg: 0 24px 60px rgba(22, 36, 28, .22);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--white);
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg, video { max-width: 100%; display: block; }

a { color: var(--olive); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--terracotta); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--forest);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2rem, 5.2vw, 3.4rem); letter-spacing: .04em; text-transform: uppercase; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.25rem); letter-spacing: .05em; text-transform: uppercase; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); letter-spacing: .06em; text-transform: uppercase; }
h4 { font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.2em; padding-left: 1.2em; }
li { margin-bottom: .4em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }

::selection { background: var(--sand); color: var(--forest-deep); }

:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; }

/* --------------------------------------------------------------------------
   3. Utilities
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--cream { background: var(--cream); }
.section--sand  { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
.section--forest { background: var(--forest); color: rgba(255,255,255,.82); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--white); }

.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  z-index: 999; background: var(--forest); color: #fff; padding: 12px 20px;
  border-radius: 0 0 6px 6px; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* Handwritten accent line, as used above headings on the reference site */
.overline {
  font-family: var(--font-accent);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--olive);
  text-transform: none;
  margin: 0 0 .25em;
  display: block;
}
.overline--light { color: var(--sand); }

/* Small uppercase eyebrow, as used above the lodge names */
.eyebrow {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 .5em;
  display: block;
}
.eyebrow--light { color: var(--sand); }

.lead { font-size: 1.08rem; line-height: 1.85; color: var(--ink-soft); }

.rule {
  width: 64px; height: 3px; background: var(--terracotta);
  border-radius: 2px; margin: 0 0 28px;
}
.center .rule { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all .28s var(--ease);
  line-height: 1;
  text-align: center;
}
.btn + .btn { margin-left: 12px; }

.btn--primary { background: var(--olive); border-color: var(--olive); color: #fff; }
.btn--primary:hover { background: var(--olive-dark); border-color: var(--olive-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--accent { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.btn--accent:hover { background: var(--terracotta-dk); border-color: var(--terracotta-dk); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; border-color: var(--olive); color: var(--olive); }
.btn--ghost:hover { background: var(--olive); color: #fff; }

.btn--light { background: transparent; border-color: rgba(255,255,255,.75); color: #fff; }
.btn--light:hover { background: #fff; border-color: #fff; color: var(--forest); }

.btn--block { display: block; width: 100%; margin-left: 0; }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--forest-deep);
  color: rgba(255,255,255,.7);
  font-size: .74rem;
  letter-spacing: .08em;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 38px; flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.75); }
.topbar a:hover { color: var(--sand); }
.topbar__contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__contact span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__contact svg { width: 13px; height: 13px; fill: currentColor; flex: none; }

.langswitch { display: flex; align-items: center; gap: 2px; }
.langswitch button {
  background: none; border: 0; cursor: pointer; padding: 4px 9px;
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; color: rgba(255,255,255,.6);
  text-transform: uppercase; transition: color .2s var(--ease);
}
.langswitch button:hover { color: #fff; }
.langswitch button[aria-current="true"] { color: var(--sand); }
.langswitch span { color: rgba(255,255,255,.25); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--forest);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
/* Transparent over the hero on pages that have one */
body.has-hero .site-header { position: fixed; left: 0; right: 0; background: transparent; }
body.has-hero .site-header .topbar { background: rgba(22,36,28,.42); }
body.has-hero .site-header.is-stuck { background: var(--forest); box-shadow: var(--shadow-md); }
body.has-hero .site-header.is-stuck .topbar { background: var(--forest-deep); }
.site-header.is-stuck { box-shadow: var(--shadow-md); }

/* De navigatie telt acht items; die passen niet in de gewone 1200px-container. */
.site-header .wrap { max-width: 1480px; }

.navbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: var(--header-h);
  transition: min-height .3s var(--ease);
}
.is-stuck .navbar { min-height: var(--header-h-sm); }

/* Brand */
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-head); font-weight: 700; color: #fff;
  font-size: 1.02rem; letter-spacing: .13em; text-transform: uppercase;
}
.brand__tag {
  font-family: var(--font-accent); font-size: 1.05rem;
  color: var(--sand); letter-spacing: .04em;
}

/* Desktop menu */
.nav { display: flex; align-items: center; gap: 4px; }
.nav ul { list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
.nav li { margin: 0; position: relative; }
.nav > ul > li > a {
  display: block; padding: 10px 11px;
  font-family: var(--font-head); font-size: .73rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.86);
  white-space: nowrap;
}
.nav > ul > li > a:hover,
.nav > ul > li > a[aria-current="page"] { color: var(--sand); }
.nav > ul > li > a[aria-current="page"] { position: relative; }
.nav > ul > li > a[aria-current="page"]::after {
  content: ""; position: absolute; left: 11px; right: 11px; bottom: 2px;
  height: 2px; background: var(--terracotta);
}

/* Dropdown */
.has-sub > a::after {
  content: ""; display: inline-block; width: 5px; height: 5px; margin-left: 7px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.subnav {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--white); box-shadow: var(--shadow-md); border-top: 3px solid var(--terracotta);
  padding: 8px 0; display: block; flex-direction: column; gap: 0;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.has-sub:hover > .subnav,
.has-sub:focus-within > .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.subnav li { width: 100%; }
.subnav a {
  display: block; padding: 10px 20px; color: var(--forest);
  font-family: var(--font-head); font-size: .74rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}
.subnav a:hover { background: var(--cream); color: var(--terracotta); }

.nav__cta { margin-left: 10px; padding: 12px 24px; font-size: .72rem; }

/* Burger */
.burger {
  display: none; width: 46px; height: 46px; border: 0; background: transparent;
  cursor: pointer; padding: 11px; flex: none;
}
.burger span {
  display: block; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span + span { margin-top: 6px; }
body.nav-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  padding: calc(var(--header-h) + 60px) var(--gutter) 90px;
  background: linear-gradient(135deg, var(--forest-dark), var(--sage) 55%, var(--olive));
  background-size: cover; background-position: center;
  overflow: hidden;
}
.hero--page { min-height: 62svh; }

.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

/* Achtergrondvideo. Ontbreekt het bestand, dan blijft de groene gradient
   (en eventueel de poster-afbeelding) gewoon staan. */
.hero__video {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .9;                  /* helder beeld; leesbaarheid komt van de scrim */
  pointer-events: none;
  transition: opacity .8s var(--ease);
}
.hero__video.is-missing { opacity: 0; }

/* Overlay: donker onder de balk en onderaan, helder in het midden zodat het
   beeld scherp oogt en niet in een waas verdwijnt. */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg,
    rgba(22,36,28,.55) 0%,
    rgba(22,36,28,.12) 26%,
    rgba(22,36,28,.10) 52%,
    rgba(22,36,28,.42) 78%,
    rgba(22,36,28,.72) 100%);
}
.hero__inner {
  position: relative; z-index: 3; max-width: 900px;
  padding: 40px 20px;
}
/* Zachte, plaatselijke scrim enkel achter de tekst — houdt de titel leesbaar
   zonder het hele beeld te vertroebelen. */
.hero__inner::before {
  content: ""; position: absolute; inset: -10% -8%;
  z-index: -1; border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(16,24,19,.55) 0%, rgba(16,24,19,.32) 45%, transparent 72%);
  filter: blur(6px);
}
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.35); margin-bottom: .35em; }
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.92);
  max-width: 680px; margin: 0 auto 34px;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.hero .overline { color: var(--sand); }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.8);
  font-family: var(--font-head); font-size: .64rem; letter-spacing: .2em;
  text-transform: uppercase; display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

/* Breadcrumb strip under inner-page heroes */
.crumbs {
  background: var(--cream); border-bottom: 1px solid var(--line);
  font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  font-family: var(--font-head); color: var(--sage);
}
.crumbs .wrap { padding-top: 14px; padding-bottom: 14px; }
.crumbs a { color: var(--sage); }
.crumbs a:hover { color: var(--terracotta); }
.crumbs span { margin: 0 8px; opacity: .5; }

/* --------------------------------------------------------------------------
   7. Image placeholders (until real photos are dropped in)
   -------------------------------------------------------------------------- */
.media {
  position: relative; overflow: hidden;
  background: repeating-linear-gradient(135deg, #7d8f80 0 18px, #718475 18px 36px);
  isolation: isolate;
}
.media::before {
  content: attr(data-photo);
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 16px; text-align: center;
  font-family: var(--font-head); font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.85);
}
.media img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), opacity .3s var(--ease);
}
.media img.is-missing { opacity: 0; }
.media--4x3  { aspect-ratio: 4 / 3; }
.media--3x2  { aspect-ratio: 3 / 2; }
.media--16x9 { aspect-ratio: 16 / 9; }
.media--1x1  { aspect-ratio: 1 / 1; }
.media--tall { aspect-ratio: 3 / 4; }

/* --------------------------------------------------------------------------
   8. Section headings
   -------------------------------------------------------------------------- */
.sec-head { margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head p { max-width: 720px; }
.sec-head.center p { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   9. Cards & grids
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; height: 100%;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card:hover .media img { transform: scale(1.07); }
.card__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .5em; }
.card__body p { font-size: .94rem; }
.card__body .btn { margin-top: auto; align-self: flex-start; }

/* Feature tiles (icon + text) */
.tile { text-align: center; padding: 34px 24px; background: #fff; border: 1px solid var(--line); height: 100%; }
.tile__icon {
  width: 60px; height: 60px; margin: 0 auto 20px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--cream); color: var(--olive);
}
.tile__icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.tile h3 { font-size: .95rem; letter-spacing: .1em; }
.tile p { font-size: .9rem; margin: 0; }

/* Numbered list (mission values) */
.value { display: flex; gap: 22px; align-items: flex-start; }
.value__num {
  flex: none; width: 54px; height: 54px; border-radius: 50%;
  background: var(--forest); color: var(--sand);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
}
.value h3 { margin-bottom: .35em; }
.value p { font-size: .95rem; margin: 0; }

/* --------------------------------------------------------------------------
   10. Split (image + text) blocks
   -------------------------------------------------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__body { max-width: 560px; }
.split + .split { margin-top: clamp(56px, 7vw, 96px); }

/* Full-bleed banner with text over image */
.banner {
  position: relative; padding: clamp(72px, 10vw, 140px) 0;
  background: var(--forest); background-size: cover; background-position: center;
  background-attachment: fixed; color: #fff; text-align: center;
}
.banner::after {
  content: ""; position: absolute; inset: 0; background: rgba(22,36,28,.68);
}
.banner .wrap { position: relative; z-index: 2; }
.banner h2 { color: #fff; }
.banner p { color: rgba(255,255,255,.88); max-width: 660px; margin: 0 auto 30px; }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat__num {
  font-family: var(--font-head); font-weight: 700; color: var(--terracotta);
  font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1;
}
.stat__label {
  font-family: var(--font-head); font-size: .7rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--sage); margin-top: 10px;
}

/* --------------------------------------------------------------------------
   11. Gallery
   -------------------------------------------------------------------------- */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 40px;
}
.gallery-filters button {
  background: transparent; border: 1px solid var(--line); cursor: pointer;
  padding: 10px 22px; border-radius: 2px;
  font-family: var(--font-head); font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--sage);
  transition: all .25s var(--ease);
}
.gallery-filters button:hover { border-color: var(--olive); color: var(--olive); }
.gallery-filters button[aria-pressed="true"] { background: var(--forest); border-color: var(--forest); color: #fff; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery figure { margin: 0; cursor: zoom-in; position: relative; }
.gallery figure.is-hidden { display: none; }
.gallery figure:hover .media img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 26px 16px 14px; color: #fff;
  font-family: var(--font-head); font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: linear-gradient(0deg, rgba(22,36,28,.85), transparent);
  opacity: 0; transition: opacity .3s var(--ease);
}
.gallery figure:hover figcaption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  background: rgba(16,24,19,.94);
  align-items: center; justify-content: center; padding: 40px 20px;
}
.lightbox.is-open { display: flex; }
.lightbox__fig { max-width: 1100px; width: 100%; text-align: center; }
.lightbox__fig .media { max-height: 78vh; aspect-ratio: 3 / 2; }
.lightbox__cap {
  color: rgba(255,255,255,.8); margin-top: 16px;
  font-family: var(--font-head); font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.lightbox button {
  position: absolute; background: rgba(255,255,255,.1); border: 0; color: #fff;
  width: 52px; height: 52px; cursor: pointer; font-size: 1.4rem; line-height: 1;
  border-radius: 50%; transition: background .25s var(--ease);
}
.lightbox button:hover { background: rgba(255,255,255,.25); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   12. News
   -------------------------------------------------------------------------- */
.post-meta {
  font-family: var(--font-head); font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 10px; display: block;
}
.post-list { display: grid; gap: 28px; }
.post-item {
  display: grid; grid-template-columns: 320px 1fr; gap: 32px;
  align-items: center; border-bottom: 1px solid var(--line); padding-bottom: 28px;
}
.post-item:last-child { border-bottom: 0; }

/* Newsletter */
.newsletter { display: flex; gap: 12px; max-width: 520px; }
.newsletter input { flex: 1; }

/* --------------------------------------------------------------------------
   13. Location page
   -------------------------------------------------------------------------- */
.map-embed {
  width: 100%; aspect-ratio: 16 / 9; border: 0;
  background: var(--cream); filter: saturate(.85);
}
.route-list { list-style: none; padding: 0; margin: 0; }
.route-list li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 14px 0; border-bottom: 1px dashed var(--line); margin: 0;
  font-size: .95rem;
}
.route-list li:last-child { border-bottom: 0; }
.route-list strong { color: var(--forest); font-family: var(--font-head); font-size: .85rem; letter-spacing: .05em; }
.route-list span { color: var(--sage); white-space: nowrap; font-family: var(--font-head); font-size: .8rem; }

/* --------------------------------------------------------------------------
   14. Forms
   -------------------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--forest);
}
.field .req { color: var(--terracotta); }

input, select, textarea {
  font-family: var(--font-text); font-size: .95rem; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: 2px;
  background: #fff; width: 100%; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(98,125,71,.15);
}
input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] {
  border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(192,85,48,.13);
}
textarea { resize: vertical; min-height: 150px; }
.field__error { color: var(--terracotta); font-size: .78rem; min-height: 1em; }

.form-note { font-size: .82rem; color: var(--sage); }

.form-status {
  padding: 16px 20px; border-radius: 2px; margin-top: 20px;
  font-size: .92rem; display: none;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: #eaf2e3; border-left: 4px solid var(--olive); color: var(--olive-dark); }
.form-status--err { background: #fbeae4; border-left: 4px solid var(--terracotta); color: var(--terracotta-dk); }

/* Contact info blocks */
.info-block { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.info-block__icon {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream); color: var(--olive); display: grid; place-items: center;
}
.info-block__icon svg { width: 20px; height: 20px; fill: currentColor; }
.info-block h4 { margin-bottom: .25em; }
.info-block p { font-size: .93rem; margin: 0; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--forest); color: rgba(255,255,255,.7); font-size: .9rem; }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--sand); }
.site-footer h4 { color: #fff; margin-bottom: 1.1em; letter-spacing: .16em; font-size: .78rem; }

.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; padding: clamp(48px, 6vw, 76px) 0; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55em; }

.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { font-size: .88rem; line-height: 1.8; }

.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  display: grid; place-items: center;
  transition: all .25s var(--ease);
}
.socials a:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-3px); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0; font-size: .78rem;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: rgba(255,255,255,.5);
}

/* Back to top */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--terracotta); color: #fff; display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .3s var(--ease); box-shadow: var(--shadow-md);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.2; }

/* --------------------------------------------------------------------------
   16. Scroll reveal
   -------------------------------------------------------------------------- */
/* Zonder JavaScript (of wanneer de observer niet vuurt) blijft alles gewoon
   zichtbaar — de klasse .js wordt bovenaan de pagina gezet. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .banner { background-attachment: scroll; }
  .hero__video { display: none; }
}

/* --------------------------------------------------------------------------
   17. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1400px) {
  .nav > ul > li > a { padding: 10px 8px; font-size: .70rem; letter-spacing: .07em; }
  .nav__cta { padding: 11px 18px; margin-left: 6px; }
  .navbar { gap: 16px; }
}

@media (max-width: 1240px) {
  .nav > ul > li > a { padding: 10px 6px; font-size: .66rem; letter-spacing: .05em; }
  .nav__cta { padding: 10px 14px; font-size: .66rem; }
  .brand__name { font-size: .92rem; letter-spacing: .1em; }
  .brand__mark { width: 36px; height: 36px; }
}

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 1100px) {
  .burger { display: block; }
  body.has-hero .site-header { position: sticky; background: var(--forest); }
  body.has-hero .site-header .topbar { background: var(--forest-deep); }

  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw);
    background: var(--forest-dark); padding: 92px 26px 40px;
    flex-direction: column; align-items: stretch; gap: 0;
    transform: translateX(102%); transition: transform .35s var(--ease);
    overflow-y: auto; box-shadow: var(--shadow-lg);
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav > ul > li > a {
    padding: 14px 4px; font-size: .82rem; letter-spacing: .12em;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav > ul > li > a[aria-current="page"]::after { display: none; }
  .has-sub > a::after { float: right; margin-top: 6px; }
  .subnav {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; box-shadow: none; border-top: 0;
    padding: 0 0 0 14px; max-height: 0; overflow: hidden;
    transition: max-height .3s var(--ease);
  }
  .has-sub.is-open > .subnav { max-height: 500px; }
  .subnav a { color: rgba(255,255,255,.72); padding: 11px 4px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .subnav a:hover { background: transparent; color: var(--sand); }
  .nav__cta { margin: 22px 0 0; }

  .nav-backdrop {
    position: fixed; inset: 0; z-index: 99; background: rgba(16,24,19,.55);
    opacity: 0; visibility: hidden; transition: opacity .3s var(--ease);
  }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }

  .split, .split--reverse .split__media { grid-template-columns: 1fr; order: 0; }
  .split__body { max-width: none; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .post-item { grid-template-columns: 1fr; gap: 20px; }
  .banner { background-attachment: scroll; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .topbar__contact { display: none; }
  .topbar .wrap { justify-content: center; }
  .btn { display: block; width: 100%; }
  .btn + .btn { margin-left: 0; margin-top: 12px; }
  .nav__cta, .gallery-filters button, .newsletter .btn { width: auto; display: inline-block; }
  .newsletter { flex-direction: column; }
  .newsletter .btn { width: 100%; }
  .brand__mark { width: 36px; height: 36px; }
  .brand__name { font-size: .88rem; letter-spacing: .1em; }
  .value { gap: 16px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
}

/* --------------------------------------------------------------------------
   18. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .to-top, .hero__scroll, .nav-backdrop { display: none !important; }
  body { color: #000; }
  .hero { min-height: auto; padding: 20px 0; color: #000; background: none; }
  .hero::after, .hero__media { display: none; }
  .hero h1 { color: #000; text-shadow: none; }
}
