/* ==========================================================================
   SunTimber N.V. — Design System
   Palette: dark forest green, warm timber brown, white, subtle gold accents
   ========================================================================== */

:root {
  /* Colors */
  --forest-950: #0c1a12;
  --forest-900: #122c1c;
  --forest-800: #1a3d27;
  --forest-700: #234f33;
  --forest-600: #2f6642;
  --timber-700: #6b3e26;
  --timber-600: #8a5232;
  --timber-500: #a9683f;
  --timber-300: #d3a479;
  --timber-100: #f0ddc8;
  --gold-500: #c99a3d;
  --gold-400: #d9b467;
  --gold-300: #e8cd93;
  --cream-50: #faf7f1;
  --cream-100: #f3ede1;
  --white: #ffffff;
  --ink-900: #1b201c;
  --ink-700: #3d453e;
  --ink-500: #636d64;
  --line: #e4ddcf;

  --bg: var(--cream-50);
  --surface: var(--white);
  --text: var(--ink-900);
  --text-muted: var(--ink-500);
  --accent: var(--gold-500);
  --brand: var(--forest-800);

  /* Type */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing / radius / shadow */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(12, 26, 18, 0.06), 0 1px 1px rgba(12,26,18,.04);
  --shadow-md: 0 8px 24px rgba(12, 26, 18, 0.10);
  --shadow-lg: 0 24px 60px rgba(12, 26, 18, 0.18);
  --container: 1240px;

  color-scheme: light;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest-900);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }

p.lede { font-size: 1.15rem; color: var(--text-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-500); color: var(--forest-950); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-400); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--forest-800); }
.btn-outline:hover { background: var(--forest-800); color: var(--white); border-color: var(--forest-800); }
.btn-ghost-light { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background-color .35s ease, box-shadow .35s ease, padding .35s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(250, 247, 241, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.site-header:not(.is-scrolled):not(.is-open) { color: var(--white); }

.brand { display: flex; align-items: center; }
.brand-logo { height: 40px; width: auto; display: block; transition: opacity .2s ease; }
.brand-logo-dark { display: none; }
.site-header.is-scrolled .brand-logo-light, .site-header.is-open .brand-logo-light { display: none; }
.site-header.is-scrolled .brand-logo-dark, .site-header.is-open .brand-logo-dark { display: block; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color .25s ease, color .25s ease;
}
.site-header:not(.is-scrolled):not(.is-open) .main-nav a { color: rgba(255,255,255,.92); }
.site-header.is-scrolled .main-nav a, .site-header.is-open .main-nav a { color: var(--ink-700); }
.main-nav a:hover, .main-nav a.is-active { background: rgba(201,154,61,.16); color: var(--gold-500); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch { position: relative; }
.lang-switch summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px; font-size: .85rem; font-weight: 700; letter-spacing: .04em; }
.lang-switch summary::-webkit-details-marker { display: none; }
.site-header:not(.is-scrolled):not(.is-open) .lang-switch summary { border: 1px solid rgba(255,255,255,.45); color: var(--white); }
.site-header.is-scrolled .lang-switch summary, .site-header.is-open .lang-switch summary { border: 1px solid var(--line); color: var(--ink-700); }
.lang-switch[open] summary,
.site-header:not(.is-scrolled):not(.is-open) .lang-switch[open] summary { background: var(--white); color: var(--forest-900); border-color: var(--line); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  padding: 6px; min-width: 160px; border: 1px solid var(--line);
}
.lang-menu a { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-radius: 8px; font-size: .88rem; color: var(--ink-700); font-weight: 500; }
.lang-menu a:hover { background: var(--cream-100); color: var(--forest-800); }
.lang-menu a.is-active { color: var(--gold-500); font-weight: 700; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px; border-radius: 10px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(255,255,255,.4);
}
.site-header.is-scrolled .nav-toggle, .site-header.is-open .nav-toggle { border-color: var(--line); }
.nav-toggle svg { width: 20px; height: 20px; }
.site-header:not(.is-scrolled):not(.is-open) .nav-toggle { color: var(--white); }
.site-header.is-scrolled .nav-toggle, .site-header.is-open .nav-toggle { color: var(--forest-900); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(180deg, var(--forest-950), var(--forest-800));
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(9,20,13,.35) 0%, rgba(9,20,13,.35) 40%, rgba(9,20,13,.92) 100%),
    linear-gradient(90deg, rgba(9,20,13,.55) 0%, rgba(9,20,13,.05) 55%);
}
.hero-content { position: relative; z-index: 2; padding-block: 160px 88px; max-width: 760px; }
.hero-content .eyebrow { color: var(--gold-300); }
.hero-content h1 { color: var(--white); margin-bottom: 22px; }
.hero-content p.lede { color: rgba(255,255,255,.86); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.18);
  margin-top: 56px;
}
.hero-stats .stat { padding: 22px 24px 0; border-left: 1px solid rgba(255,255,255,.18); }
.hero-stats .stat:first-child { border-left: none; }
.hero-stats .stat b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--gold-300); }
.hero-stats .stat span { font-size: .82rem; color: rgba(255,255,255,.7); }

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex; align-items: flex-end;
  color: var(--white);
  background: linear-gradient(160deg, var(--forest-900), var(--forest-700));
  overflow: hidden;
}
.page-hero .hero-media::after {
  background: linear-gradient(180deg, rgba(9,20,13,.45) 0%, rgba(9,20,13,.55) 40%, rgba(9,20,13,.92) 100%);
}
.page-hero .hero-content { padding-block: 148px 56px; max-width: 720px; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.breadcrumb { position: relative; z-index: 2; display: flex; gap: 8px; font-size: .82rem; color: rgba(255,255,255,.65); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold-300); }

