/* ============================================================
   VITIS NATIVE — Design System
   Aesthetic: Premium Botanical Luxury
   Fonts: Cormorant Garant (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --ivory:        #F7F4ED;
  --cream:        #EDE8DC;
  --cream-dark:   #D9D0BC;
  --green-deep:   #192B1B;
  --green:        #3A5C3C;
  --green-mid:    #567658;
  --green-light:  #8AAB8C;
  --gold:         #B8935A;
  --gold-light:   #D4AE78;
  --text:         #191F1A;
  --muted:        #596B5B;
  --white:        #FFFFFF;
  --line:         rgba(25,43,27,0.10);
  --line-light:   rgba(255,255,255,0.16);

  --radius-sm:    12px;
  --radius:       20px;
  --radius-lg:    32px;
  --radius-xl:    48px;
  --max:          1280px;

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}
.page-en .glass-card {
  width:100%;
  max-width:475px;
  justify-self:end;
  margin-right:50px;
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:'DM Sans', system-ui, sans-serif;
  color:var(--text);
  background:var(--ivory);
  line-height:1.5;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

/* ── Layout ── */
.container {
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
}
.section { padding:200px 0; }

/* ── Typography ── */
.serif { font-family:'Cormorant Garant', Georgia, serif; }

.display {
  font-family:'Cormorant Garant', Georgia, serif;
  font-size:clamp(35px, 6vw, 70px);
  font-weight:500;
  letter-spacing:-0.02em;
  line-height:1.0;
}

.display-sm {
  font-family:'Cormorant Garant', Georgia, serif;
  font-size:clamp(44px, 6vw, 88px);
  font-weight:500;
  letter-spacing:-0.02em;
  line-height:1.05;
}

.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:18px;
  font-weight:600;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--green-mid);
  margin-bottom:18px;
white-space:nowrap
}
.eyebrow::before {
  content:'';
  display:inline-block;
  width:20px;
  height:1px;
  background:var(--gold);
  flex-shrink:0;
}
.eyebrow-light { color:rgba(255,255,255,0.65); }
.eyebrow-light::before { background:rgba(255,255,255,0.45); }

h1,h2,h3 { line-height:1.08; }
h3 { font-size:20px; font-weight:500; margin-bottom:10px; }
p { color:var(--muted); font-size:16px; line-height:1.7; }

/* ── Buttons ── */
.button {
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 28px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.02em;
  transition:all 0.3s var(--ease);
  white-space:nowrap;
}
.button svg { width:16px; height:16px; transition:transform 0.3s var(--ease); }
.button:hover svg { transform:translateX(3px); }

.button-primary {
  background:var(--green-deep);
  color:var(--ivory);
  box-shadow:0 8px 24px rgba(25,43,27,0.24);
}
.button-primary:hover {
  background:var(--green);
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(25,43,27,0.28);
}

.button-gold {
  background:var(--gold);
  color:var(--white);
  box-shadow:0 8px 24px rgba(184,147,90,0.32);
}
.button-gold:hover {
  background:var(--gold-light);
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(184,147,90,0.36);
}

.button-outline:hover {
  background:var(--green-deep);
  color:var(--ivory);
  border-color:var(--green-deep);
  transform:translateY(-2px);
}

