/* ===========================
   First Track — Shared Styles
   =========================== */

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

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Dark base — hero, footer, compliance strip */
  --navy:       #0d1b2a;
  --navy-mid:   #1b3a5c;

  /* Blue palette — replaces gold throughout */
  --blue:       #1d4ed8;    /* primary: CTA buttons, icons */
  --blue-mid:   #3b82f6;    /* section labels, links, hover */
  --blue-light: #dbeafe;    /* feature strip, tag backgrounds */
  --blue-pale:  #eff6ff;    /* section backgrounds, on-dark accents */
  --blue-muted: #93c5fd;    /* text on dark backgrounds */

  /* Gold — LOGO ONLY */
  --gold:       #c9a84c;

  --ice:        #eaf2f8;
  --white:      #ffffff;
  --grey-light: #f5f7fa;
  --grey-mid:   #e2e8f0;
  --grey-text:  #5a6472;
  --text:       #1a202c;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --max-width: 1140px;
  --radius: 6px;
  --shadow: 0 2px 16px rgba(29,78,216,0.08);
  --shadow-lg: 0 8px 40px rgba(29,78,216,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

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

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.25; }

.section-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 0.75rem;
  display: block;
}

/* Section labels on dark backgrounds need to be lighter */
.hero .section-label,
.page-hero .section-label,
.cta-banner .section-label { color: var(--blue-muted); }

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

section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* ===========================
   NAVIGATION — white, clean
   =========================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-mid);
  transition: box-shadow 0.3s;
}

.site-nav:hover { box-shadow: 0 2px 20px rgba(29,78,216,0.06); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* Gold on logo ONLY */
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-text);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--navy); }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover { background: var(--blue-mid) !important; transform: translateY(-1px); }
.nav-cta.active::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--grey-mid);
  padding: 1rem 24px 1.5rem;
  gap: 0;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--grey-text);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey-mid);
  transition: color 0.2s;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--blue); }

/* ===========================
   HERO — clean deep blue
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url('../images/WhatsApp Image 2026-06-03 at 03.43.47 (8).jpeg');
  background-size: cover;
  background-position: center;
  background-color: #0d1b2a;
  padding: 0;
}

/* Dark gradient overlay — heavier on left where text sits, lighter on right */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 20, 40, 0.82) 0%,
    rgba(10, 20, 40, 0.62) 55%,
    rgba(10, 20, 40, 0.45) 100%
  );
  pointer-events: none;
}

.hero-mountain-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 260' preserveAspectRatio='none'%3E%3Cpolygon points='0,260 180,80 360,200 540,40 720,180 900,20 1080,160 1260,60 1440,140 1440,260' fill='white'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-muted);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--blue-muted);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero h1 em { color: var(--blue-muted); font-style: italic; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 440px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  text-align: center;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(29,78,216,0.35); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.45);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.10); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* --- Hero stats card --- */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.60);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-divider {
  grid-column: span 2;
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.10);
}

/* ===========================
   FEATURE STRIP — light blue
   =========================== */
.feature-strip {
  background: var(--blue-light);
  padding: 0;
}

.feature-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
}

.feature-strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.2rem 1.5rem;
  border-right: 1px solid rgba(29,78,216,0.12);
}

.feature-strip-item:last-child { border-right: none; }

.feature-strip-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-strip-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

/* ===========================
   INTRO / TWO-COLUMN SECTIONS
   =========================== */
.intro-section { background: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-grid.reverse { direction: rtl; }
.intro-grid.reverse > * { direction: ltr; }

.intro-text .section-label { margin-bottom: 0.75rem; }

.intro-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.intro-text p {
  color: var(--grey-text);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.intro-text p:last-of-type { margin-bottom: 1.75rem; }

.intro-visual {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a, #0d1b2a);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.visual-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.25);
}

.visual-placeholder-icon { font-size: 4rem; margin-bottom: 0.5rem; }
.visual-placeholder p { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }

.visual-mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  opacity: 0.15;
}

/* ===========================
   CARDS GRID
   =========================== */
.cards-section { background: var(--grey-light); }
.cards-section.white-bg { background: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--grey-text);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.cards-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.cards-grid.four-col { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.cards-section.white-bg .card { background: var(--grey-light); box-shadow: none; border: 1px solid var(--grey-mid); }

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--grey-text);
  line-height: 1.7;
}

/* ===========================
   TRIP TYPE CARDS (large)
   =========================== */
.trip-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.trip-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.trip-card:hover { transform: translateY(-4px); box-shadow: 0 16px 56px rgba(29,78,216,0.18); }

