/* ===========================
   SEED Programme — Main Styles
   =========================== */

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

:root {
  --navy: #1b3a5c;
  --navy-deep: #122840;
  --teal: #1a7a6e;
  --teal-light: #22a093;
  --gold: #b8860b;
  --gold-light: #d4a017;
  --cream: #f5f0e8;
  --cream-dark: #ede7d9;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #777;
  --border: rgba(27, 58, 92, 0.12);
  --shadow-sm: 0 2px 12px rgba(27, 58, 92, 0.08);
  --shadow-md: 0 8px 32px rgba(27, 58, 92, 0.12);
  --shadow-lg: 0 20px 60px rgba(27, 58, 92, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}
.display {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
}
.serif-italic {
  font-style: italic;
}
p {
  font-size: 1rem;
  color: var(--text-mid);
}
a {
  text-decoration: none;
  color: inherit;
}

/* ── UTILITIES ── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.section {
  padding: 120px 0;
  position: relative;
}
.section-sm {
  padding: 80px 0;
}
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--gold);
}
.text-teal {
  color: var(--teal);
}
.text-navy {
  color: var(--navy);
}
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #9a6e09;
  border-color: #9a6e09;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.btn-arrow::after {
  content: "→";
  font-size: 1.1em;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px; /* Slightly taller for more presence */
  padding: 0 40px;
}
.logo {
  display: none; /* Old logo removed */
}
.header-logos {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
}
.logo-wrap {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: var(--transition);
}
.logo-foundation {
  height: 50px; /* Reduced from 56px to fit better */
}
.logo-indogenius {
  height: 64px; /* Reduced from 72px to fit better */
}
.logo-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}

/* Dark layout handling */
.navbar-dark-bg .logo-divider {
  background: rgba(255, 255, 255, 0.3);
}

/* Invert only the Foundation logo (since it is monochrome navy) */
.navbar-dark-bg .logo-foundation {
  filter: brightness(0) invert(1);
}

/* Keep Indo-Genius in full color and make it clearly visible */
.navbar-dark-bg .logo-indogenius {
  filter: none;
  background: rgba(
    255,
    255,
    255,
    0.1
  ); /* Subtle backdrop for contrast if needed */
  border-radius: 4px;
  padding: 2px;
}

/* Scrolled state handling */
.navbar.scrolled .logo-divider {
  background: rgba(0, 0, 0, 0.1);
}
.navbar.scrolled .logo-img {
  filter: none;
  opacity: 1;
  background: none;
  padding: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover {
  background: var(--cream-dark);
  color: var(--teal);
}
.nav-cta {
  margin-left: 8px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: white;
  padding: 24px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}
.mobile-menu a:hover {
  background: var(--cream);
}
.mobile-menu.open {
  display: flex;
}

/* ── NAVBAR FOR DARK BACKGROUNDS (Inner Pages) ── */
.navbar-dark-bg .logo-text strong {
  color: var(--white);
}
.navbar-dark-bg .logo-text span {
  color: rgba(255, 255, 255, 0.6);
}
.navbar-dark-bg .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}
.navbar-dark-bg .nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
}
.navbar-dark-bg .hamburger span {
  background: var(--white);
}

/* Ensure scrolled state overrides dark background text colors */
.navbar.scrolled .logo-text strong {
  color: var(--navy);
}
.navbar.scrolled .logo-text span {
  color: var(--text-light);
}
.navbar.scrolled .nav-links a {
  color: var(--navy);
}
.navbar.scrolled .nav-links a:hover {
  background: var(--cream-dark);
  color: var(--teal);
}
.navbar.scrolled .hamburger span {
  background: var(--navy);
}

/* ── REUSABLE WAVY DIVIDER ── */
.wave-divider {
  position: absolute;
  top: -60px; /* Overlap with previous section */
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1; /* Keep wave behind content */
}
.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.wave-divider .shape-fill {
  fill: inherit; /* Colors will be passed from section */
}

