/* ============================================================
   GreenO — v3 · Matched to greenojuices.com Digital Aesthetic
   Font: Nunito (rounded, bold) + Plus Jakarta Sans (body)
   Visual: Clean · Bold · Rounded · F&B Digital-first
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

/* ─── Variables — matched to greenojuices.com brand greens ─── */
:root {
  --forest:     #1A4832;
  --forest-mid: #235C42;
  --forest-nav: #1B5738;
  --sage:       #4A9B6F;
  --sage-light: #A8D5BA;
  --leaf:       #3A8A5A;
  --cream:      #F7F9F5;
  --cream-dark: #EFF3EC;
  --gold:       #C4962A;
  --gold-light: #D4AE5A;
  --white:      #FFFFFF;
  --ink:        #121F16;
  --ink-mid:    #3A4A3E;
  --ink-light:  #7A8C80;
  --border:     rgba(26,72,50,0.12);

  --ff-display: 'Nunito', 'Trebuchet MS', sans-serif;
  --ff-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t:    0.35s;
  --r:    10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --sh:   0 2px 16px rgba(26,72,50,0.08);
  --sh-lg:0 8px 40px rgba(26,72,50,0.14);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); background: var(--cream); color: var(--ink); line-height: 1.65; overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: var(--ff-body); cursor: pointer; border: none; background: none; }

/* ─── Typography — Nunito bold display, no serif, no italic ─── */
h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.01em;
}
h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.01em;
}
h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700; line-height: 1.2;
}
h4 { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; }
p  { font-size: 0.97rem; color: var(--ink-mid); max-width: 58ch; line-height: 1.75; }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage);
}
.gold { color: var(--gold); }

/* ─── Layout ─── */
.wrap { width: min(1180px, 90vw); margin-inline: auto; }
.sec  { padding: 100px 0; }
.sec--sm { padding: 64px 0; }
.sec--dark { background: var(--forest); }
.sec--ink  { background: var(--ink); }
.sec--cream-dark { background: var(--cream-dark); }
.center { text-align: center; }
.center p { margin-inline: auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--ff-display); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.01em; border: 2px solid transparent;
  padding: 0.8rem 1.8rem; border-radius: 100px;
  transition: all var(--t) var(--ease); white-space: nowrap;
}
.btn-dark {
  background: var(--forest-nav); color: var(--white); border-color: var(--forest-nav);
}
.btn-dark:hover {
  background: var(--forest); border-color: var(--forest);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,72,50,0.25);
}
.btn-outline-light {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,150,42,0.35);
}
.btn-outline-dark {
  background: transparent; color: var(--forest-nav); border-color: var(--forest-nav);
}
.btn-outline-dark:hover {
  background: var(--forest-nav); color: var(--white); transform: translateY(-2px);
}
.btn-arrow { position: relative; padding-right: 3rem; }
.btn-arrow::after {
  content: ''; position: absolute; right: 1.2rem; top: 50%;
  transform: translateY(-50%); width: 14px; height: 1.5px;
  background: currentColor; transition: width var(--t) var(--ease);
}
.btn-arrow::before {
  content: ''; position: absolute; right: 1.2rem; top: 50%;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor; border-top: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: right var(--t) var(--ease);
}
.btn-arrow:hover::after  { width: 20px; }
.btn-arrow:hover::before { right: 1rem; }

