/* ============================================================
   BERJÓ — Design System v2.1
   Poppins 800/700/600 (headings) · Inter 600/500/400 (body)
   ============================================================ */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Brand palette — derived from BERJÒ Premium Quality logo */
  --color-bg:           #EDEFDA;
  --color-bg-soft:      #F5F6E5;
  --color-white:        #FFFFFF;
  --color-dark-green:   #2E5530;
  --color-mid-green:    #5A8A2E;
  --color-lime:         #9BCD3A;
  --color-lime-hover:   #86B82E;
  --color-lime-soft:    #E8F4C8;
  --color-lime-pale:    #F7FBE8;
  --color-icon-green:   #7BA82E;
  --color-gold:         #C9A227;
  --color-gold-light:   #D4B85A;
  --color-gold-soft:    #F0E6C2;
  --color-text:         #1F2E1F;
  --color-text-muted:   #6A7A63;
  --color-border:       rgba(46, 85, 48, 0.14);
  --color-card-shadow:  0 4px 24px rgba(46, 85, 48, 0.10);
  --color-card-shadow-hover: 0 16px 48px rgba(46, 85, 48, 0.18);

  /* Why-section (dark bg) */
  --card-why-bg:        rgba(255, 255, 255, 0.08);
  --card-why-border:    rgba(255, 255, 255, 0.18);
  --card-why-icon-bg:   #C9A227;
  --card-why-icon-color:#2E5530;
  --card-why-title:     #FFFFFF;
  --card-why-text:      rgba(255, 255, 255, 0.85);

  /* Typography */
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body:    'Inter',   system-ui, sans-serif;

  /* Spacing */
  --section-py:        96px;
  --section-py-mobile: 56px;
  --container-max:     1200px;

  /* Radius */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-pill: 999px;

  /* Navbar */
  --navbar-h: 88px;

  /* Transitions */
  --ease-out: cubic-bezier(0.2, 0, 0, 1);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: var(--navbar-h);
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
svg { display: block; }

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--color-dark-green); color: #fff;
  padding: .5rem 1rem; border-radius: var(--radius-sm);
  z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── GRID SYSTEM ──────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--color-dark-green);
}
h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { line-height: 1.75; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--color-dark-green);
  margin-bottom: .5rem;
  letter-spacing: -0.02em;
}
.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Utility */
.text-center  { text-align: center; }
.text-muted   { color: var(--color-text-muted); }
.text-white   { color: var(--color-white); }

/* ── UTILITY SPACING ──────────────────────────────────────── */
.mt-1  { margin-top: .25rem; } .mt-2  { margin-top: .5rem; }
.mt-4  { margin-top: 1rem; }  .mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }  .mt-12 { margin-top: 3rem; }
.mb-4  { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.py-section { padding: var(--section-py) 0; }

/* ── LIME DIVIDER ─────────────────────────────────────────── */
.lime-bar {
  width: 64px; height: 3px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-lime) 100%);
  border-radius: var(--radius-pill);
  margin: .75rem auto 2.25rem;
}
.lime-bar-left { margin-left: 0; }

/* ── REVEAL ANIMATION ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.visible           { opacity: 1; transform: translateY(0); }
.reveal-delay-1           { transition-delay: .10s; }
.reveal-delay-2           { transition-delay: .20s; }
.reveal-delay-3           { transition-delay: .30s; }
.reveal-delay-4           { transition-delay: .40s; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--navbar-h);
  background: #EDEFDA;
  z-index: 1000;
  border-bottom: 1px solid rgba(46, 85, 48, 0.10);
  box-shadow:
    0 1px 0 rgba(201, 162, 39, 0.30),
    0 2px 0 rgba(201, 162, 39, 0.10);
  transition: box-shadow .25s ease, background .25s ease;
}
.navbar.scrolled {
  background: #EDEFDA;
  box-shadow:
    0 4px 24px rgba(30, 77, 43, 0.10),
    0 1px 0 rgba(201, 162, 39, 0.45),
    0 2px 0 rgba(201, 162, 39, 0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 72px;
  padding: 6px 0;
  transition: transform .25s var(--ease-out);
}
.nav-logo:hover { transform: scale(1.03); }
.nav-logo svg,
.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(46, 85, 48, 0.08));
}
.header .logo img { height: 56px; width: auto; display: block; }
@media (max-width: 640px) {
  .nav-logo { height: 56px; }
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .9rem;
  color: var(--color-text);
  position: relative;
  padding-bottom: 4px;
  letter-spacing: .01em;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-lime);
  border-radius: var(--radius-pill);
  transition: width .25s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: #6bb200; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Nav right controls */
