/* ============================================================
   ABS INTERNATIONAL — Design System
   Palette per BRD; brand wordmark red per company letterhead
   ============================================================ */
:root {
  --green-900: #12301F;
  --green-800: #173F2A;      /* Primary — Forest Green */
  --green-600: #5E7F45;      /* Secondary — Natural Green */
  --gold: #C9A227;           /* Accent — Warm Gold (use sparingly) */
  --gold-soft: #E5D9A8;
  --bg: #FAFAF7;             /* Warm White */
  --bg-alt: #F3F5F0;
  --ink: #1E2421;
  --muted: #66706A;
  --border: #DDE2DC;
  --white: #FFFFFF;
  --panel: #FFFFFF;          /* card / form surfaces */
  --header-bg: rgba(255, 255, 255, 0.97);
  --heading: #173F2A;        /* heading text (stays a bg color in dark mode) */
  --brand-red: #BE0000;      /* Letterhead wordmark red — brand identity only */
  --wa-green: #25D366;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1180px;
  --radius: 2px;
  --shadow-sm: 0 1px 3px rgba(18, 48, 31, 0.08);
  --shadow-md: 0 10px 34px rgba(18, 48, 31, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Dark theme ---------- */
[data-theme="dark"] {
  --green-600: #8FAE76;
  --bg: #101613;
  --bg-alt: #161F19;
  --ink: #E8ECE8;
  --muted: #9AA59D;
  --border: #2A342C;
  --panel: #1A241E;
  --header-bg: rgba(16, 22, 19, 0.95);
  --heading: #CDE3D2;
  --brand-red: #E9837C;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 34px rgba(0, 0, 0, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  transition: background-color 0.3s, color 0.3s;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green-800); text-decoration: none; }

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

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-600);
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.18;
  color: var(--heading);
  margin: 18px 0 20px;
}
.section-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
}

section { padding: 104px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-gold {
  background: var(--gold);
  color: var(--green-900);
  border-color: var(--gold);
}
.btn-gold:hover { background: #d8b23a; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); }
.btn-green {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}
.btn-green:hover { background: var(--green-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}
.brand img { height: 48px; width: auto; }
.brand > span { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.02em;
  color: var(--brand-red);
  line-height: 1.1;
  white-space: nowrap;
}
.brand-tag {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover::after { width: 100%; }
.nav-cta {
  padding: 11px 24px !important;
  background: var(--green-800);
  color: var(--white) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.3s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--green-900); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-800);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 0 120px;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-bg img.active { opacity: 1; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(18, 48, 31, 0.92) 0%, rgba(23, 63, 42, 0.72) 48%, rgba(23, 63, 42, 0.38) 100%);
}
.hero-content { max-width: 720px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.12;
  margin: 22px 0 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}
.hero p {
  font-size: 18px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s infinite var(--ease);
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--green-800);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat .num {
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 56px);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat .num .suffix { color: var(--gold); }
.stat .label {
  margin-top: 10px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* ============================================================
   LEGACY / ABOUT
   ============================================================ */
.legacy-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 76px;
  align-items: center;
}
.legacy-copy p { color: var(--muted); margin-bottom: 18px; }
.legacy-copy strong { color: var(--ink); font-weight: 600; }
.legacy-figure { position: relative; }
.legacy-figure img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.legacy-figure::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -22px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.legacy-badge {
  position: absolute;
  left: -30px;
  bottom: 40px;
  background: var(--green-800);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.legacy-badge .year {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold);
  line-height: 1;
}
.legacy-badge .cap {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
}

.timeline {
  margin-top: 44px;
  border-left: 1px solid var(--border);
  padding-left: 30px;
  display: grid;
  gap: 26px;
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34.5px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
}
.timeline-item .t-year {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--heading);
}
.timeline-item p { color: var(--muted); font-size: 15px; margin-top: 4px; }

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.value-chip {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: 100px;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { background: var(--bg-alt); }
.products .section-head { text-align: center; }
.products .section-head .eyebrow { justify-content: center; }
.products .section-head .eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.products .section-lead { margin: 0 auto; }

.product-group-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 70px 0 30px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--heading);
}
.product-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.product-group-label .tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-600);
  padding: 5px 12px;
  border-radius: 100px;
}

.export-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.export-card {
  position: relative;
  display: grid;
  grid-template-columns: 45% 55%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.export-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.export-card img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.export-card .body { padding: 30px 28px; display: flex; flex-direction: column; }
.export-card h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--heading);
}
.export-card .origin {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 6px 0 12px;
}
.export-card p { font-size: 14.5px; color: var(--muted); flex: 1; }
.export-card .enquire {
  margin-top: 18px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading);
}
.export-card .enquire::after { content: " →"; color: var(--gold); }