.site-nav .button-outline:hover { color:#ffffff; }
.button-outline:hover {
  background:var(--green-deep);
  color:var(--ivory);
  border-color:var(--green-deep);
  transform:translateY(-2px);
}

.button-ghost {
  background:rgba(255,255,255,0.10);
  color:rgba(255,255,255,0.92);
  border:1px solid rgba(255,255,255,0.22);
  backdrop-filter:blur(8px);
}
.button-ghost:hover {
  background:rgba(255,255,255,0.18);
  color:#fff;
}

.button-light {
  background:var(--ivory);
  color:var(--green-deep);
  box-shadow:0 8px 24px rgba(0,0,0,0.14);
}
.button-light:hover {
  background:#fff;
  transform:translateY(-2px);
}

.button-small {
  padding:10px 20px;
  font-size:13px;
}

/* ── Badge / Chip ── */
.badge {
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(58,92,60,0.08);
  border:1px solid rgba(58,92,60,0.14);
  font-size:18px;
  font-weight:600;
  letter-spacing:0.06em;
  color:var(--green);
  white-space:nowrap;
}

.badge-row {
  display:flex;
  flex-wrap:nowrap;
  gap:6px;
  margin-top:20px;
}

/* ── Header / Nav ── */
.site-header {
  position:fixed;
  top:0; left:0; right:0;
  z-index:900;
  background:rgba(247,244,237,0.82);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--line);
  transition:background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background:rgba(247,244,237,0.95);
  box-shadow:0 8px 32px rgba(25,43,27,0.07);
}
.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:76px;
}
.brand {
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.brand img { width:36px; height:36px; object-fit:contain; border-radius:10px; }
.brand-name { font-size:13px; font-weight:600; letter-spacing:0.10em; color:var(--green-deep); }
.site-nav { display:flex; align-items:center; gap:28px; }
.site-nav a {
  font-size:13.5px;
  color:var(--muted);
  font-weight:500;
  transition:color 0.25s ease;
}
.site-nav a:hover { color:var(--green-deep); }

/* ── Lang switch ── */
.lang-switch {
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:4px;
  border-radius:999px;
  background:rgba(25,43,27,0.07);
  border:1px solid var(--line);
}
.lang-switch a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px;
  height:32px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.06em;
  color:var(--muted);
  transition:all 0.2s ease;
}
.lang-switch a[aria-current="page"],
.lang-switch a.is-active {
  background:var(--green-deep);
  color:var(--ivory);
}
.lang-switch a:not([aria-current="page"]):hover { background:rgba(25,43,27,0.08); color:var(--green-deep); }

/* ── LANDING PAGE ── */
.page-landing { background:var(--green-deep); }

.landing-shell {
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  overflow:hidden;
}

.landing-bg {
  position:absolute;
  inset:0;
  overflow:hidden;
}
.landing-bg img {
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.88) saturate(0.85);
  transform:scale(1.04);
  transition:transform 12s ease;
}
.landing-bg::after {
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right,
      rgba(25,43,27,0.05) 0%,
      rgba(25,43,27,0.10) 35%,
      rgba(25,43,27,0.52) 100%
    ),
    linear-gradient(180deg,
      rgba(25,43,27,0.30) 0%,
      rgba(25,43,27,0.08) 45%,
      rgba(25,43,27,0.55) 100%
    );
}

.landing-top {
  position:absolute;
  top:28px;
  left:0; right:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 40px;
  z-index:20;
}
.landing-brand { display:flex; align-items:center; gap:12px; }
.landing-brand img { width:38px; height:38px; object-fit:contain; border-radius:10px; filter:none; opacity:0.9; }
.landing-brand span {
  font-size:13px;
  font-weight:600;
  letter-spacing:0.12em;
  color:#ffffff;
}
.footer-brand {
  display:flex;
  align-items:center;
  gap:12px;
}

.footer-brand img {
  width:38px;
  height:38px;
  object-fit:contain;
  border-radius:10px;
  filter:none;
  opacity:0.9;
}

.footer-brand span {
  font-size:13px;
  font-weight:600;
  letter-spacing:0.12em;
  color:#ffffff;
}

.landing-lang {
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:5px;
  border-radius:999px;
  background:rgba(25,43,27,0.50);
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter:blur(12px);
}
.landing-lang a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:44px;
  height:34px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.06em;
  color:rgba(255,255,255,0.85);
  transition:all 0.2s ease;
}
.landing-lang a[aria-current="page"], .landing-lang a.is-active {
  background:rgba(255,255,255,0.92);
  color:var(--green-deep);
}
.landing-lang a:not([aria-current="page"]):hover { background:rgba(255,255,255,0.12); }

.landing-center {
  position:relative;
  z-index:2;
  text-align:center;
  padding:40px 24px;
  max-width:720px;
  margin-left:auto;
  margin-right:5%;
}

