/* ============================================================
   PEMBRIX EDUCATION — Design System v2
   Same palette: Ivory + Deep Forest + Burnt Ochre
   Modern SaaS architecture with editorial soul
   ============================================================ */

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

:root {
  /* Core palette */
  --ivory: #f5f0e6;
  --ivory-deep: #ebe3d1;
  --cream: #faf7ef;
  --forest: #1f3a2e;
  --forest-deep: #15271f;
  --ochre: #c87533;
  --ochre-deep: #a85a1f;
  --ochre-soft: #e89552;
  --ink: #1a1a18;
  --muted: #6b6860;
  --line: #e3d9c0;
  --line-soft: #ede4cf;

  /* Accent dark — for testimonial/footer/CTA bands (stays dark in both modes) */
  --accent-dark: #1f3a2e;
  --accent-dark-deep: #15271f;
  --accent-dark-text: #faf7ef;

  /* Navy palette — used in hero stats strip, journey bar, founder background, CTA banner */
  --navy: #14213d;
  --navy-deep: #0c1729;
  --navy-soft: #1c2d52;
  --gold: #d4a149;
  --gold-soft: #e8c074;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w: 1240px;
  --max-w-narrow: 920px;
  --pad-x: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(4rem, 9vw, 8rem);

  /* Radii */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(20, 20, 18, 0.04), 0 2px 6px rgba(20, 20, 18, 0.05);
  --shadow: 0 4px 12px rgba(20, 20, 18, 0.06), 0 12px 32px -10px rgba(20, 20, 18, 0.1);
  --shadow-lg: 0 16px 60px -20px rgba(31, 58, 46, 0.3);

  /* Transitions */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-theme="dark"] {
  --ivory: #14201a;
  --ivory-deep: #1a2820;
  --cream: #1a2820;
  --forest: #d8cfb8;
  --forest-deep: #ebe3d1;
  --ochre: #e89552;
  --ochre-deep: #c87533;
  --ochre-soft: #f5b67a;
  --ink: #f5f0e6;
  --muted: #9a9688;
  --line: #2a3a31;
  --line-soft: #1f2d24;

  --accent-dark: #0a1510;
  --accent-dark-deep: #050b08;
  --accent-dark-text: #f5f0e6;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--ochre); color: var(--cream); }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}

h1 { font-size: clamp(2.75rem, 6.5vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.08; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); line-height: 1.2; letter-spacing: -0.015em; }

.italic-accent {
  font-style: italic;
  font-weight: 300;
  color: var(--ochre);
}

p { line-height: 1.65; }

/* ========== LAYOUT PRIMITIVES ========== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.container-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ochre);
  margin-bottom: 1.25rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head p {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--muted);
  margin-top: 1.25rem;
  max-width: 580px;
  line-height: 1.65;
}

/* ========== NAVIGATION ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--ivory) 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  color: var(--ink);
}

.brand-mark {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--ochre);
  border-radius: 50%;
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
  padding: 0.4rem 0;
  color: var(--ink);
  font-weight: 400;
  transition: color 0.2s var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--ochre);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--forest); font-weight: 500; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.25s var(--ease);
}

.theme-toggle:hover {
  background: var(--cream);
  border-color: var(--forest);
  transform: rotate(15deg);
}

.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(31, 58, 46, 0.4);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(31, 58, 46, 0.5);
}

.btn-ochre {
  background: var(--ochre);
  color: var(--cream);
}

.btn-ochre:hover {
  background: var(--ochre-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(200, 117, 51, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad-x) clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}

.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0.85rem 0.45rem 0.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.hero-trust-dot {
  width: 8px;
  height: 8px;
  background: var(--ochre);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.hero-trust-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--ochre);
  opacity: 0.3;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.5); opacity: 0; }
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-num sup {
  font-size: 0.5em;
  color: var(--ochre);
  font-style: italic;
  font-weight: 300;
  margin-left: 0.1em;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.45rem;
}

/* ========== HERO IMAGE ========== */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ivory-deep);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(31, 58, 46, 0.18));
  z-index: 1;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 9s var(--ease);
}

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

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: rgba(245, 240, 230, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.hero-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-icon svg { width: 18px; height: 18px; }

.hero-badge-text { font-size: 0.85rem; line-height: 1.4; }
.hero-badge-text strong { display: block; font-weight: 600; color: var(--ink); margin-bottom: 0.1rem; }
.hero-badge-text span { color: var(--muted); }

/* ========== LOGO STRIP / TRUST BAR ========== */
.trust-bar {
  padding: 2.5rem var(--pad-x);
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
}

.trust-cities {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  flex-wrap: wrap;
}

.trust-city {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--forest);
}