.nav-controls { display: flex; align-items: center; gap: .75rem; }

/* Language selector */
.lang-selector { position: relative; }
.lang-trigger {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-text);
  background: transparent;
  transition: background .2s, border-color .2s;
  cursor: pointer;
}
.lang-trigger:hover { background: var(--color-lime-soft); border-color: var(--color-dark-green); }
.lang-trigger .flag { font-size: .95rem; }
.lang-trigger .chevron { width: 14px; height: 14px; transition: transform .2s; flex-shrink: 0; }
.lang-selector.open .lang-trigger .chevron { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  overflow: hidden;
  min-width: 168px;
  display: none;
  z-index: 100;
}
.lang-selector.open .lang-dropdown { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s;
}
.lang-option:hover { background: var(--color-lime-soft); }
.lang-option.active { color: var(--color-dark-green); font-weight: 600; }

/* Cart button */
.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  transition: background .2s;
  color: var(--color-text);
}
.nav-cart-btn:hover { background: var(--color-lime-soft); color: var(--color-dark-green); }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 18px; height: 18px;
  background: var(--color-lime);
  color: var(--color-dark-green);
  font-size: .62rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity .2s, transform .25s var(--ease-out);
}
.cart-badge.show { opacity: 1; transform: scale(1); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 7px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.nav-hamburger:hover { background: var(--color-lime-soft); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-pill);
  transition: transform .3s ease, opacity .3s ease, background .2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--navbar-h);
  inset: var(--navbar-h) 0 auto 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s var(--ease-out);
  z-index: 999;
}
.mobile-nav.open { max-height: 520px; }
.mobile-nav-inner {
  padding: .5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-inner a {
  display: block;
  padding: .85rem .5rem;
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  transition: color .2s, padding-left .2s;
}
.mobile-nav-inner a:last-of-type { border-bottom: none; }
.mobile-nav-inner a:hover,
.mobile-nav-inner a.active { color: var(--color-dark-green); padding-left: .75rem; }
.mobile-lang-row { display: flex; flex-wrap: wrap; gap: .5rem; padding-top: .75rem; }
.mobile-lang-btn {
  padding: .3rem .65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-size: .8rem;
  font-weight: 600;
  transition: background .2s, border-color .2s;
  cursor: pointer;
  background: transparent;
  color: var(--color-text);
}
.mobile-lang-btn:hover,
.mobile-lang-btn.active {
  background: var(--color-lime);
  border-color: var(--color-dark-green);
  color: var(--color-dark-green);
}

/* ── HERO ─────────────────────────────────────────────────── */
/* Self-contained: no external image, looks great on all devices */
.hero {
  position: relative;
  min-height: calc(100vh - var(--navbar-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a2410;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10,31,8,.72) 0%, rgba(24,48,24,.62) 45%, rgba(13,32,16,.78) 100%),
    url('../assets/images/bergamot-hero.jpg') center/cover no-repeat;
  transform: scale(1.04);
}
/* Premium gold + lime atmospheric glow */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(201,162,39,0.18) 0%, transparent 40%),
    radial-gradient(circle at 82% 70%, rgba(155,205,58,0.14) 0%, transparent 40%),
    radial-gradient(circle at 50% 0%, rgba(212,184,90,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.hero-overlay { display: none; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 0;
  text-align: center;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(212, 184, 90, 0.10);
  border: 1px solid rgba(212, 184, 90, 0.45);
  border-radius: var(--radius-pill);
  padding: .45rem 1.1rem;
  font-size: .76rem;
  font-weight: 700;
  color: var(--color-gold-light);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(6px);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-gold-light);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(212, 184, 90, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: .35rem;
  letter-spacing: -0.03em;
}
.hero-title .accent {
  display: block;
  background: linear-gradient(135deg, #E8D27A 0%, #C9A227 50%, #D4B85A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-description {
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  max-width: 540px;
  margin: 1.25rem auto 2.25rem;
  line-height: 1.75;
}
.hero-actions  { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.45);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
  z-index: 2;
  border: none; background: none; cursor: pointer;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Decorative blobs in hero */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(204,255,0,.08) 0%, transparent 70%);
  top: -15%; right: -8%;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(123,199,77,.12) 0%, transparent 70%);
  bottom: -10%; left: 35%;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--color-dark-green) 0%, var(--color-mid-green) 60%, #1a6335 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(204,255,0,.12) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 80%, rgba(0,0,0,.15) 0%, transparent 40%);
}
.page-hero h1 {
  position: relative;
  color: var(--color-white);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  margin-bottom: .6rem;
}
.page-hero p {
  position: relative;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ── BERGAMOT INFO SECTION ────────────────────────────────── */
.bergamot-section { padding: var(--section-py) 0; }
.bergamot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.bergamot-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-lime-pale);
  box-shadow: var(--color-card-shadow);
}
.bergamot-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.bergamot-img:hover img { transform: scale(1.04); }
.bergamot-text .section-title { text-align: left; }
.bergamot-text .lime-bar { margin-left: 0; }
.bergamot-text p { color: var(--color-text-muted); margin-bottom: 1.1rem; }
.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-dark-green);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  color: var(--color-text-muted);
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}