/* Hide emoji icons in audience cards and cta cards */
.audience-icon,
.cta-card-icon { display:none; }

/* Ensure "Nous contacter" nav button stays white */
.site-nav .button-primary,
.site-nav .button-primary:hover { color:#ffffff; }
.landing-kicker {
  font-size:12px;
  font-weight:600;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:22px;
}
.landing-title {
  font-family:'Cormorant Garant', Georgia, serif;
  font-size:clamp(52px, 8vw, 110px);
  font-weight:400;
  font-style:italic;
  color:#fff;
  line-height:0.96;
  letter-spacing:-0.02em;
  margin-bottom:24px;
  text-shadow:0 4px 40px rgba(0,0,0,0.24);
}
.landing-sub {
  font-size:17px;
  color:rgba(255,255,255,0.72);
  line-height:1.65;
  max-width:680px;
  margin:0 auto 40px;
text-align:center;
}

/* Audience cards on landing */
.audience-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:1000px;
  margin:0 auto;
  padding:0 24px;
  position:relative;
  z-index:2;
}
.audience-card {
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:var(--radius-lg);
  padding:32px 26px;
  backdrop-filter:blur(12px);
  text-align:left;
  transition:all 0.35s var(--ease);
}
.audience-card:hover {
  background:rgba(255,255,255,0.13);
  border-color:rgba(255,255,255,0.28);
  transform:translateY(-4px);
}
.audience-icon {
  width:44px; height:44px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
  font-size:20px;
}
.audience-icon--green { background:rgba(138,171,140,0.22); }
.audience-icon--gold { background:rgba(184,147,90,0.22); }
.audience-icon--blue { background:rgba(120,150,200,0.22); }

.audience-label {
  font-size:10.5px;
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:10px;
}
.audience-card h3 {
  font-family:'Cormorant Garant', serif;
  font-size:22px;
  font-weight:500;
  color:#fff;
  margin-bottom:10px;
  line-height:1.15;
}
.audience-card p {
  font-size:14px;
  color:rgba(255,255,255,0.60);
  margin-bottom:20px;
  line-height:1.6;
}
.audience-cta {
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:600;
  color:rgba(255,255,255,0.88);
  border-bottom:1px solid rgba(255,255,255,0.28);
  padding-bottom:2px;
  transition:all 0.25s ease;
}
.audience-cta:hover { color:#fff; border-color:var(--gold-light); gap:12px; }
.audience-cta svg { width:14px; height:14px; }

.landing-scroll-cue {
  position:absolute;
  bottom:36px;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,0.45);
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
}
.scroll-line {
  width:1px;
  height:40px;
  background:linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation:scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100%{ opacity:0.4; transform:scaleY(1); }
  50%{ opacity:0.8; transform:scaleY(1.12); }
}

/* ── INNER PAGES ── */
.page-inner { padding-top:76px; }

/* Hero block */
.hero-block {
  padding:50px 0 280px;
  background:linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
  border-bottom:1px solid var(--line);
  position:relative;
  overflow:hidden;
}
.hero-block::before {
  content:'';
  position:absolute;
  top:-180px; right:-80px;
  width:560px; height:560px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(184,147,90,0.10), transparent 65%);
  pointer-events:none;
}
.hero-block::after {
  content:'';
  position:absolute;
  bottom:-120px; left:-60px;
  width:800px; height:800px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(58,92,60,0.06), transparent 65%);
  pointer-events:none;
}
.hero-grid {
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:1;
}
.hero-copy .eyebrow { color:var(--green-mid); }
.hero-copy .eyebrow::before { background:var(--gold); }
.hero-copy .display { color:var(--text); margin-bottom:22px; }
.hero-copy .lead { font-size:17px; color:var(--muted); line-height:1.72; margin-bottom:26px; }