/* ── HERO ── */
.hero {
  min-height: 75vh; /* Restored for better content visibility */
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(184, 134, 11, 0.03) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #fdfbf4 0%, #f7f1e6 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px; /* Increased to avoid header collision */
  padding-bottom: 60px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 600;
  white-space: normal;
  margin-top: 10px; /* Space from navbar */
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: stretch;
  position: relative;
  z-index: 10; /* Ensure content is above the wave */
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  padding-right: 20px;
}

/* Premium Hero Image with Faded Edge */
.hero-image {
  position: relative;
  height: 100%;
}
.hero-image-wrap {
  position: relative;
  height: 100%; /* Fill the grid area */
  width: 100%;
  border-radius: 40px; /* Fully rounded for a cleaner look */
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(
    to right,
    rgba(253, 251, 244, 0.4) 0%,
    transparent 20%
  );
  z-index: 2;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill the space perfectly */
  display: block;
  z-index: 1;
}

.hero-journey {
  font-family: "DM Sans", sans-serif;
  font-size: 1.15rem;
  color: var(--teal);
  font-style: italic;
  margin-bottom: 24px;
}
.hero-partners {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 12px 0;
  border-top: 1px solid rgba(184, 134, 11, 0.15);
  width: 100%;
}
.partner-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.partner-item span {
  font-size: 0.8rem;
  color: var(--text-light);
}
.partner-item strong {
  font-size: 0.9rem;
  color: var(--navy);
}
.partner-divider {
  width: 1px;
  height: 30px;
  background: rgba(0, 0, 0, 0.1);
}

.hero-btns {
  display: flex;
  gap: 16px;
}