/* ── PRODUCTS PREVIEW ─────────────────────────────────────── */
.products-preview-section {
  padding: var(--section-py) 0;
  background: var(--color-white);
}

/* ── WHY BERJÓ ────────────────────────────────────────────── */
.why-section {
  padding: var(--section-py) 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(201, 162, 39, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 100%, rgba(212, 184, 90, 0.14) 0%, transparent 50%),
    linear-gradient(160deg, #1F4023 0%, #2E5530 50%, #1F4023 100%);
  position: relative;
}
.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 162, 39, 0.5) 50%, transparent 100%);
}
.why-section .section-title { color: var(--color-white); margin-bottom: .5rem; letter-spacing: -0.02em; }
.why-section .lime-bar { margin-bottom: 3.5rem; opacity: .9; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 0;
  text-align: left;
}
.why-card {
  background: linear-gradient(165deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(212, 184, 90, 0.14);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform .35s var(--ease-out), background .35s, border-color .35s, box-shadow .35s;
  backdrop-filter: blur(8px);
}
.why-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(165deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.05) 100%);
  border-color: rgba(212, 184, 90, 0.40);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.why-icon-box {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #E8D27A 0%, #C9A227 60%, #A8841E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  flex-shrink: 0;
  position: relative;
  box-shadow:
    0 8px 24px rgba(201, 162, 39, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}
.why-icon-box::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(212, 184, 90, 0.30);
}
.why-icon-box svg { width: 28px; height: 28px; color: #2E5530; stroke: currentColor; fill: none; stroke-width: 2; position: relative; z-index: 1; }
.why-card h3 { color: var(--color-white); font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; letter-spacing: -0.01em; }
.why-card p  { color: rgba(255,255,255,.78); font-size: .92rem; line-height: 1.75; }

/* ── CONTACT CTA ──────────────────────────────────────────── */
.cta-section { padding: var(--section-py) 0; background: var(--color-bg); }
.cta-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 8px 48px rgba(30,77,43,.10);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.cta-icon {
  width: 78px; height: 78px;
  background: linear-gradient(135deg, #F0E6C2 0%, #E8D27A 100%);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.1rem;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.25);
}
.cta-card .section-title { color: var(--color-dark-green); }
.cta-card p { color: var(--color-text-muted); max-width: 500px; margin: 1rem auto 2.5rem; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-story-section { padding: var(--section-py) 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-lime-pale);
  box-shadow: var(--color-card-shadow);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text-col p { color: var(--color-text-muted); margin-bottom: 1.1rem; }
.about-values-section { padding: var(--section-py) 0; background: var(--color-white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  transition: box-shadow .3s, transform .3s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--color-card-shadow-hover);
}
.value-icon {
  width: 60px; height: 60px;
  background: var(--color-lime-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
}
.value-card h3 { margin-bottom: .5rem; color: var(--color-dark-green); }
.value-card p  { font-size: .9rem; color: var(--color-text-muted); }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-page-section { padding: var(--section-py) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-col h2 { margin-bottom: .75rem; color: var(--color-dark-green); }
.contact-info-col > p { color: var(--color-text-muted); margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: var(--color-lime-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-dark-green);
}
.contact-detail a,
.contact-detail span { color: var(--color-text-muted); font-size: .95rem; }
.contact-detail a:hover { color: var(--color-dark-green); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(201,162,39,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 80% 100%, rgba(212,184,90,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #0F2E15 0%, #0A1F0E 100%);
  color: rgba(255,255,255,.78);
  padding: 5.5rem 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,162,39,0.55) 25%, rgba(212,184,90,0.55) 75%, transparent 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(212,184,90,.18);
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #E8D27A 0%, #C9A227 50%, #D4B85A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  position: relative;
}
.footer-logo::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold) 0%, transparent 100%);
  margin-top: .65rem;
  border-radius: 2px;
}
.footer-tagline {
  font-size: .85rem;
  color: rgba(232, 210, 122, 0.95);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-desc { font-size: .9rem; line-height: 1.8; color: rgba(255,255,255,.62); max-width: 380px; }
.footer-col h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .78rem;
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: .65rem;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold) 0%, transparent 100%);
}
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; align-items: center; gap: .75rem; font-size: .88rem; color: rgba(255,255,255,.72); }
.footer-contact-item a { color: rgba(255,255,255,.85); transition: color .2s; }
.footer-contact-item a:hover { color: var(--color-gold-light); }
.footer-contact-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, rgba(201,162,39,0.18) 0%, rgba(201,162,39,0.08) 100%);
  border: 1px solid rgba(212,184,90,0.30);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold-light);
}
.social-row { display: flex; gap: .65rem; margin-bottom: 1.75rem; }
.social-btn {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(212,184,90,0.20);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.78);
  transition: all .25s var(--ease-out);
}
.social-btn:hover {
  background: linear-gradient(135deg, #E8D27A 0%, #C9A227 100%);
  border-color: var(--color-gold);
  color: #2E2410;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(201,162,39,0.30);
}
.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--color-gold-light); padding-left: .35rem; }
.footer-links a:last-child { color: rgba(255,255,255,.55); }
.footer-bottom {
  text-align: center;
  padding: 1.75rem 0;
  font-size: .78rem;
  color: rgba(255,255,255,.40);
  letter-spacing: .03em;
}
.footer-bottom span { color: rgba(212,184,90,0.65); }