/* ---------- Sections / layout ---------- */
section { padding-block: 100px; }
section.tight { padding-block: 72px; }
.section-alt { background: var(--cream-100); }
.section-forest { background: linear-gradient(160deg, var(--forest-900), var(--forest-800)); color: var(--white); }
.section-forest h2, .section-forest h3 { color: var(--white); }
.section-forest .text-muted { color: rgba(255,255,255,.72); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }

.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.media-frame.tall img { aspect-ratio: 3/4; }
.media-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(250,247,241,.94); backdrop-filter: blur(6px);
  border-radius: var(--radius-sm); padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.media-badge b { font-family: var(--font-display); font-size: 1.3rem; color: var(--forest-800); }
.media-badge span { font-size: .76rem; color: var(--text-muted); }

/* placeholder art for missing photography */
.art-placeholder {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 22px;
  color: rgba(255,255,255,.92);
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 2px, transparent 2px 26px),
    linear-gradient(150deg, var(--timber-600), var(--forest-800) 65%);
  box-shadow: var(--shadow-md);
}
.art-placeholder.alt { background: repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 2px, transparent 2px 26px), linear-gradient(150deg, var(--forest-700), var(--timber-700) 70%); }
.art-placeholder .ph-label { font-size: .76rem; letter-spacing: .04em; background: rgba(12,26,18,.55); padding: 8px 12px; border-radius: 8px; }
.art-placeholder svg { position: absolute; top: 18px; right: 18px; width: 30px; height: 30px; opacity: .55; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(155deg, var(--forest-700), var(--forest-900));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300); margin-bottom: 20px;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card p { color: var(--text-muted); font-size: .95rem; }

.value-card { text-align: center; padding: 34px 24px; }
.value-card .icon { margin-inline: auto; }

.stat-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; text-align: center; }
.stat-card b { display: block; font-family: var(--font-display); font-size: 2.1rem; color: var(--forest-800); }
.stat-card span { font-size: .85rem; color: var(--text-muted); }