/* ========== HOW IT WORKS ========== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}

.how-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.how-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--forest);
}

.how-card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--ochre);
  letter-spacing: 0.05em;
}

.how-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ivory-deep);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.how-card:hover .how-icon { background: var(--forest); color: var(--cream); }

.how-icon svg { width: 24px; height: 24px; }

.how-card h3 {
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.how-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== DESTINATIONS ========== */
.destinations {
  background: var(--cream);
}

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

.dest-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--ivory-deep);
  isolation: isolate;
}

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

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

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 20, 18, 0) 35%, rgba(20, 20, 18, 0.85) 100%);
  z-index: 1;
}

.dest-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--cream);
}

.dest-flag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(245, 240, 230, 0.92);
  color: var(--forest);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  z-index: 2;
}

.dest-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.dest-meta {
  font-size: 0.85rem;
  opacity: 0.85;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.dest-meta span::before {
  content: '·';
  margin-right: 1rem;
  opacity: 0.5;
}
.dest-meta span:first-child::before { content: ''; margin: 0; }

/* ========== WHY US ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
}

.why-cell {
  padding: 2.25rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
  position: relative;
}

.why-cell:hover { background: var(--ivory); }

.why-cell:nth-child(2n) { border-right: none; }
.why-cell:nth-last-child(-n+2) { border-bottom: none; }

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--forest);
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.why-icon svg { width: 22px; height: 22px; }

.why-cell h3 { margin-bottom: 0.5rem; color: var(--ink); }
.why-cell p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* ========== TESTIMONIAL ========== */
.testimonial-section {
  background: var(--accent-dark);
  color: var(--accent-dark-text);
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ochre) 0%, transparent 65%);
  opacity: 0.18;
  pointer-events: none;
}

.testimonial-section .eyebrow { color: var(--ochre-soft); }

.testimonial {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
  pointer-events: none;
}

.testimonial-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4;
  color: var(--accent-dark-text);
  margin-bottom: 2.25rem;
  letter-spacing: -0.01em;
}

.testimonial blockquote::before {
  content: '"';
  font-size: 1.2em;
  line-height: 0;
  position: relative;
  top: 0.1em;
  color: var(--ochre);
  margin-right: 0.05em;
}

.testimonial cite {
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ochre);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  flex-shrink: 0;
}

.testimonial-meta { font-size: 0.92rem; line-height: 1.4; }
.testimonial-meta strong {
  display: block;
  color: var(--accent-dark-text);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.testimonial-meta span { color: rgba(245, 240, 230, 0.65); font-size: 0.85rem; }

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
  margin-top: 2.5rem;
}

.testimonial-dot {
  width: 28px;
  height: 3px;
  background: rgba(245, 240, 230, 0.2);
  border-radius: 2px;
  transition: background 0.3s var(--ease);
}

.testimonial-dot.is-active { background: var(--ochre); }

/* ========== FOUNDER ========== */
.founder {
  position: relative;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.founder-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ivory-deep);
  box-shadow: var(--shadow);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-placeholder {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.founder-placeholder::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, var(--ochre) 0%, transparent 50%);
  opacity: 0.35;
  top: -50%;
  left: -50%;
}

.founder-placeholder span {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(5rem, 9vw, 8rem);
  color: var(--cream);
  letter-spacing: -0.05em;
  z-index: 1;
}

.founder-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.4;
  color: var(--forest);
  margin: 1.25rem 0 2rem;
  letter-spacing: -0.01em;
}

.founder-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.founder-meta strong {
  font-weight: 600;
  color: var(--ink);
  display: block;
}

.founder-meta span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--ochre);
  font-size: 0.95rem;
}

/* ========== BIG CTA ========== */
.big-cta-section { padding-top: 0; }

.big-cta {
  background: var(--accent-dark);
  color: var(--accent-dark-text);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 5vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
}