/* Photo Box Refinement */
.hero-img-box {
  position: relative;
  z-index: 5;
  padding: 10px; /* Space for the badge */
}
.hero-img-box .img-main {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(184, 134, 11, 0.1);
  display: block;
  position: relative;
  z-index: 1;
}
.hero-floating-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: white;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 10; /* Ensure it stays on top */
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}
.badge-icon {
  font-size: 1.5rem;
}
.badge-content strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}
.badge-content span {
  font-size: 0.8rem;
  color: var(--teal);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.hero-eyebrow span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-sub {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--teal);
  margin-bottom: 16px;
  line-height: 1.5;
}
.hero p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.hero-partners {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-partners strong {
  color: var(--navy);
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
}
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #c8d8cc 0%, #a8c4b8 50%, #8aad9f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--teal);
}
.hero-img-placeholder .icon {
  font-size: 3rem;
  opacity: 0.4;
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-badge-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
}
.hero-badge-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── FORMATION ABOUT ── */
.formation {
  background-color: var(--cream);
  /* The Secret: Soft Watercolor Background Blobs */
  background-image:
    radial-gradient(
      circle at 10% 30%,
      rgba(26, 122, 110, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 70%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(27, 58, 92, 0.05) 0%,
      transparent 50%
    );
}
.formation-intro {
  max-width: 700px;
  margin: 0 auto;
}
.formation h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(253, 251, 244, 0.85) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow:
    0 8px 32px rgba(27, 58, 92, 0.06),
    0 1px 4px rgba(0, 0, 0, 0.03);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 60px rgba(26, 122, 110, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(26, 122, 110, 0.15);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.card:hover::before {
  opacity: 1;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card-icon.green {
  background: rgba(26, 122, 110, 0.12);
}
.card-icon.gold {
  background: rgba(184, 134, 11, 0.12);
}
.card-icon.navy {
  background: rgba(27, 58, 92, 0.12);
}
.card blockquote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 20px;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 500;
  background: rgba(26, 122, 110, 0.08);
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}
.card p {
  font-size: 0.9rem;
  color: var(--text-mid);
}
.deadline-bar {
  text-align: center;
  padding: 20px;
  background: linear-gradient(
    90deg,
    rgba(184, 134, 11, 0.08),
    rgba(26, 122, 110, 0.08)
  );
  border-radius: var(--radius);
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.deadline-bar strong {
  color: var(--navy);
}

/* ── PATHWAY SECTION ── */
.pathway {
  background-color: #f3ede2;
  background-image:
    radial-gradient(
      circle at 85% 20%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(26, 122, 110, 0.07) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(27, 58, 92, 0.04) 0%,
      transparent 60%
    );
}
.pathway h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.pathway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.pathway-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(253, 251, 244, 0.9) 100%
  );
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 32px rgba(27, 58, 92, 0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.pathway-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.pathway-card:hover {
  border-color: rgba(26, 122, 110, 0.3);
  box-shadow: 0 24px 60px rgba(26, 122, 110, 0.1);
  transform: translateY(-6px);
}
.pathway-card:hover::after {
  opacity: 1;
}
.pathway-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.pathway-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
}
.pathway-icon.gold-bg {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.pathway-header h3 {
  font-size: 1.3rem;
  color: var(--navy);
}
.pathway-card p {
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.pathway-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-item {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ── COUNTDOWN SECTION (NEW DESIGN) ── */
.countdown-section {
  position: relative;
  z-index: 10;
  background: var(--navy-deep);
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  border: none !important;
}

/* Glass Shine Effect on Section */
.countdown-section::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.countdown-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  gap: 40px;
}

/* Glass Shine Effect on wrap (moved to section) */

.countdown-info {
  flex: 1;
}

.countdown-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 700;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.countdown-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}

.countdown-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 0;
  line-height: 1.3;
}

.countdown-grid {
  display: flex;
  align-items: center;
  gap: 16px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-num {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  min-width: 72px;
  padding: 12px 8px;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 20px rgba(26, 122, 110, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

.countdown-colon {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  opacity: 0.6;
  margin-top: -24px;
}

.countdown-unit-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  font-weight: 600;
}

.countdown-action {
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .countdown-wrap {
    flex-direction: column;
    padding: 40px;
    text-align: center;
    gap: 32px;
  }
  .countdown-label {
    padding-left: 0;
  }
  .countdown-label::before {
    display: none;
  }
  .countdown-info {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .countdown-grid {
    gap: 10px;
  }
  .countdown-num {
    min-width: 60px;
    font-size: 1.8rem;
    padding: 10px 5px;
  }
  .countdown-title {
    font-size: 1.4rem;
  }
}

/* ── WHO SECTION ── */
.who {
  background-color: var(--navy-deep);
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(26, 122, 110, 0.15) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 60% 90%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    );
}
.who h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: white;
  margin-bottom: 12px;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 56px;
}
.who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.who-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}
.who-list li:hover {
  border-left-color: var(--teal);
  background: rgba(26, 122, 110, 0.12);
}
.who-check {
  width: 24px;
  height: 24px;
  background: var(--teal);
  border-radius: 50%;
  color: white;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.who-list li p {
  font-size: 0.9rem;
  color: white;
  margin: 0;
}

.who-highlight {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: white;
  position: relative;
  overflow: hidden;
}
.who-highlight::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: "Playfair Display", serif;
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
}
.who-highlight h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.who-highlight p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 16px;
}
.who-highlight em {
  color: var(--gold-light);
  font-style: italic;
}

/* ── GAINS SECTION ── */
.gains {
  background-color: white;
  background-image:
    radial-gradient(
      circle at 75% 15%,
      rgba(26, 122, 110, 0.07) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(212, 175, 55, 0.09) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(27, 58, 92, 0.04) 0%,
      transparent 55%
    );
}
.gains h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.gains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.gain-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(253, 251, 244, 0.9) 100%
  );
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 24px rgba(27, 58, 92, 0.06);
}
.gain-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(26, 122, 110, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(26, 122, 110, 0.2);
}
.gain-num {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  /* Odd cards (01, 03, 05) — Gold */
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
/* Even cards (02, 04, 06) — Navy Blue */
.gain-card:nth-child(even) .gain-num {
  color: var(--navy);
}
.gain-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.gain-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.gain-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
}