/* Species cards */
.species-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.species-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.species-card .swatch { height: 130px; position: relative; display: flex; align-items: flex-end; padding: 16px; }
.species-card .swatch span { background: rgba(12,26,18,.55); color: var(--white); font-size: .72rem; padding: 5px 10px; border-radius: 999px; }
.species-card .body { padding: 22px; }
.species-card h3 { margin-bottom: 2px; }
.species-card .sci { font-style: italic; color: var(--text-muted); font-size: .82rem; display: block; margin-bottom: 12px; }
.species-card .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.species-card .tags span { font-size: .72rem; padding: 4px 10px; border-radius: 999px; background: var(--cream-100); color: var(--ink-700); border: 1px solid var(--line); }

/* Process timeline */
.timeline { position: relative; padding-left: 6px; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px; background: var(--line); }
.timeline-step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding-bottom: 44px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--forest-800); color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  z-index: 1; box-shadow: var(--shadow-sm);
}
.timeline-body { padding-top: 8px; }
.timeline-body h3 { margin-bottom: 8px; }
.timeline-body p { color: var(--text-muted); }

/* Product tabs / categories */
.tab-list { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.tab-list button {
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 22px; font-weight: 600; font-size: .9rem; color: var(--ink-700);
  transition: all .25s ease;
}
.tab-list button.is-active, .tab-list button:hover { background: var(--forest-800); color: var(--white); border-color: var(--forest-800); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade-in .4s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }

.spec-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-table th, .spec-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.spec-table th { background: var(--forest-900); color: var(--white); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.spec-table tr:last-child td { border-bottom: none; }
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); }

/* Facilities stats */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--white); }
.stat-strip .stat { padding: 30px 20px; text-align: center; border-left: 1px solid var(--line); }
.stat-strip .stat:first-child { border-left: none; }
.stat-strip .stat b { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--forest-800); }
.stat-strip .stat span { font-size: .82rem; color: var(--text-muted); }

.equip-list { display: grid; gap: 14px; }
.equip-item { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 20px; }
.equip-item .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold-500); flex-shrink: 0; }
.equip-item b { display: block; font-size: .95rem; }
.equip-item span { font-size: .84rem; color: var(--text-muted); }

/* Export markets */
.market-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; }
.market-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; display: flex; align-items: center; gap: 14px; }
.market-item .flag { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(155deg, var(--forest-700), var(--timber-600)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--gold-300); }
.market-item .flag svg { width: 22px; height: 22px; }
.market-item b { display: block; font-size: .95rem; }
.market-item span { font-size: .8rem; color: var(--text-muted); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: zoom-in;
  aspect-ratio: 4/3;
}
.gallery-item.tall { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute; inset: auto 0 0 0; padding: 16px;
  background: linear-gradient(0deg, rgba(9,20,13,.82), transparent);
  color: var(--white); font-size: .84rem; opacity: 0; transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(9,15,11,.94);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(100%, 1000px); max-height: 82vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox .cap { color: var(--white); text-align: center; margin-top: 16px; font-size: .9rem; }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3);
  color: var(--white); border-radius: 50%; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close { top: 26px; right: 26px; }
.lightbox-nav.prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-nav svg, .lightbox-close svg { width: 20px; height: 20px; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 600; color: var(--ink-700); }
.field label .req { color: var(--gold-500); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 16px; font-size: .95rem; background: var(--cream-50);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--timber-300); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,154,61,.15);
}
.was-validated .field input:invalid, .was-validated .field textarea:invalid,
.field input:user-invalid, .field textarea:user-invalid { border-color: #c25b4a; }
.field .hint { font-size: .76rem; color: var(--text-muted); }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; color: var(--text-muted); margin-bottom: 24px; }
.checkbox-row input { margin-top: 3px; }
.form-note { font-size: .8rem; color: var(--text-muted); margin-top: 14px; }

/* Contact info list */
.info-list { display: grid; gap: 22px; }
.info-item { display: flex; gap: 16px; }
.info-item .icon { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold-300); }
.info-item .icon svg { width: 22px; height: 22px; }
.info-item b { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-300); margin-bottom: 4px; }
.info-item p, .info-item a { font-size: .98rem; }
.info-item a:hover { color: var(--gold-300); }