.glass-card {
  background:rgba(255,255,255,0.80);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:36px;
  box-shadow:0 16px 48px rgba(25,43,27,0.07);
}
.mini-label {
  font-size:14px;
  font-weight:700;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:16px;
}
.glass-card h2 {
  font-family:'Cormorant Garant', serif;
  font-size:clamp(22px, 2.4vw, 30px);
  font-weight:500;
  color:var(--text);
  margin-bottom:24px;
  line-height:1.2;
}
.promise-stack { display:flex; flex-direction:column; gap:18px; }
.promise-stack > div {
  display:flex;
  flex-direction:column;
  gap:4px;
  padding-top:16px;
  border-top:1px solid var(--line);
}
.promise-stack strong { font-size:16px; font-weight:600; color:var(--text); }
.promise-stack span { font-size:16px; color:var(--muted); }

/* Section styles */
.section-tonal { background:var(--cream); }
.section-dark { background:var(--green-deep); }

.section-head { margin-bottom:56px; }
.section-head.center { text-align:center; }
.section-title { margin-bottom:16px; color:var(--text); }
.section-title-light { margin-bottom:16px; color:var(--ivory); }
.section-intro { font-size:17px; color:var(--muted); max-width:580px; }
.section-intro.narrow { max-width:480px; margin:0 auto; }

/* Grid */
.grid { display:grid; gap:18px; }
.grid-2 { grid-template-columns:repeat(2,1fr); }
.grid-3 { grid-template-columns:repeat(3,1fr); }
.grid-4 { grid-template-columns:repeat(4,1fr); }
.mt-40 { margin-top:40px; }
.mt-56 { margin-top:56px; }

/* Vision split layout: text left / 2×2 grid right */
.vision-split {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:start;
}
.vision-left .section-head { margin-bottom:0; }
.vision-right .grid-4 {
  grid-template-columns:repeat(2,1fr);
  margin-top:0;
}

/* Concepts side layout: image left / cards right */
.concepts-side {
  display:grid;
  grid-template-columns:0.82fr 1.18fr;
  gap:48px;
  align-items:start;
.concepts-right-col { display:flex; flex-direction:column; gap:12px; }
.concepts-right-col .section-head { margin-bottom:8px; }
}
.concept-cards-row {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:32px;
}
.concepts-side .concept-visual {
  max-height:420px;
  overflow:hidden;
  border-radius:var(--radius-lg);
margin-top:50px;
}
.concepts-side .concept-visual img {
  width:100%;
  height:100%;
  max-height:420px;
  object-fit:contain;
  background:rgba(237,232,220,0.50);
  border-radius:var(--radius-lg);
  padding:16px;
}
.concepts-right-col { display:flex; flex-direction:column; gap:12px; }
.concepts-right-col .section-head { margin-bottom:8px; }

/* Insight cards */
.insight-card {
  background:rgba(255,255,255,0.90);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:0 8px 24px rgba(25,43,27,0.05);
  transition:all 0.3s var(--ease);
}
.insight-card:hover { transform:translateY(-4px); box-shadow:0 18px 40px rgba(25,43,27,0.09); }
.index {
  display:block;
  font-family:'Cormorant Garant', serif;
  font-size:32px;
  font-weight:300;
  color:var(--green-light);
  margin-bottom:14px;
}
.insight-card h3 { font-size:20px; font-weight:600; margin-bottom:10px; color:var(--text); }
.insight-card p { font-size:16px; }

/* Story grid */
.story-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
}
.story-visual {
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:4/5;
}
.story-visual img { width:100%; height:100%; object-fit:cover; }
.story-copy .section-title { color:var(--text); }
.check-list { display:flex; flex-direction:column; gap:16px; margin-top:24px; }
.check-list > div { display:flex; gap:16px; align-items:flex-start; }
.check-list span {
  flex-shrink:0;
  width:22px; height:22px;
  border-radius:50%;
  background:rgba(58,92,60,0.12);
  border:1px solid rgba(58,92,60,0.20);
  display:flex; align-items:center; justify-content:center;
  margin-top:2px;
}
.check-list span::before {
  content:'';
  width:8px; height:5px;
  border-left:2px solid var(--green);
  border-bottom:2px solid var(--green);
  transform:rotate(-45deg) translateY(-1px);
}
.check-list p { font-size:16px; }
.check-list p strong {
  font-size:20px;
}

