/* ============================================
   LE DÔME V2 — Spectaculaire, Framer-style
   ============================================ */

:root {
  --green: #1A3D35;
  --green-light: #24523F;
  --green-dark: #0F2A22;
  --green-900: #091A14;
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray-50: #FAFAF8;
  --gray-100: #F2F1EE;
  --gray-200: #E5E3DE;
  --gray-300: #B8B5AD;
  --gray-500: #6B6860;
  --gray-700: #3A3835;
  --black: #0A0A09;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 80px;
  --container: 1240px;
  --pad: 32px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body { height: auto; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--off-white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green);
}

::selection { background: var(--green); color: var(--white); }

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

.hide-mobile { display: inline; }

/* ==================== LOADER ==================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.loader-dome { width: 120px; height: 60px; opacity: 0; }

.dome-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

.loader-text {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(10px);
}

.loader-sub {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
}

/* ==================== CURSOR ==================== */
#cursor-dot, #cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

#cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
}

#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  transition: width 0.35s var(--ease-out-expo),
              height 0.35s var(--ease-out-expo),
              background 0.35s,
              border-color 0.35s;
}

#cursor-ring.hover {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold);
}

@media (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
}

/* ==================== NAV ==================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all 0.5s var(--ease-out-expo);
}

#navbar.scrolled {
  background: rgba(248, 247, 244, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.logo-text-wrap { line-height: 1.1; }

.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  display: block;
  transition: color 0.4s;
}

.logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

#navbar.scrolled .logo-text { color: var(--green); }

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

#navbar.scrolled .nav-links a { color: var(--gray-500); }
#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.active { color: var(--green); }

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--gold);
  padding: 10px 24px;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out-expo);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.35s var(--ease-out-expo);
  transform-origin: center;
}

#navbar.scrolled .nav-burger span { background: var(--green); }

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}

#mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-links { text-align: center; }
.mobile-links li { overflow: hidden; }

.mobile-links a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 64px);
  color: var(--white);
  padding: 8px 0;
  transform: translateY(110%);
  transition: transform 0.6s var(--ease-out-expo), color 0.3s;
}

#mobile-menu.open .mobile-links a { transform: translateY(0); }
.mobile-links li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-links li:nth-child(2) a { transition-delay: 0.16s; }
.mobile-links li:nth-child(3) a { transition-delay: 0.22s; }
.mobile-links li:nth-child(4) a { transition-delay: 0.28s; }
.mobile-links a:hover { color: var(--gold); }

/* ==================== HERO ==================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-900);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 26, 20, 0.7) 0%, rgba(9, 26, 20, 0.4) 40%, rgba(9, 26, 20, 0.85) 100%),
    linear-gradient(135deg, rgba(26, 61, 53, 0.5) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px var(--pad) 40px;
  max-width: 900px;
}

.hero-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 10px 24px;
  border-radius: 100px;
  margin-bottom: 40px;
  backdrop-filter: blur(8px);
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(201, 168, 76, 0); }
}

.hero-title-block { margin-bottom: 24px; }

#hero h1 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1;
}

.hero-pre {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.hero-main-title {
  display: block;
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--white) 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-underline {
  display: block;
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

.hero-desc {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  white-space: nowrap;
}

.btn-lg { padding: 16px 34px; font-size: 15px; }

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-glass {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* Hero strip */
.hero-strip {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  padding: 48px var(--pad) 0;
  max-width: 800px;
  width: 100%;
}

.strip-card {
  flex: 1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.strip-card:hover img {
  transform: scale(1.08);
}

.strip-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 26, 20, 0.85) 0%, transparent 60%);
}

.strip-card span {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(201, 168, 76, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ==================== MARQUEE ==================== */
.marquee-bar {
  background: var(--green-dark);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track { display: flex; width: max-content; }

.marquee-content {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: mq 28s linear infinite;
  padding-right: 28px;
}

.marquee-content span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mdot {
  width: 4px !important;
  height: 4px !important;
  min-width: 4px;
  background: var(--gold) !important;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
  font-size: 0 !important;
}

@keyframes mq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==================== SECTIONS ==================== */
.section { padding: 140px 0; position: relative; }
.section-dark { background: var(--green); }

.section-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 80px;
}

.section-intro-light h2 { color: var(--white) !important; }
.section-intro-light h2 em { color: var(--gold) !important; }
.section-intro-light p { color: rgba(255,255,255,0.65) !important; }

.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pill-light { background: rgba(201, 168, 76, 0.1); }

.section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--green);
  margin-bottom: 16px;
}

.section-intro p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  font-weight: 300;
}

/* ==================== PILLAR VISUALS ==================== */
.pillars-showcase {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pillar-visual {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.pillar-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(26, 61, 53, 0.08);
}

.pillar-visual.pv-reverse { direction: rtl; }
.pillar-visual.pv-reverse > * { direction: ltr; }

.pv-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.pv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.pillar-visual:hover .pv-img {
  transform: scale(1.04);
}

.pv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 61, 53, 0.3) 0%, rgba(26, 61, 53, 0) 60%);
  pointer-events: none;
}