.import-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-card .img-wrap { overflow: hidden; aspect-ratio: 1 / 0.82; }
.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .img-wrap img { transform: scale(1.05); }
.product-card .body { padding: 24px 24px 26px; }
.product-card h4 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--heading);
}
.product-card .origin {
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 5px 0 10px;
}
.product-card p { font-size: 14px; color: var(--muted); }
.product-card .enquire {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading);
}
.product-card .enquire::after { content: " →"; color: var(--gold); }

/* ============================================================
   GLOBAL REACH
   ============================================================ */
.reach {
  background: linear-gradient(rgba(18, 48, 31, 0.94), rgba(18, 48, 31, 0.96)), url("../assets/vineyard.jpg") center/cover no-repeat;
  color: var(--white);
}
.reach .eyebrow { color: var(--gold-soft); }
.reach .section-title { color: var(--white); }
.reach .section-lead { color: rgba(255, 255, 255, 0.75); }
.reach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 56px;
}
.reach-col {
  border-top: 1px solid rgba(201, 162, 39, 0.45);
  padding-top: 22px;
}
.reach-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
}
.reach-col ul { list-style: none; display: grid; gap: 10px; }
.reach-col li {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 10px;
}
.reach-col li .flag { font-size: 19px; }
.reach-col li .hq {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--green-900);
  background: var(--gold);
  padding: 2px 8px;
  border-radius: 100px;
}
.reach-note {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 44px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}
.reach-note span strong { color: var(--gold-soft); font-weight: 600; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
}
.why-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card svg {
  width: 34px;
  height: 34px;
  stroke: var(--green-600);
  margin-bottom: 18px;
}
.why-card h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}
.why-card p { font-size: 14.5px; color: var(--muted); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

/* Gold hairline keyline, inset inside the photo */
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 162, 39, 0.55);
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.4s var(--ease);
}
/* Gold corner brackets that extend along the edges on hover */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 6px;
  pointer-events: none;
  z-index: 2;
  background-image:
    linear-gradient(var(--gold), var(--gold)), linear-gradient(var(--gold), var(--gold)),
    linear-gradient(var(--gold), var(--gold)), linear-gradient(var(--gold), var(--gold)),
    linear-gradient(var(--gold), var(--gold)), linear-gradient(var(--gold), var(--gold)),
    linear-gradient(var(--gold), var(--gold)), linear-gradient(var(--gold), var(--gold));
  background-position:
    top left, top left,
    top right, top right,
    bottom left, bottom left,
    bottom right, bottom right;
  background-size:
    18px 2px, 2px 18px,
    18px 2px, 2px 18px,
    18px 2px, 2px 18px,
    18px 2px, 2px 18px;
  background-repeat: no-repeat;
  transition: background-size 0.4s var(--ease);
}
.gallery-item:hover::before,
.gallery-item:focus-visible::before { border-color: var(--gold); }
.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  background-size:
    32px 2px, 2px 32px,
    32px 2px, 2px 32px,
    32px 2px, 2px 32px,
    32px 2px, 2px 32px;
}

.gallery-item .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 18px 14px;
  background: linear-gradient(transparent, rgba(18, 48, 31, 0.85));
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-align: left;
  z-index: 3;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14, 26, 19, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox .lb-cap {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  letter-spacing: 0.06em;
}
.lightbox .lb-close {
  position: absolute;
  top: 22px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}
.lightbox .lb-close:hover { opacity: 1; }