.big-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ochre) 0%, transparent 65%);
  opacity: 0.25;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.big-cta::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--forest-deep) 0%, transparent 60%);
  opacity: 0.4;
  bottom: -500px;
  right: -300px;
  pointer-events: none;
}

.big-cta-content { position: relative; z-index: 1; }

.big-cta .eyebrow { color: var(--ochre-soft); }
.big-cta h2 { color: var(--accent-dark-text); margin-bottom: 1rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.big-cta p {
  color: rgba(245, 240, 230, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.big-cta-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.big-cta .btn-primary {
  background: var(--ochre);
  color: var(--cream);
}
.big-cta .btn-primary:hover {
  background: var(--ochre-deep);
  box-shadow: 0 14px 30px -10px rgba(232, 149, 82, 0.6);
}

.big-cta .btn-ghost {
  background: transparent;
  color: var(--accent-dark-text);
  border: 1px solid rgba(245, 240, 230, 0.35);
}
.big-cta .btn-ghost:hover {
  background: rgba(245, 240, 230, 0.08);
  border-color: var(--accent-dark-text);
  color: var(--accent-dark-text);
  transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--accent-dark-deep);
  color: rgba(245, 240, 230, 0.65);
  padding: clamp(3.5rem, 6vw, 5rem) var(--pad-x) 2rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 240, 230, 0.1);
}

.footer .brand { color: var(--accent-dark-text); font-size: 1.55rem; margin-bottom: 1rem; }
.footer-about { font-size: 0.92rem; line-height: 1.65; max-width: 360px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ochre-soft);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: 0.93rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-dark-text); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(245, 240, 230, 0.5);
}

/* ========== INTERIOR PAGE HEADER (used by other pages) ========== */
.page-header {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x) clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  max-width: 900px;
  margin-top: 0.5rem;
}

.page-header-decor {
  position: absolute;
  right: var(--pad-x);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(6rem, 18vw, 16rem);
  color: var(--ivory-deep);
  line-height: 1;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}

/* ========== INTERIOR PAGE PROSE & UTILITIES (used by about, services, contact) ========== */
.prose { max-width: 720px; }
.prose p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 400;
  float: left;
  line-height: 0.85;
  padding: 0.3rem 0.8rem 0 0;
  color: var(--ochre);
  font-style: italic;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.values-list { list-style: none; }
.values-list li {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem;
  align-items: start;
}
.values-list li:last-child { border-bottom: none; }
.values-list .v-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ochre);
  font-size: 1rem;
  padding-top: 0.2rem;
  min-width: 2rem;
}
.values-list h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--forest);
}
.values-list p {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-dark {
  background: var(--accent-dark);
  color: var(--accent-dark-text);
}
.section-dark .eyebrow { color: var(--ochre-soft); }
.section-dark h2 { color: var(--accent-dark-text); }
.section-dark .section-head p { color: rgba(245, 240, 230, 0.75); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--forest);
}
.card-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--ochre);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  display: block;
}
.card h3 { color: var(--forest); margin-bottom: 0.75rem; }
.card p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

.section-dark .card {
  background: transparent;
  border-color: rgba(245, 240, 230, 0.15);
}
.section-dark .card:hover {
  background: rgba(245, 240, 230, 0.04);
  border-color: var(--ochre);
}
.section-dark .card h3 { color: var(--accent-dark-text); }
.section-dark .card p { color: rgba(245, 240, 230, 0.7); }

.cta-block {
  background: var(--accent-dark);
  color: var(--accent-dark-text);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: 2rem auto;
}
.cta-block::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ochre) 0%, transparent 70%);
  opacity: 0.35;
}
.cta-block h2 { color: var(--accent-dark-text); position: relative; z-index: 1; }
.cta-block p {
  color: rgba(245, 240, 230, 0.75);
  margin-top: 1.2rem;
  max-width: 420px;
  position: relative; z-index: 1;
}
.cta-block .btn-primary {
  background: var(--ochre);
  white-space: nowrap;
  position: relative;
  z-index: 1;
  justify-self: end;
}
.cta-block .btn-primary:hover { background: var(--ochre-deep); }