/* ─── Tags ─── */
.tag {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 100px;
  background: rgba(26,72,50,0.08); color: var(--forest-mid); margin-bottom: 1rem;
}
.tag--light { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

/* ─── Navbar — always dark green like greenojuices.com ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 1rem 0; background: var(--forest-nav);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  transition: padding var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.nav.scrolled { padding: 0.75rem 0; box-shadow: 0 4px 24px rgba(0,0,0,0.25); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }

.nav-brand { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; }
.nav-wordmark {
  font-family: var(--ff-display); font-size: 1.45rem; font-weight: 900;
  color: var(--white); letter-spacing: -0.02em;
}
.nav-wordmark .o-accent { color: var(--gold-light); }

.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-family: var(--ff-body); font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.78); transition: color var(--t) var(--ease); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold-light); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform var(--t) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  font-family: var(--ff-display) !important; font-weight: 700 !important;
  font-size: 0.8rem !important; background: var(--gold) !important;
  color: var(--white) !important; padding: 0.5rem 1.3rem; border-radius: 100px;
  border: 2px solid var(--gold); transition: all var(--t) var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; border-color: var(--gold-light) !important; }

/* Hamburger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* Mobile nav */
.mob-nav {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: var(--forest-nav); flex-direction: column;
  align-items: flex-start; justify-content: center; padding: 0 2.5rem;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-family: var(--ff-display); font-size: clamp(2rem, 7vw, 3rem); font-weight: 800;
  color: rgba(255,255,255,0.6); padding: 0.5rem 0; width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08); transition: color var(--t) var(--ease);
}
.mob-nav a:hover { color: var(--white); }
.mob-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,0.5); font-size: 1.4rem; font-family: var(--ff-display); font-weight: 700;
}
.mob-close:hover { color: var(--white); }
.mob-socials { position: absolute; bottom: 2rem; left: 2.5rem; display: flex; gap: 1.5rem; }
.mob-socials a { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; color: rgba(255,255,255,0.32); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh; background: var(--forest-nav);
  position: relative; overflow: hidden; display: flex; align-items: flex-end; padding-bottom: 80px;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px; opacity: 0.7;
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero-orb-1 { width: 55vw; height: 55vw; background: #235C42; top: -15%; right: -8%; opacity: 0.5; }
.hero-orb-2 { width: 25vw; height: 25vw; background: var(--gold); bottom: 5%; left: 3%; opacity: 0.12; }
.hero-content { position: relative; z-index: 2; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-family: var(--ff-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; border-radius: 100px;
  padding: 0.5rem 1.1rem; margin-bottom: 2rem;
}
.hero-pill span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: block; }
.hero h1 { color: var(--white); max-width: 680px; margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--gold-light); }
.hero-body { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 420px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 5rem; }
.hero-bar {
  display: flex; gap: 4rem; flex-wrap: wrap; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--ff-display); font-size: 2.8rem; font-weight: 900;
  color: var(--white); line-height: 1;
}
.hero-stat-lbl {
  font-family: var(--ff-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 0.3rem;
}

/* ─── Ticker ─── */
.ticker { background: var(--gold); overflow: hidden; padding: 0.85rem 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 28s linear infinite; }
.ticker-item {
  display: flex; align-items: center; gap: 1.8rem; padding: 0 1.8rem; white-space: nowrap;
  font-family: var(--ff-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--white);
}
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.45); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Feature cards ─── */
.feat-card {
  padding: 1.8rem; border-radius: var(--r-lg); background: var(--white);
  box-shadow: var(--sh); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  border: 1px solid var(--border);
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.feat-icon {
  width: 48px; height: 48px; border-radius: var(--r);
  background: var(--cream-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem;
}
.feat-icon svg { width: 22px; height: 22px; stroke: var(--forest-nav); fill: none; stroke-width: 1.6; }
.feat-card h4 { margin-bottom: 0.4rem; font-size: 0.92rem; }
.feat-card p  { font-size: 0.85rem; max-width: none; }

/* ─── Menu cards ─── */
.menu-card {
  border-radius: var(--r-xl); overflow: hidden; position: relative; min-height: 380px; cursor: pointer;
  transition: transform var(--t) var(--ease);
}
.menu-card:hover { transform: scale(1.02); }
.menu-card-bg { position: absolute; inset: 0; transition: transform 0.55s var(--ease); }
.menu-card:hover .menu-card-bg { transform: scale(1.05); }
.menu-card-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,31,22,0.92) 0%, rgba(18,31,22,0.15) 55%, transparent 100%);
}
.menu-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.8rem; }
.menu-card-content h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.3rem; }
.menu-card-content p { color: rgba(255,255,255,0.6); font-size: 0.86rem; max-width: 28ch; }

/* ─── Team card ─── */
.team-card {
  background: var(--white); border-radius: var(--r-lg); padding: 1.8rem;
  border: 1px solid var(--border); box-shadow: var(--sh); transition: all var(--t) var(--ease);
}
.team-card:hover { border-color: var(--sage-light); box-shadow: var(--sh-lg); transform: translateY(-3px); }
.team-initial {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-nav), var(--leaf));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 900;
  color: var(--white); margin-bottom: 1.1rem;
}
.team-card h4 { font-size: 0.95rem; margin-bottom: 0.15rem; }
.team-role {
  font-family: var(--ff-display); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.team-card p { font-size: 0.85rem; max-width: none; }

/* ─── Founder card ─── */
.founder-card {
  background: var(--cream-dark); border-radius: var(--r-xl); padding: 2.8rem;
  position: relative; overflow: hidden; border: 1px solid var(--border);
  transition: box-shadow var(--t) var(--ease);
}
.founder-card:hover { box-shadow: var(--sh-lg); }
.founder-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--forest-nav), var(--gold));
}
.founder-card::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 180px; height: 180px; border-radius: 50%; background: var(--sage-light); opacity: 0.1; pointer-events: none;
}
.founder-initial {
  width: 68px; height: 68px; border-radius: 50%; background: var(--forest-nav);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.4rem; font-weight: 900;
  color: var(--white); margin-bottom: 1.4rem;
}
.founder-card h3 { font-size: 1.6rem; margin-bottom: 0.25rem; }
.founder-title {
  font-family: var(--ff-display); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem;
}
.founder-meta { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.3rem; }
.founder-meta-item {
  display: flex; align-items: center; gap: 0.6rem; font-size: 0.84rem; color: var(--ink-mid);
}
.founder-meta-item svg { width: 14px; height: 14px; stroke: var(--sage); fill: none; stroke-width: 1.5; flex-shrink: 0; }