/* ============================================================
   TRUST / CERTIFICATIONS
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
}
.trust-card {
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 30px;
  background: var(--panel);
}
.trust-card h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}
.trust-card p { font-size: 14.5px; color: var(--muted); }
.trust-card .mono {
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--green-800); color: var(--white); }
.contact .eyebrow { color: var(--gold-soft); }
.contact .section-title { color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  margin-top: 20px;
}
.contact-info { display: grid; gap: 26px; align-content: start; }
.contact-item { display: flex; gap: 18px; }
.contact-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-item h5 {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 5px;
}
.contact-item p, .contact-item a {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.92);
}
.contact-item a:hover { color: var(--gold-soft); }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.wa-btn:hover { background: rgba(255, 255, 255, 0.16); color: var(--white); }
.wa-btn svg { width: 18px; height: 18px; fill: var(--gold); }

.contact-form {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 44px 42px;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(94, 127, 69, 0.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 54px;
}
.footer-brand img { height: 54px; margin-bottom: 16px; background: var(--white); border-radius: 50%; padding: 4px; }
.footer-brand .brand-name { font-size: 20px; color: #E9A19C; }
.footer-brand p { font-size: 14px; margin-top: 12px; max-width: 320px; }
.site-footer h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer ul a { color: rgba(255, 255, 255, 0.78); font-size: 14.5px; }
.site-footer ul a:hover { color: var(--gold-soft); }
.site-footer ul li { font-size: 14.5px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-size: 19px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: var(--shadow-md);
}
.back-top.show { opacity: 1; pointer-events: auto; transform: none; }
.back-top:hover { background: var(--green-900); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll::after { animation: none; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .export-grid { grid-template-columns: 1fr; }
  .import-grid, .why-grid, .gallery-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .reach-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .legacy-grid { gap: 48px; }
}

@media (max-width: 860px) {
  section { padding: 76px 0; }
  .main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--panel);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 10px 24px 22px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 0; font-size: 15px; width: 100%; border-bottom: 1px solid var(--bg-alt); }
  .main-nav a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 12px; text-align: center; }
  .nav-toggle { display: block; }
  .legacy-grid, .contact-grid { grid-template-columns: 1fr; }
  .legacy-figure { order: -1; }
  .legacy-figure img { height: 380px; }
  .legacy-badge { left: 16px; bottom: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .export-card { grid-template-columns: 1fr; }
  .export-card img { min-height: 240px; max-height: 280px; }
}

@media (max-width: 560px) {
  .import-grid, .why-grid, .gallery-grid, .trust-grid, .reach-grid, .form-row { grid-template-columns: 1fr; }
  .brand-name { font-size: 17px; }
  .brand img { height: 40px; }
  .brand-tag { display: none; }
  .contact-form { padding: 32px 24px; }
  .hero-scroll { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   BETTERMENT PASS — new components
   ============================================================ */

/* Anchor offset under sticky header */
section[id] { scroll-margin-top: 90px; }

/* ---------- Header right group & theme toggle ---------- */
.header-right { display: flex; align-items: center; gap: 16px; }
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--gold); transform: rotate(15deg); }
.theme-toggle svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* ---------- Trust badge strip ---------- */
.badges {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.badges-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 40px;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.badge-item svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; flex-shrink: 0; }
.badge-item strong { color: var(--ink); font-weight: 600; }

/* ---------- Seasonality bars ---------- */
.season {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.season .season-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.season .months {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}
.season .months span {
  font-size: 9.5px;
  font-weight: 600;
  text-align: center;
  padding: 5px 0 4px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  color: var(--muted);
  letter-spacing: 0.04em;
}
.season .months span.on {
  background: var(--green-800);
  color: var(--gold-soft);
}
[data-theme="dark"] .season .months span.on { background: #2C4A38; }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin-top: 48px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  margin-bottom: 14px;
  transition: box-shadow 0.3s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-left: 2px solid var(--gold); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 680px;
}

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.wa-fab.show { opacity: 1; pointer-events: auto; transform: none; }
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Hero entrance & Ken Burns ---------- */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
.hero-content > * { animation: heroRise 0.9s var(--ease) both; }
.hero-content > .eyebrow { animation-delay: 0.15s; }
.hero-content > h1 { animation-delay: 0.3s; }
.hero-content > p { animation-delay: 0.5s; }
.hero-content > .hero-actions { animation-delay: 0.68s; }
.hero-slides { animation: kenburns 16s ease-out both; }
@media (prefers-reduced-motion: reduce) {
  .hero-content > *, .hero-slides { animation: none; }
}

/* ---------- Hero slide indicators ---------- */
.hero-dots {
  position: absolute;
  left: max(24px, calc(50% - 566px));
  bottom: 64px;
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-dots button {
  width: 30px;
  height: 3px;
  border: none;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s var(--ease);
}
.hero-dots button:hover { background: rgba(255, 255, 255, 0.7); }
.hero-dots button.active { background: var(--gold); width: 44px; }
@media (max-width: 560px) {
  .hero-dots { bottom: 56px; }
}

/* ---------- Scroll-spy active nav ---------- */
.main-nav a.active::after { width: 100%; }

/* ---------- Small screens ---------- */
@media (max-width: 860px) {
  .header-right { gap: 6px; }
}
@media (max-width: 560px) {
  .badges-grid { justify-content: flex-start; }
  .wa-fab { right: 18px; bottom: 84px; width: 50px; height: 50px; }
  .back-top { right: 20px; bottom: 22px; }
  .season .months span { font-size: 8px; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 200;
  background: var(--green-800);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: top 0.3s;
}
.skip-link:focus { top: 12px; }

/* ---------- Lightbox prev/next ---------- */
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s;
}
.lb-nav:hover { background: rgba(255, 255, 255, 0.2); }
.lb-prev { left: 28px; }
.lb-next { right: 28px; }
@media (max-width: 560px) {
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-nav { width: 42px; height: 42px; font-size: 24px; }
}

/* ---------- Enquire link hover ---------- */
.enquire::after { display: inline-block; transition: transform 0.3s var(--ease); }
.enquire:hover::after { transform: translateX(5px); }