.service-row {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--ochre);
  font-size: 1.1rem;
}
.service-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--forest);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.service-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 620px;
}
.service-details {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
  margin-top: 1rem;
}
.service-details li {
  font-size: 0.9rem;
  color: var(--ink);
  padding-left: 1.2rem;
  position: relative;
}
.service-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--ochre);
  border-radius: 50%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
.form { display: flex; flex-direction: column; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  padding: 0.9rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: var(--ivory);
}
.field textarea { resize: vertical; min-height: 130px; font-family: var(--font-body); }
.contact-info h3 { color: var(--forest); margin-bottom: 1rem; font-size: 1.4rem; }
.contact-info p { color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.info-item { padding: 1.2rem 0; border-top: 1px solid var(--line); }
.info-item:last-child { border-bottom: 1px solid var(--line); }
.info-label {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ochre);
  margin-bottom: 0.4rem;
}
.info-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
}

.team-member {
  margin-top: 3rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  max-width: 900px;
}
.team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 1.8rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.team-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--forest);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.team-role {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--ochre);
  font-size: 1.1rem;
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}
.team-linkedin:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
}
.team-bio p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.3rem;
}
.team-bio p:last-child { margin-bottom: 0; }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.9s var(--ease) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ========== HERO V2 (reference-matched) ========== */
.hero-v2 {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: var(--ivory);
}

.hero-v2-inner {
  position: relative;
  max-width: none;
  margin: 0;
  min-height: clamp(520px, 72vh, 680px);
  display: flex;
  align-items: center;
  isolation: isolate;
}

/* Photo fills entire hero as a layered background */
.hero-v2-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: var(--ivory-deep);
}

.hero-v2-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  display: block;
}

/* White-to-transparent gradient overlay on the left so the headline reads */
.hero-v2-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--ivory) 0%,
    var(--ivory) 25%,
    rgba(245, 240, 230, 0.92) 38%,
    rgba(245, 240, 230, 0.55) 52%,
    rgba(245, 240, 230, 0.15) 65%,
    transparent 78%
  );
  z-index: 1;
}

.hero-v2-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 7vw, 5.5rem) var(--pad-x);
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-v2-content-inner {
  max-width: 540px;
  display: flex;
  flex-direction: column;
}

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

.hero-v2-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--forest-deep);
  margin-bottom: 1.5rem;
}

.hero-v2-sub {
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  color: var(--ink);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

.hero-v2-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-v2-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-avatars {
  display: inline-flex;
}

.hero-avatars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--ivory);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  margin-left: -10px;
}

.hero-avatars span:first-child { margin-left: 0; }

.hero-rating { display: flex; flex-direction: column; gap: 0.15rem; }

.hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  color: var(--ochre);
}

.hero-stars strong {
  margin-left: 0.5rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-stars span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
  margin-left: 0.3rem;
}

.hero-rating small {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ----- JOURNEY PANEL OVERLAY ----- */
.journey-panel {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: clamp(220px, 30vw, 280px);
  background: rgba(31, 58, 46, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem;
  z-index: 2;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.4);
}

.journey-panel h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 0.9rem;
}

.journey-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  counter-reset: jstep;
}

.journey-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.journey-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(245, 240, 230, 0.12);
  color: var(--ochre-soft);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.journey-icon svg { width: 16px; height: 16px; }

.journey-steps strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.1rem;
}

.journey-steps small {
  display: block;
  font-size: 0.74rem;
  color: rgba(245, 240, 230, 0.7);
  line-height: 1.3;
}

/* ========== STATS FLOATING BAR ========== */
.stats-floating {
  position: relative;
  margin-top: -3rem;
  padding: 0 var(--pad-x);
  z-index: 5;
}

.stats-floating-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  box-shadow: var(--shadow);
}

.stat-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ivory-deep);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg { width: 22px; height: 22px; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ----- ACCESS BAR (single-line variant of stats-floating) ----- */
.access-bar {
  display: flex !important;
  align-items: center;
  gap: 1.25rem;
  grid-template-columns: none !important;
}
.access-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ivory-deep);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.access-icon svg { width: 24px; height: 24px; }
.access-statement {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
  letter-spacing: -0.015em;
}
.access-statement strong {
  color: var(--forest);
  font-weight: 600;
  font-style: italic;
}