.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  color: var(--white);
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(201,154,61,.25), transparent 55%);
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; position: relative; }
.cta-band p { color: rgba(255,255,255,.78); position: relative; }
.cta-band .actions { position: relative; display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ---------- Testimonial / quote ---------- */
.quote-block { max-width: 760px; margin-inline: auto; text-align: center; }
.quote-block svg { width: 40px; height: 40px; color: var(--gold-400); margin-inline: auto 18px; }
.quote-block p { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--forest-900); line-height: 1.5; margin-bottom: 20px; }
.quote-block .attr { font-size: .88rem; color: var(--text-muted); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-950); color: rgba(255,255,255,.78); padding-top: 80px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 56px; width: auto; display: block; }
.footer-tagline { margin-top: 18px; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-300); max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; transition: background .25s ease, border-color .25s ease; }
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--forest-950); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { color: var(--white); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; font-family: var(--font-body); font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: .9rem; color: rgba(255,255,255,.7); }
.footer-col a:hover { color: var(--gold-400); }
.footer-col .info-item { flex-direction: column; gap: 4px; }
.footer-col .info-item b { color: rgba(255,255,255,.5); }
.footer-col .info-item p, .footer-col .info-item a { font-size: .88rem; color: rgba(255,255,255,.75); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-block: 24px; font-size: .8rem; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 12px; }
.footer-bottom a:hover { color: var(--gold-400); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-group] > * { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal-group].is-visible > * { opacity: 1; transform: translateY(0); }
[data-reveal-group].is-visible > *:nth-child(2) { transition-delay: .08s; }
[data-reveal-group].is-visible > *:nth-child(3) { transition-delay: .16s; }
[data-reveal-group].is-visible > *:nth-child(4) { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-group] > * { opacity: 1; transform: none; }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--forest-900); color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; }

/* ---------- Utility ---------- */
.text-muted { color: var(--text-muted); }
.mt-0 { margin-top: 0; }
.mb-32 { margin-bottom: 32px; }
.pill { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--cream-100); border: 1px solid var(--line); font-size: .76rem; font-weight: 600; color: var(--forest-800); }
.ico-sm { width: 18px; height: 18px; }
.lang-switch summary svg.chev { width: 14px; height: 14px; transform: rotate(90deg); transition: transform .2s ease; }
.lang-switch[open] summary svg.chev { transform: rotate(270deg); }
.divider { height: 1px; background: var(--line); margin-block: 40px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold-500); color: var(--forest-950); padding: 12px 18px; border-radius: 0 0 8px 0; z-index: 999; font-weight: 700; }
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .hero-stats .stat:nth-child(3) { border-left: none; }
}
@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .stat:nth-child(3) { border-left: none; }
  .stat-strip .stat:nth-child(odd) { }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 40px 32px; }
}
@media (max-width: 1180px) {
  .main-nav, .header-actions .lang-switch { display: none; }
  .nav-toggle { display: flex; }
  .header-actions { gap: 8px; }
}
@media (max-width: 480px) {
  .header-actions > .btn-primary { display: none; }
}
@media (max-width: 1180px) and (min-width: 721px) {
  .hero-content { padding-block: 150px 70px; }
}
@media (max-width: 720px) {
  section { padding-block: 64px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .hero-content { padding-block: 130px 60px; }
  .form-card { padding: 26px; }
  .cta-band .actions { width: 100%; }
  .cta-band .btn { width: 100%; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 95;
  background: var(--forest-950);
  display: flex; flex-direction: column;
  padding: 110px 32px 40px;
  transform: translateX(100%);
  transition: transform .4s ease;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { display: block; padding: 16px 0; font-size: 1.3rem; font-family: var(--font-display); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav .lang-row { display: flex; gap: 10px; margin-top: 30px; }
.mobile-nav .lang-row a { border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 10px 18px; font-size: .95rem; font-family: var(--font-body); flex: 1; text-align: center; }
.mobile-nav .btn { margin-top: 30px; }