/* ── FRAMEWORKS SECTION ── */
.frameworks {
  background-color: #fdfbf4;
  background-image:
    radial-gradient(
      circle at 10% 60%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 90% 30%,
      rgba(26, 122, 110, 0.07) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 0%,
      rgba(27, 58, 92, 0.05) 0%,
      transparent 50%
    );
}
.frameworks h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.fw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.fw-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.fw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}
.fw-flag {
  font-size: 2rem;
  margin-bottom: 14px;
}
.fw-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.fw-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
}
.fw-card.finland {
  background: linear-gradient(145deg, #e8f4ee, #d2ead8);
  color: var(--teal);
}
.fw-card.finland h4 {
  color: var(--teal);
}
.fw-card.montessori {
  background: linear-gradient(145deg, #f5ede0, #ede3d1);
  color: var(--gold);
}
.fw-card.montessori h4 {
  color: var(--gold);
}
.fw-card.reggio {
  background: linear-gradient(145deg, #ede9f5, #e0d9ee);
  color: #6b4e9f;
}
.fw-card.reggio h4 {
  color: #6b4e9f;
}
.fw-card.cambridge {
  background: linear-gradient(145deg, #e6eef6, #d8e6f0);
  color: var(--navy);
}
.fw-card.cambridge h4 {
  color: var(--navy);
}
.fw-lens {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  color: white;
  text-align: center;
}
.fw-lens p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}
.fw-lens strong {
  color: white;
}

/* ── VENUES SECTION ── */
.venues {
  background-color: white;
  background-image:
    radial-gradient(
      circle at 80% 10%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 10% 70%,
      rgba(26, 122, 110, 0.08) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 50% 90%,
      rgba(27, 58, 92, 0.04) 0%,
      transparent 50%
    );
}
.venues h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.venue-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(253, 251, 244, 0.88) 100%
  );
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 28px rgba(27, 58, 92, 0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.venue-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 24px 60px rgba(26, 122, 110, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(26, 122, 110, 0.2);
}
.venue-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}
.venue-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.venue-card p {
  font-size: 0.875rem;
  color: var(--text-light);
}
.venue-badge {
  display: inline-block;
  background: rgba(26, 122, 110, 0.1);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 12px;
}
.venues-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── TAGLINE STRIP ── */
.tagline-strip {
  background: linear-gradient(
    160deg,
    #0d2035 0%,
    var(--navy-deep) 50%,
    #0a1a2e 100%
  );
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tagline-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(26, 122, 110, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.tagline-words {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.tagline-word {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.25);
}
.tagline-divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: 2.5rem;
  font-weight: 100;
}
.tagline-sub {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.tagline-sub span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
}
.tagline-dot {
  color: rgba(212, 175, 55, 0.3);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text strong {
  color: white;
}
.footer-brand .logo-text span {
  color: rgba(255, 255, 255, 0.5);
}
footer p {
  color: rgba(255, 255, 255, 0.65);
}
.footer-brand p {
  font-size: 0.85rem;
  margin-top: 16px;
  line-height: 1.7;
}
footer h5 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
footer ul a:hover {
  color: white;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
}
.footer-tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 0.875rem;
  color: var(--gold);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(26, 122, 110, 0.12);
  pointer-events: none;
}
.page-hero h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.8rem;
}
.breadcrumb a {
  color: var(--gold);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* ── FORM STYLES ── */
.form-section {
  background: var(--cream);
}
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}
.form-sidebar {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  padding: 48px 36px;
  color: white;
}
.form-sidebar h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 16px;
}
.form-sidebar p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.sidebar-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sidebar-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}
.sidebar-points li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-body {
  padding: 48px 40px;
}
.form-part-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group label .req {
  color: var(--teal);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 3px rgba(26, 122, 110, 0.1);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.radio-group,
.checkbox-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text-mid);
}
.radio-label input,
.checkbox-label input {
  accent-color: var(--teal);
}
.form-control-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231B3A5C' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-submit {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid var(--cream-dark);
  margin-top: 32px;
}
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream);
}
.upload-zone:hover {
  border-color: var(--teal);
  background: rgba(26, 122, 110, 0.04);
}
.upload-zone p {
  font-size: 0.85rem;
  color: var(--text-light);
}
.upload-zone strong {
  color: var(--teal);
}