.pv-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pv-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.4s;
}

.pillar-visual:hover .pv-num { color: var(--gold-dim); }

.pv-content h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 16px;
}

.pv-content p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.pv-tags li {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  background: var(--gray-100);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all 0.3s;
}

.pv-tags li:hover {
  background: var(--green);
  color: var(--white);
}

.pv-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  transition: gap 0.3s var(--ease-out-expo), color 0.3s;
}

.pv-link:hover { gap: 14px; color: var(--gold); }

/* ==================== BEFORE / AFTER ==================== */
.ba-slider-wrap {
  max-width: 960px;
  margin: 0 auto 64px;
}

.ba-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: col-resize;
  aspect-ratio: 16/9;
  background: var(--green-dark);
}

.ba-before, .ba-after {
  position: absolute;
  inset: 0;
}

.ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-after { z-index: 1; }

.ba-before img, .ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before img {
  filter: grayscale(0.6) contrast(0.9);
}

.ba-label {
  position: absolute;
  top: 20px;
  z-index: 3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  backdrop-filter: blur(12px);
}

.ba-label-before {
  left: 20px;
  background: rgba(0,0,0,0.5);
}

.ba-label-after {
  right: 20px;
  background: rgba(201, 168, 76, 0.6);
  color: var(--green-dark);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: var(--gold);
  opacity: 0.7;
}

.ba-handle-circle {
  width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  pointer-events: all;
}

/* Transformation cards */
.transfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.transfo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s var(--ease-out-expo);
}

.transfo-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}

.tc-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  color: var(--gold);
  margin-bottom: 20px;
}

.transfo-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.transfo-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ==================== PHOTO BREAK ==================== */
.photo-break {
  padding: 0;
  overflow: hidden;
}

.photo-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 4px;
}

.photo-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.photo-item:hover img {
  transform: scale(1.06);
}

.photo-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: rgba(9, 26, 20, 0.7);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease-out-expo);
}

.photo-item:hover .photo-label {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== ACTIVITIES ==================== */
.act-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.act-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.act-card-large {
  grid-row: span 2;
}

.act-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}

.act-card:hover img {
  transform: scale(1.06);
}

.act-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 26, 20, 0.9) 0%, rgba(9, 26, 20, 0.1) 50%, rgba(9, 26, 20, 0) 100%);
  transition: background 0.4s;
}

.act-card:hover .act-overlay {
  background: linear-gradient(to top, rgba(9, 26, 20, 0.95) 0%, rgba(9, 26, 20, 0.2) 60%, rgba(9, 26, 20, 0.05) 100%);
}

.act-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.act-info h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.act-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease-out-expo);
}

.act-card:hover .act-info p {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== QUOTE ==================== */
.section-quote {
  padding: 100px 0;
  background: var(--gray-50);
}

.quote-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.quote-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
  border-radius: 2px;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--green);
  margin-bottom: 20px;
}

cite {
  font-style: normal;
  font-size: 13px;
  color: var(--gray-300);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==================== STATS ==================== */
.stats-bar {
  background: var(--green-dark);
  padding: 64px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  color: var(--gold);
}

.stat-lbl {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
}

/* ==================== CTA ==================== */
.cta-mega {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
}

.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 26, 20, 0.92) 0%, rgba(9, 26, 20, 0.8) 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 40px;
  max-width: 640px;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-inner h2 em { color: var(--gold); }

.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.cta-meta svg { color: var(--gold); opacity: 0.6; }

/* ==================== FOOTER ==================== */
#footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.35);
  padding: 56px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}

.footer-brand p { font-size: 14px; line-height: 1.7; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
}

.footer-tagline {
  color: var(--gold);
  opacity: 0.4;
  font-style: italic;
}

/* ==================== ANIMATIONS ==================== */
[data-animate] { opacity: 0; }
[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .pillar-visual {
    grid-template-columns: 1fr;
  }

  .pillar-visual.pv-reverse { direction: ltr; }

  .pv-img-wrap { min-height: 300px; }

  .split-layout { grid-template-columns: 1fr; }

  .photo-row {
    grid-template-columns: 1fr 1fr;
  }

  .act-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .act-card-large { grid-row: span 1; }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
    --pad: 20px;
  }

  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .section { padding: 80px 0; }
  .section-intro { margin-bottom: 48px; }

  .hero-strip {
    gap: 10px;
    padding: 32px var(--pad) 0;
  }

  .strip-card { aspect-ratio: 2/3; }

  .transfo-grid { grid-template-columns: 1fr; gap: 16px; }

  .photo-row { grid-template-columns: 1fr 1fr; }

  .act-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 32px;
  }

  .stat-divider { display: none; }

  .stat-item { min-width: 120px; }

  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-inner { padding: 48px 24px; }

  .hide-mobile { display: none; }

  .hero-scroll-cue { display: none; }

  .ba-slider { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  .hero-strip { flex-wrap: wrap; }
  .strip-card { flex: 1 1 calc(50% - 8px); aspect-ratio: 3/4; }

  .photo-row { grid-template-columns: 1fr; }

  .stats-grid { gap: 24px; }

  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
}