/* ─── City card ─── */
.city-card {
  background: var(--white); border-radius: var(--r-lg); padding: 1.5rem;
  border: 1px solid var(--border); transition: all var(--t) var(--ease); position: relative; overflow: hidden;
}
.city-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--forest-nav), var(--sage));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t) var(--ease);
}
.city-card:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.city-card:hover::before { transform: scaleX(1); }
.city-card svg { width: 22px; height: 22px; stroke: var(--sage); fill: none; stroke-width: 1.5; margin-bottom: 0.8rem; }
.city-card h4 { font-size: 0.88rem; margin-bottom: 0.1rem; }
.city-card p  { font-size: 0.74rem; color: var(--ink-light); max-width: none; }

/* ─── Format pills ─── */
.fmt-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.fmt-pill {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8); border-radius: 100px; padding: 0.65rem 1.3rem;
  font-family: var(--ff-display); font-size: 0.82rem; font-weight: 600;
  transition: all var(--t) var(--ease);
}
.fmt-pill:hover { background: rgba(255,255,255,0.14); color: var(--white); border-color: rgba(255,255,255,0.28); }
.fmt-pill svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ─── Timeline ─── */
.tl { position: relative; padding-left: 2.5rem; }
.tl::before {
  content: ''; position: absolute; left: 6px; top: 6px; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--forest-nav), var(--sage), transparent); border-radius: 2px;
}
.tl-item { position: relative; margin-bottom: 2.5rem; }
.tl-item::before {
  content: ''; position: absolute; left: -2.1rem; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--cream); border: 2.5px solid var(--forest-nav);
  box-shadow: 0 0 0 3px rgba(26,72,50,0.1);
}
.tl-item:first-child::before { background: var(--forest-nav); }
.tl-year { font-family: var(--ff-display); font-size: 1rem; font-weight: 800; color: var(--gold); margin-bottom: 0.15rem; }
.tl-item h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.tl-item p  { font-size: 0.85rem; max-width: none; }

/* ─── Pillars ─── */
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.pillar {
  padding: 1.8rem; border-radius: var(--r-lg); background: var(--cream-dark);
  border: 1px solid var(--border); transition: all var(--t) var(--ease);
}
.pillar:hover { background: var(--white); box-shadow: var(--sh); }
.pillar-num {
  font-family: var(--ff-display); font-size: 2.2rem; font-weight: 900;
  color: rgba(26,72,50,0.15); line-height: 1; margin-bottom: 0.8rem;
}
.pillar h4 { font-size: 0.9rem; margin-bottom: 0.35rem; }
.pillar p  { font-size: 0.85rem; max-width: none; }

/* ─── Expansion table ─── */
.exp-table { width: 100%; border-collapse: collapse; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); }
.exp-table th {
  background: var(--forest-nav); color: var(--white);
  font-family: var(--ff-display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 1rem 1.3rem; text-align: left;
}
.exp-table td { padding: 0.9rem 1.3rem; border-bottom: 1px solid var(--border); background: var(--white); font-size: 0.9rem; }
.exp-table tr:last-child td { border-bottom: none; }
.exp-table tr:hover td { background: var(--cream); }
.exp-table .yr { font-family: var(--ff-display); font-weight: 800; font-size: 0.95rem; }
.exp-table .num { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 900; color: var(--forest-nav); }
.exp-table .milestone { font-size: 0.82rem; color: var(--ink-light); }
.exp-table .highlight td { background: var(--cream-dark) !important; }
.exp-table .highlight .num { color: var(--gold); }

/* ─── Benefit items ─── */
.benefit-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.benefit {
  display: flex; gap: 1.1rem; padding: 1.5rem;
  background: var(--cream-dark); border-radius: var(--r-lg); border: 1px solid var(--border);
  transition: all var(--t) var(--ease);
}
.benefit:hover { background: var(--white); box-shadow: var(--sh); }
.benefit-num {
  width: 32px; height: 32px; min-width: 32px; border-radius: 50%;
  background: var(--forest-nav); display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 800; font-size: 0.85rem; color: var(--white); margin-top: 2px;
}
.benefit h4 { font-size: 0.88rem; margin-bottom: 0.3rem; }
.benefit p  { font-size: 0.84rem; max-width: none; }

/* ─── Contact form ─── */
.contact-form {
  background: var(--white); border-radius: var(--r-xl); padding: 2.8rem;
  box-shadow: var(--sh-lg); border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-family: var(--ff-display);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mid); margin-bottom: 0.45rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: var(--ff-body); font-size: 0.9rem; color: var(--ink); background: var(--cream);
  outline: none; transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--forest-nav); box-shadow: 0 0 0 3px rgba(26,72,50,0.1);
}
.form-group textarea { resize: vertical; min-height: 115px; }