/* ── ABOUT PAGE ── */
.about-content {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.about-text p {
  margin-bottom: 16px;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow:
    0 24px 64px rgba(27, 58, 92, 0.14),
    0 4px 16px rgba(0, 0, 0, 0.06);
  /* Subtle gold accent frame */
  outline: 3px solid rgba(212, 175, 55, 0.25);
  outline-offset: 8px;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover img {
  transform: scale(1.03);
}
.principle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.principle-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.principle-num {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}
.principle-list li h5 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.principle-list li p {
  font-size: 0.875rem;
  margin: 0;
}

/* ── SUCCESS PAGE ── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 40px 24px;
  padding-top: 116px;
}
.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 28px;
}
.success-card h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.success-card p {
  color: var(--text-mid);
  margin-bottom: 12px;
}
.success-tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--teal);
  font-size: 1.1rem;
  margin-top: 32px;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 {
  transition-delay: 0.1s;
}
.fade-in-delay-2 {
  transition-delay: 0.2s;
}
.fade-in-delay-3 {
  transition-delay: 0.3s;
}
.fade-in-delay-4 {
  transition-delay: 0.4s;
}
.fade-in-delay-5 {
  transition-delay: 0.5s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fw-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image {
    order: -1;
  }
  .hero-img-wrap {
    aspect-ratio: 16/9;
  }
  .hero-badge {
    bottom: -10px;
    left: 10px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .pathway-grid {
    grid-template-columns: 1fr;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .gains-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fw-grid {
    grid-template-columns: 1fr 1fr;
  }
  .venues-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .countdown-grid {
    gap: 12px;
  }
  .countdown-num {
    min-width: 64px;
    font-size: 1.8rem;
    padding: 14px 10px;
  }
  .tagline-words {
    gap: 16px;
  }
  .wave-divider svg {
    height: 40px;
    display: block;
    /* Match this fill exactly to your countdown section background */
    fill: #122840;
  }
  .section {
    padding-top: 100px !important;
  }
}
@media (max-width: 480px) {
  .gains-grid {
    grid-template-columns: 1fr;
  }
  .fw-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 80px 0;
  }
  .form-body {
    padding: 32px 24px;
  }
  .pathway-stats {
    grid-template-columns: 1fr;
  }
  .hero-eyebrow span {
    font-size: 0.7rem;
    max-width: 280px;
  }
  .wave-divider svg {
    height: 30px;
  }
}

/* ── HERO SECTION (Zoom-proof responsive) ── */
.hero {
  position: relative;
  background: #fdfbf4;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 100vh;
}
.hero .container-fluid {
  padding: 0;
  width: 100%;
}

/* KEY FIX: Fixed percentages prevent layout breaking on zoom */
.hero-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: stretch;
  width: 100%;
  min-height: 100vh;
}

.hero-content {
  padding: clamp(100px, 12vh, 140px) clamp(16px, 4vw, 48px) clamp(60px, 8vh, 100px) clamp(24px, 8%, 96px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
}

/* Typography — all clamp() so zoom scales text smoothly */
.hero h2.display {
  font-size: clamp(1.4rem, 2.8vw, 3rem);
  color: var(--navy);
  margin-bottom: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-sub-italic {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.8rem);
  color: var(--navy-deep);
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

.hero-journey-text {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--text-dark);
  margin-bottom: 1.8rem;
}

.hero-attribution {
  position: relative;
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  border-top: none;
}
.hero-attribution::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(350px, 100%);
  height: 1px;
  background: linear-gradient(to right, var(--gold) 0%, transparent 100%);
}
.hero-attribution p {
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  margin-bottom: 4px;
}

/* Image Container */
.hero-image-container {
  position: relative;
  height: 100%;
  min-height: 500px;
}
.hero-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fade gradient from content side into image */
.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    #fdfbf4 0%,
    rgba(253, 251, 244, 0.75) 8%,
    rgba(253, 251, 244, 0.15) 20%,
    transparent 55%
  );
}

/* ── HERO RESPONSIVE BREAKPOINTS ── */

/* Tablet: stack vertically */
@media (max-width: 992px) {
  .hero {
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 80px 32px 48px;
    order: 2;
    max-width: 100%;
  }
  .hero-image-container {
    height: 55vw;
    min-height: 300px;
    order: 1;
  }
  .hero-overlay-gradient {
    background: linear-gradient(to top, #fdfbf4 0%, transparent 50%);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero-content {
    padding: 48px 20px 40px;
  }
  .hero-image-container {
    height: 65vw;
  }
}