/* ========== SERVICES V2 (6-column grid) ========== */
.services-v2 { padding-top: clamp(5rem, 8vw, 7rem); }

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  gap: 2rem;
  flex-wrap: wrap;
}

.services-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
  color: var(--ink);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--forest);
  transition: color 0.2s, gap 0.2s;
}

.link-arrow:hover { color: var(--ochre); gap: 0.6rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--forest);
}

.service-icon {
  margin: 0 auto 1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ivory-deep);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}

.service-card:hover .service-icon {
  background: var(--forest);
  color: var(--ochre-soft);
}

.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ========== DESTINATIONS V2 (5-card horizontal) ========== */
.destinations-v2 { padding-top: clamp(4rem, 7vw, 6rem); }

.dest-grid-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.dest-card-v2 {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.dest-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.dest-photo {
  aspect-ratio: 16 / 11;
  background: var(--ivory-deep);
  overflow: hidden;
}

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

.dest-card-v2:hover .dest-photo img { transform: scale(1.06); }

.dest-info {
  padding: 1rem 1.2rem 1.2rem;
}

.dest-flag-line {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
}

.dest-flag-emoji {
  font-size: 1.15rem;
  line-height: 1;
}

.dest-flag-line strong {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.dest-info p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

/* ========== TESTIMONIALS V2 (3-card grid) ========== */
.testimonials-v2 .eyebrow { display: block; }
.testimonials-v2 h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
}

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

.t-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  position: relative;
}

.t-quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.7;
  color: var(--ochre);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.t-text {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.t-cite {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ochre), var(--ochre-deep));
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}

.t-cite strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.1rem;
}

.t-cite span {
  font-size: 0.78rem;
  color: var(--muted);
}

.t-card-empty {
  background: transparent;
  border: 1.5px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.t-empty-state {
  text-align: center;
  color: var(--muted);
}

.t-empty-state svg {
  margin: 0 auto 0.75rem;
  opacity: 0.4;
  display: block;
}

.t-empty-state p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 1rem;
}

.t-empty-cta {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ochre);
  transition: color 0.2s;
}

.t-empty-cta:hover { color: var(--ochre-deep); }

/* ========== CTA BANNER ========== */
.cta-banner-section { padding-bottom: clamp(4rem, 7vw, 6rem); }

.cta-banner {
  background: var(--accent-dark);
  color: var(--accent-dark-text);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.cta-banner-text {
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-banner h2 {
  color: var(--accent-dark-text);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(245, 240, 230, 0.78);
  font-size: 0.98rem;
  margin-bottom: 1.75rem;
  max-width: 380px;
}

.cta-banner-photo {
  position: relative;
  min-height: 280px;
  background: var(--forest-deep);
}

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

.cta-banner-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent-dark) 0%, transparent 30%);
  z-index: 1;
  pointer-events: none;
}

/* ========== FOOTER SOCIALS ========== */
.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(245, 240, 230, 0.08);
  color: var(--accent-dark-text);
  transition: background 0.2s, transform 0.2s;
}

.footer-socials a:hover {
  background: var(--ochre);
  transform: translateY(-2px);
}