/* ── RESULT PAGES ─────────────────────────────────────────── */
.result-page {
  min-height: calc(100vh - var(--navbar-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.result-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--color-card-shadow-hover);
}
.result-card .result-icon { font-size: 3.5rem; margin-bottom: 1.4rem; }
.result-card h1 { font-size: 1.9rem; margin-bottom: .75rem; color: var(--color-dark-green); }
.result-card p { color: var(--color-text-muted); margin-bottom: 2.5rem; }
.result-actions { display: flex; flex-direction: column; gap: .75rem; }

/* ── COOKIE BANNER ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 700px;
  background: #0f2e15;
  color: rgba(255,255,255,.88);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  box-shadow: 0 8px 48px rgba(0,0,0,.28);
  z-index: 2000;
  display: none;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid rgba(204,255,0,.15);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: .875rem; flex: 1; min-width: 200px; line-height: 1.6; }
.cookie-banner p a { color: var(--color-lime); text-decoration: underline; }
.cookie-actions { display: flex; gap: .5rem; flex-shrink: 0; }

/* ── TOAST ────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: #0f2e15;
  color: var(--color-white);
  padding: .8rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: .9rem;
  font-weight: 600;
  box-shadow: 0 6px 28px rgba(0,0,0,.22);
  transition: transform .4s cubic-bezier(.175,.885,.32,1.275);
  z-index: 3000;
  pointer-events: none;
  white-space: nowrap;
  border: 1px solid rgba(204,255,0,.2);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── LEGAL PAGES ──────────────────────────────────────────── */
.legal-page { padding: var(--section-py) 0; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.25rem;
  color: var(--color-dark-green);
  margin: 2.5rem 0 .75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content p, .legal-content li {
  color: var(--color-text-muted);
  margin-bottom: .75rem;
  line-height: 1.85;
}
.legal-content ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.legal-update-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--color-lime-soft);
  border-radius: var(--radius-sm);
  padding: .4rem 1rem;
  font-size: .82rem;
  color: var(--color-dark-green);
  font-weight: 700;
  margin-bottom: 2rem;
}