/* ─── Info cards ─── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1rem; }
.info-card {
  background: var(--cream-dark); border-radius: var(--r-lg); padding: 1.3rem;
  border: 1px solid var(--border); display: flex; align-items: center; gap: 1rem;
}
.info-icon {
  width: 42px; height: 42px; min-width: 42px; border-radius: 50%;
  background: var(--forest-nav); display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 17px; height: 17px; stroke: var(--white); fill: none; stroke-width: 1.5; }
.info-card-label {
  font-family: var(--ff-display); font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 0.2rem;
}
.info-card-value { font-family: var(--ff-display); font-size: 0.9rem; font-weight: 700; color: var(--ink); }

/* ─── Map placeholder ─── */
.map-ph {
  background: var(--cream-dark); border-radius: var(--r-xl); min-height: 360px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  border: 1.5px dashed var(--sage-light); text-align: center; padding: 2rem;
}
.map-ph svg { width: 46px; height: 46px; stroke: var(--sage); fill: none; stroke-width: 1; opacity: 0.45; }
.map-ph h4 { color: var(--forest-mid); }
.map-ph p  { font-size: 0.86rem; max-width: 36ch; }

/* ─── GCC tags ─── */
.gcc-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.82); border-radius: 100px; padding: 0.5rem 1.1rem;
  font-family: var(--ff-display); font-size: 0.82rem; font-weight: 600;
  transition: all var(--t) var(--ease);
}
.gcc-tag:hover { background: rgba(255,255,255,0.13); color: var(--white); }

/* ─── Page header ─── */
.ph {
  background: var(--forest-nav); padding: 155px 0 85px;
  position: relative; overflow: hidden;
}
.ph-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; pointer-events: none; }
.ph-orb-1 { width: 40vw; height: 40vw; background: #2A7A52; top: -20%; right: -5%; }
.ph-orb-2 { width: 20vw; height: 20vw; background: var(--gold); bottom: -10%; left: 10%; opacity: 0.1; }
.ph .wrap { position: relative; z-index: 2; }
.ph h1 { color: var(--white); max-width: 680px; }
.ph p  { color: rgba(255,255,255,0.55); margin-top: 1rem; font-size: 1rem; max-width: 50ch; }

/* ─── CTA banner ─── */
.cta {
  background: var(--forest); padding: 88px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: var(--forest-nav); top: -200px; left: -100px; opacity: 0.4; filter: blur(80px);
}
.cta::after {
  content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: var(--gold); bottom: -140px; right: 10%; opacity: 0.12; filter: blur(60px);
}
.cta-inner { position: relative; z-index: 2; }
.cta h2  { color: var(--white); }
.cta p   { color: rgba(255,255,255,0.52); margin: 0.8rem auto 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─── */
.footer { background: #0F2016; padding: 65px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.3); margin-top: 0.9rem; max-width: 26ch; }
.footer-socials { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.f-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; transition: all var(--t) var(--ease);
}
.f-social svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.4); fill: none; stroke-width: 1.5; }
.f-social:hover { background: var(--forest-nav); border-color: var(--forest-nav); }
.f-social:hover svg { stroke: var(--white); }
.footer-col h5 {
  font-family: var(--ff-display); font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.26); margin-bottom: 1.2rem;
}
.footer-col a {
  display: block; font-family: var(--ff-body); font-size: 0.84rem;
  color: rgba(255,255,255,0.4); margin-bottom: 0.6rem; transition: color var(--t) var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.4rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.2); margin: 0; max-width: none; }

/* ─── Reveal animations ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .sec { padding: 68px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-bar { gap: 2rem; }
  .ph { padding: 125px 0 65px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .contact-form { padding: 1.8rem; }
  .hero-actions { flex-direction: column; }
}