/* ========== RESPONSIVE FOR V2 ========== */
@media (max-width: 980px) {
  .hero-v2-inner { min-height: 540px; }
  .hero-v2-content {
    padding: clamp(2.5rem, 6vw, 4rem) var(--pad-x);
  }
  /* On tablet, intensify the gradient so text reads on top of photo */
  .hero-v2-visual::after {
    background: linear-gradient(
      90deg,
      var(--ivory) 0%,
      rgba(245, 240, 230, 0.95) 35%,
      rgba(245, 240, 230, 0.7) 55%,
      rgba(245, 240, 230, 0.25) 75%,
      transparent 95%
    );
  }
  .hero-v2-visual img { object-position: 80% center; }

  .stats-floating-inner { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .access-bar { gap: 1rem; padding: 1.25rem 1.5rem !important; }
  .access-icon { width: 44px; height: 44px; }
  .access-icon svg { width: 20px; height: 20px; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-grid-v2 { grid-template-columns: repeat(3, 1fr); }
  .t-grid { grid-template-columns: 1fr; }

  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner-photo { min-height: 220px; order: -1; }
  .cta-banner-photo::before { background: linear-gradient(180deg, transparent 50%, var(--accent-dark)); }
}

@media (max-width: 640px) {
  .hero-v2-inner { min-height: 480px; }
  /* On mobile, fade vertically (photo at the top, text on a fade-down) */
  .hero-v2-visual::after {
    background: linear-gradient(
      180deg,
      rgba(245, 240, 230, 0.05) 0%,
      rgba(245, 240, 230, 0.55) 25%,
      rgba(245, 240, 230, 0.92) 45%,
      var(--ivory) 60%
    );
  }
  .hero-v2-visual img { object-position: 50% 30%; }
  .hero-v2-content { padding: 18rem var(--pad-x) 3rem; }

  .stats-floating { margin-top: -2rem; padding: 0 1rem; }
  .stats-floating-inner { padding: 1.25rem; gap: 1rem; }
  .stat-cell { gap: 0.6rem; }
  .stat-icon { width: 40px; height: 40px; }
  .access-bar { padding: 1.1rem 1.25rem !important; gap: 0.85rem; }
  .access-statement { font-size: 1rem; line-height: 1.45; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid-v2 { grid-template-columns: 1fr; }

  .services-head { flex-direction: column; align-items: flex-start; }
}

/* ========== RESPONSIVE (BASE — kept from v1) ========== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { aspect-ratio: 5 / 4; max-width: 580px; margin: 0 auto; }

  .how-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-cell { border-right: none; }
  .why-cell:nth-child(2n) { border-right: none; }
  .why-cell:not(:last-child) { border-bottom: 1px solid var(--line); }
  .why-cell:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .why-cell:last-child { border-bottom: none; }

  .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-photo { max-width: 480px; margin: 0 auto; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .two-col, .contact-grid, .cta-block, .service-row { grid-template-columns: 1fr; }
  .cta-block .btn-primary { justify-self: start; }
  .service-details { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 1.5rem var(--pad-x);
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }

  .dest-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }

  .trust-bar { padding: 2rem var(--pad-x); }
  .trust-inner { justify-content: center; text-align: center; }
}

/* ========== CONSULTATION MODAL ========== */
.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
}
.consult-modal.is-open {
  display: flex;
}

.consult-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(21, 39, 31, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.consult-modal-panel {
  position: relative;
  width: 100%;
  max-width: 760px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.45);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  margin: auto;
  animation: consult-rise 0.3s var(--ease) both;
}

@keyframes consult-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.consult-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ivory-deep);
  color: var(--ink);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 2;
}
.consult-close:hover {
  background: var(--forest);
  color: var(--cream);
  transform: rotate(90deg);
}

.consult-modal-head {
  margin-bottom: 1.75rem;
  padding-right: 2.5rem;
}
.consult-modal-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.5rem 0 0.85rem;
}
.consult-modal-sub {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.consult-form .consult-section {
  border: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.consult-form .consult-section:last-of-type {
  margin-bottom: 1.5rem;
}
.consult-form .consult-section legend {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ochre-deep);
  margin-bottom: 0.4rem;
  padding: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.6rem;
  width: 100%;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.consult-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

/* Modal in dark mode */
[data-theme="dark"] .consult-modal-panel {
  background: var(--cream);
  border-color: var(--line);
}
[data-theme="dark"] .consult-modal-backdrop {
  background: rgba(0, 0, 0, 0.7);
}

/* Modal mobile */
@media (max-width: 640px) {
  .consult-modal { padding: 1rem 0.5rem; }
  .consult-modal-panel { padding: 1.5rem 1.25rem; border-radius: var(--radius); }
  .consult-modal-head { padding-right: 2rem; margin-bottom: 1.25rem; }
  .field-row { grid-template-columns: 1fr; gap: 1rem; }
  .consult-form .consult-section { margin-bottom: 1.4rem; }
  .consult-actions { flex-direction: column-reverse; }
  .consult-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   HOMEPAGE v3 ADDITIONS — Trust strip, Journey, Founder, Single testimonial
   ============================================================ */

/* ----- TRUST STRIP (forest green, sits below hero) ----- */
.trust-strip {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(2.25rem, 4.5vw, 3.5rem) var(--pad-x);
}
.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}
.trust-cell {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}
.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(232, 149, 82, 0.18);
  color: var(--ochre-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-text { display: flex; flex-direction: column; line-height: 1.3; gap: 0.15rem; }
.trust-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.trust-text span {
  font-size: 0.8rem;
  color: rgba(250, 247, 239, 0.72);
  line-height: 1.4;
}

/* ----- JOURNEY SECTION (6-step horizontal grid) ----- */
.journey-section {
  background: var(--ivory);
  padding: var(--section-y) var(--pad-x);
}
.journey-section .container { text-align: center; }
.journey-section h2 {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.journey-steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  position: relative;
  text-align: center;
}
/* Connecting line behind icons */
.journey-steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  z-index: 0;
}
.js-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.js-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--ochre-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  box-shadow: 0 6px 18px -4px rgba(31, 58, 46, 0.3);
}
.js-icon svg { width: 24px; height: 24px; }
.js-num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ochre);
}
.js-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}
.js-step p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  max-width: 180px;
}