/* Concepts */
.concept-visual {
  border-radius:var(--radius-lg);
  overflow:hidden;
  margin-bottom:0;
}
.concept-visual img { width:100%; height:auto; object-fit:contain; border-radius:var(--radius-lg); }
.concept-card {
  background:var(--ivory);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  transition:all 0.3s var(--ease);
}
.concept-card:hover { transform:translateY(-4px); box-shadow:0 18px 40px rgba(25,43,27,0.07); }
.concept-chip {
  display:inline-block;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:16px;
}
/* Pure — vert naturel, couleur de la canette verte */
.concept-chip--green { background: linear-gradient(180deg, #78aa52, #477c2e); color:#ffffff; }
/* Active — bleu, couleur de la canette bleue */
.concept-chip--gold  { background: linear-gradient(180deg, #4eb3df, #1d57a5); color:#ffffff; }
/* Glow — rose poudré, couleur de la canette rosée */
.concept-chip--teal  { background: linear-gradient(180deg, #f58ebe, #d9478d); color:#ffffff; }
.concept-card h3 { font-size:20px; font-weight:600; margin-bottom:10px; color:var(--text); }
.concept-card p { font-size:16px; }

/* Investment / CTA Section */
.cta-section {
  background:linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
  padding:120px 0;
  position:relative;
  overflow:hidden;
  border-top:1px solid var(--line);
}
.cta-section::before {
  content:'';
  position:absolute;
  bottom:-200px; left:-120px;
  width:600px; height:600px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(184,147,90,0.08), transparent 65%);
}
.cta-section::after {
  content:'';
  position:absolute;
  top:-100px; right:-60px;
  width:400px; height:400px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(58,92,60,0.06), transparent 65%);
}
.cta-inner { position:relative; z-index:1; }
.investment-split {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:start;
}

.investment-left .section-head {
  margin-bottom:0;
}

.investment-right .investor-grid {
  margin-top:48;
}
.cta-top {
  text-align:left;
  max-width:680px;
  margin:0 0 64px;
}
.cta-top .eyebrow { color:var(--green-mid); }
.cta-top .eyebrow::before { background:var(--gold); }
.cta-top .display-sm { color:var(--text); margin-bottom:18px; }
.cta-top p { color:var(--muted); font-size:17px; }

.cta-cards {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  max-width:none;
  margin:100px 0 0;
}
.cta-card {
  background:rgba(255,255,255,0.85);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:38px 32px;
  text-align:left;
  transition:all 0.35s var(--ease);
  box-shadow:0 8px 28px rgba(25,43,27,0.06);

  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.cta-card:hover { background:#fff; border-color:rgba(25,43,27,0.16); transform:translateY(-4px); box-shadow:0 20px 48px rgba(25,43,27,0.10); }
.cta-card h3 {
  font-family:'Cormorant Garant', serif;
  font-size:24px;
  font-weight:500;
  color:var(--text);
  margin-bottom:12px;
}
.cta-card p {
  font-size:14px;
  color:var(--muted);
  margin-bottom:24px;
  text-align:left;
}
.cta-card .button {
  margin-top:auto;
}

/* Investor grid */
.investor-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:40px; }
.investor-card {
  background:rgba(255,255,255,0.80);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:0 4px 14px rgba(25,43,27,0.05);
}
.investor-card strong {
  display:block;
  font-size:20px;
  font-weight:600;
  letter-spacing:normal;
  text-transform:none;
  color:var(--text);
  margin-bottom:10px;
}
.investor-card p {
  font-size:16px;
  color:var(--muted);
}

/* ── Modal ── */
.modal-overlay {
  position:fixed;
  inset:0;
  z-index:2000;
  background:rgba(25,43,27,0.65);
  backdrop-filter:blur(8px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.35s ease;
}
.modal-overlay.is-open { opacity:1; pointer-events:all; }
.modal {
  background:var(--ivory);
  border-radius:var(--radius-xl);
  padding:48px;
  max-width:520px;
  width:100%;
  position:relative;
  transform:translateY(20px) scale(0.97);
  transition:transform 0.35s var(--ease-spring);
  box-shadow:0 40px 100px rgba(0,0,0,0.22);
}
.modal-overlay.is-open .modal { transform:translateY(0) scale(1); }
.modal-close {
  position:absolute;
  top:20px; right:20px;
  width:40px; height:40px;
  border-radius:50%;
  background:rgba(25,43,27,0.08);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition:background 0.2s ease;
  font-size:18px;
  color:var(--muted);
}
.modal-close:hover { background:rgba(25,43,27,0.14); }
.modal-eyebrow { font-size:10px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.modal h3 {
  font-family:'Cormorant Garant', serif;
  font-size:30px;
  font-weight:500;
  color:var(--text);
  margin-bottom:10px;
}
.modal-sub { font-size:15px; color:var(--muted); margin-bottom:28px; }
.form-field { margin-bottom:18px; }
.form-field label { display:block; font-size:12px; font-weight:600; letter-spacing:0.08em; color:var(--green-deep); margin-bottom:7px; text-transform:uppercase; }
.form-field input,
.form-field textarea,
.form-field select {
  width:100%;
  padding:13px 16px;
  border-radius:var(--radius-sm);
  border:1.5px solid var(--line);
  background:var(--white);
  font-family:inherit;
  font-size:15px;
  color:var(--text);
  transition:border-color 0.2s ease;
  outline:none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color:var(--green); }
.form-field textarea { resize:vertical; min-height:100px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.modal-submit { width:100%; justify-content:center; margin-top:8px; }
.form-note { font-size:12px; color:var(--muted); text-align:center; margin-top:12px; opacity:0.75; }

/* ── Reveal animation ── */
.reveal {
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay:0.12s; }
.delay-2 { transition-delay:0.22s; }
.delay-3 { transition-delay:0.32s; }

/* ── Footer ── */
.site-footer {
  background:var(--green-deep);
  padding:48px 0;
}
.footer-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.footer-brand-link {
  text-decoration:none;
}

.footer-brand-link .brand-name {
  color:rgba(255,255,255,0.88);
}
.footer-links { display:flex; gap:20px; }
.footer-links a { font-size:12.5px; color:rgba(255,255,255,0.42); transition:color 0.2s; }
.footer-links a:hover { color:rgba(255,255,255,0.75); }
.footer-copy { font-size:12px; color:rgba(255,255,255,0.32); }

/* ── Responsive ── */
@media (max-width:1100px) {
  .hero-grid,
  .story-grid,
  .vision-split,
  .concepts-side,
  .investment-split { grid-template-columns:1fr; gap:40px; }

  .vision-right .grid-4 { grid-template-columns:repeat(2,1fr); }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .audience-grid { grid-template-columns:1fr; }
  .landing-center { margin-left:auto; margin-right:auto; text-align:center; }
}

@media (max-width:900px) {
  .site-nav { gap:16px; }
  .site-nav > a:not(.button-small):not([class*="lang"]) { display:none; }
  .grid-3 { grid-template-columns:1fr; }
  .cta-cards { grid-template-columns:1fr; }
  .investor-grid { grid-template-columns:1fr; }
}

@media (max-width:640px) {
  .container { width:calc(100% - 32px); }
  .section { padding:80px 0; }
  .hero-block { padding:60px 0; }
  .cta-section { padding:80px 0; }
  .landing-top { padding:0 20px; }
  .audience-grid { padding:0 20px; }
  .modal { padding:32px 24px; border-radius:var(--radius-lg); }
  .form-row { grid-template-columns:1fr; }
  .footer-inner { flex-direction:column; align-items:flex-start; gap:16px; }
  .grid-2 { grid-template-columns:1fr; }
}