.trip-card-header {
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.trip-card-header.school { background: linear-gradient(135deg, #0d1b2a 0%, #1e3a8a 100%); }
.trip-card-header.progression { background: linear-gradient(135deg, #1a3a2a 0%, #2d6a4f 100%); }

.trip-card-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.trip-card-badge {
  display: inline-block;
  background: rgba(147,197,253,0.20);
  border: 1px solid rgba(147,197,253,0.35);
  color: var(--blue-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.trip-card-header h2 {
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.trip-card-header p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

.trip-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }

.trip-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.trip-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.trip-feature::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ===========================
   DESTINATION CARDS
   =========================== */
.destination-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.destination-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.destination-card-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.dest-lovell { background: linear-gradient(155deg, #1e3a8a 0%, #0d1b2a 100%); }
.dest-skieasy { background: linear-gradient(155deg, #1a3a2a 0%, #0d2a1b 100%); }
.dest-future { background: linear-gradient(155deg, #1e3a8a 0%, #1b3a5c 100%); }

.destination-card-visual-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.3;
}

.destination-card-visual-content {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
}

.destination-location {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-muted);
  margin-bottom: 0.25rem;
}

.destination-card-visual-content h3 {
  font-size: 1.3rem;
  color: var(--white);
  font-family: var(--serif);
}

.destination-card-body { padding: 1.75rem; }

.destination-card-body p {
  font-size: 0.92rem;
  color: var(--grey-text);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.destination-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.tag {
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* ===========================
   PARTNER DETAIL SECTIONS
   =========================== */
.partner-section { padding: 80px 0; }
.partner-section:nth-child(even) { background: var(--grey-light); }

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.partner-grid.reverse { direction: rtl; }
.partner-grid.reverse > * { direction: ltr; }

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.partner-info h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.partner-location {
  color: var(--blue-mid);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.partner-info p {
  color: var(--grey-text);
  margin-bottom: 1rem;
  font-size: 0.98rem;
  line-height: 1.75;
}

.partner-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.partner-fact {
  background: var(--grey-light);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--blue-mid);
}

.partner-fact-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-text);
  margin-bottom: 0.25rem;
}

.partner-fact-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}

.partner-visual {
  border-radius: 12px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.partner-visual.lovell { background: linear-gradient(160deg, #1e3a8a 0%, #0d1b2a 100%); }
.partner-visual.skieasy { background: linear-gradient(160deg, #1a3a2a 0%, #0a1f13 100%); }

.partner-visual-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  opacity: 0.12;
}

.partner-visual-caption {
  position: relative;
  z-index: 2;
  padding: 2rem;
  background: linear-gradient(to top, rgba(13,27,42,0.9) 0%, transparent 100%);
  width: 100%;
}

.partner-visual-caption p {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-style: italic;
}

/* ===========================
   COMPLIANCE / BADGE STRIP
   =========================== */
.compliance-strip {
  background: var(--navy);
  padding: 56px 0;
}

.compliance-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.compliance-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--blue-muted);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: italic;
}

.compliance-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.compliance-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 1.25rem 1.75rem;
  text-align: center;
  min-width: 180px;
}

.compliance-badge-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.compliance-badge-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.compliance-badge-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.40);
}

/* ===========================
   TESTIMONIAL / QUOTE
   =========================== */
.quote-section { background: var(--blue-pale); }

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

.quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--blue-mid);
  line-height: 0.7;
  margin-bottom: 1rem;
  display: block;
}

.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--navy);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.quote-attribution {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-text);
  letter-spacing: 0.05em;
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(150deg, #0d1b2a 0%, #1e3a8a 55%, #1d4ed8 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(147,197,253,0.10) 0%, transparent 60%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero .section-label { margin-bottom: 0.75rem; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 680px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.8;
}

/* ===========================
   ABOUT — FOUNDER
   =========================== */
.founder-section { background: var(--grey-light); }

.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.founder-portrait {
  background: linear-gradient(135deg, #1e3a8a, #0d1b2a);
  border-radius: 12px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.founder-portrait::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(59,130,246,0.15), transparent);
}

.founder-info h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.founder-title {
  color: var(--blue-mid);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.founder-info p {
  color: var(--grey-text);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.credential {
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

/* ===========================
   VALUES / MISSION LIST
   =========================== */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.value-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.value-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.value-text h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.value-text p {
  font-size: 0.92rem;
  color: var(--grey-text);
  line-height: 1.7;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--grey-mid);
}

.contact-detail-item:first-child { padding-top: 0; }
.contact-detail-item:last-child { border-bottom: none; }

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-text);
  margin-bottom: 0.25rem;
}

.contact-detail-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
}

.contact-detail-value a {
  color: var(--blue);
  transition: color 0.2s;
}

.contact-detail-value a:hover { color: var(--blue-mid); }

.contact-form-panel {
  background: var(--grey-light);
  border-radius: 12px;
  padding: 2.5rem;
}

.contact-form-panel h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.contact-form-panel p {
  color: var(--grey-text);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a8a 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(59,130,246,0.08);
  pointer-events: none;
}

.cta-banner .section-label { justify-content: center; display: flex; align-items: center; margin-bottom: 1rem; }

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { font-size: 1.3rem; margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
  color: rgba(255,255,255,0.45);
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-muted);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.50);
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.8rem; }

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
}

.footer-legal a { color: rgba(255,255,255,0.40); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ===========================
   UTILITY
   =========================== */
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.75rem; }
.divider {
  width: 48px;
  height: 3px;
  background: var(--blue-mid);
  border-radius: 2px;
  margin: 1.25rem 0;
}
.divider.center { margin: 1.25rem auto; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .cards-grid.four-col { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-card { display: none; }
  .hero h1 { font-size: 2.2rem; }

  .feature-strip-inner { flex-direction: column; }
  .feature-strip-item { border-right: none; border-bottom: 1px solid rgba(29,78,216,0.10); }
  .feature-strip-item:last-child { border-bottom: none; }

  .intro-grid,
  .intro-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .intro-visual { min-height: 260px; }

  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid.two-col { grid-template-columns: 1fr; }
  .cards-grid.four-col { grid-template-columns: 1fr 1fr; }

  .trip-cards { grid-template-columns: 1fr; }

  .partner-grid,
  .partner-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .partner-visual { min-height: 280px; }

  .founder-grid { grid-template-columns: 1fr; }
  .founder-portrait { aspect-ratio: 2/1; font-size: 3rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .partner-facts { grid-template-columns: 1fr; }

  .page-hero { padding: 130px 0 60px; }

  .compliance-badges { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .cards-grid.four-col { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