/* ----- FOUNDER SECTION ----- */
.founder-section {
  background: var(--cream);
  padding: var(--section-y) var(--pad-x);
}
.founder-section .container { text-align: center; }
.founder-section h2 { margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem); }
.founder-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow);
}
.founder-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px -10px rgba(20, 33, 61, 0.35);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-body { display: flex; flex-direction: column; gap: 0.7rem; }
.founder-role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ochre-deep);
}
.founder-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0;
  line-height: 1.15;
}
.founder-body p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}
.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: var(--forest);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}
.founder-linkedin:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
}
.founder-linkedin svg { flex-shrink: 0; }

/* ----- SINGLE TESTIMONIAL ----- */
.testimonial-single {
  background: var(--ivory);
  padding: var(--section-y) var(--pad-x);
}
.testimonial-single .container { text-align: center; }
.testimonial-single h2 { margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem); }
.t-card-feature {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: left;
  position: relative;
  box-shadow: var(--shadow);
}
.t-card-feature .t-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--ochre);
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  opacity: 0.3;
}
.t-card-feature .t-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 1.5rem 0 1.75rem;
  position: relative;
  z-index: 1;
}
.t-card-feature .t-cite {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.t-card-feature .t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ochre), var(--ochre-deep));
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  flex-shrink: 0;
}
.t-card-feature .t-cite strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: -0.005em;
}
.t-card-feature .t-cite span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* ----- RESPONSIVE: trust strip + journey + founder ----- */
@media (max-width: 980px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; }
  .journey-steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 1rem; }
  .journey-steps-grid::before { display: none; }
  .founder-card { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .founder-photo { max-width: 240px; margin: 0 auto; }
  .founder-body { align-items: center; }
  .founder-body p { text-align: center; }
}
@media (max-width: 640px) {
  .trust-strip-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .trust-cell { justify-content: flex-start; }
  .journey-steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1rem; }
  .js-icon { width: 48px; height: 48px; }
  .js-icon svg { width: 20px; height: 20px; }
  .js-step h3 { font-size: 0.95rem; }
  .js-step p { font-size: 0.8rem; }
}

/* Dark mode tweaks for new sections */
[data-theme="dark"] .journey-section { background: var(--ivory); }
[data-theme="dark"] .founder-section { background: var(--cream); }
[data-theme="dark"] .testimonial-single { background: var(--ivory); }

/* ============================================================
   ABOUT PAGE v3 — Story prose + Principles grid
   ============================================================ */

.about-story {
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x) clamp(2rem, 4vw, 3.5rem);
  background: var(--cream);
}
.about-story .prose {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-story .prose p {
  font-size: clamp(1.02rem, 1.2vw, 1.12rem);
  line-height: 1.7;
  color: var(--ink);
  margin: 0;
}
.about-story .prose-pull {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem) !important;
  font-weight: 400;
  font-style: italic;
  color: var(--forest) !important;
  letter-spacing: -0.015em;
  line-height: 1.45 !important;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  margin-top: 1rem !important;
}

.principles-section {
  padding: var(--section-y) var(--pad-x);
  background: var(--ivory);
}
.principles-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.principle-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.principle-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--ochre);
  line-height: 1;
  letter-spacing: -0.02em;
}
.principle-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}
.principle-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 980px) {
  .principles-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
