/* ═══════════════════════════════════════════════════════════════════════════
   ConnectedScope.com.au — Global Stylesheet
   Brand: Charcoal #2D2D2D · Gold #C8A951 · Cream #F7F4EF
   Fonts: Playfair Display (headings) · Jost (body)
   ═══════════════════════════════════════════════════════════════════════════ */

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

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

:root {
  --cream: #FFFFFF;
  --cream-dark: #F5F5F5;
  --warm: #F9F9F9;
  --border: #E5E5E5;
  --mid: #999999;
  --ink: #2D2D2D;
  --ink2: #555555;
  --ink3: #888888;
  --gold: #C8A951;
  --gold-dark: #8B6818;
  --gold-light: #D4B96A;
  --white: #FFFFFF;
  --low: #2C5F4A;
  --low-bg: #EBF4EF;
  --mid-c: #7A5010;
  --mid-bg: #F8F0E6;
  --high: #7A2020;
  --high-bg: #F5EDED;
  --max-w: 1140px;
  --max-narrow: 780px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { color: var(--gold-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

/* ── NAVIGATION ─────────────────────────────────────────────────────────── */
.nav {
  background: var(--ink);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-brand {
  display: flex;
  flex-direction: column;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 600;
  text-decoration: none;
}
.nav-logo:hover { color: var(--gold-light); }
.nav-sub {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  color: #6A6258;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: #B0A898;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav-links a.active { color: white; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  padding: 8px 20px !important;
  border-radius: 3px;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #B0A898; margin: 5px 0; transition: 0.3s; }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  background: #FFFFFF;
  padding: 80px 40px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #E5E5E5;
}
/* ── IMAGE / VIDEO HERO ── */
.hero-video {
  /* Warm cream backdrop matches the kitchen image's natural light tones,
     so the "borders" above and below the image (when the hero is taller
     than the image's 1920×600 natural ratio) blend in instead of clashing
     as harsh black bars. */
  background: #d8ccb8;
  padding: 90px 40px 100px;
  border-bottom: none;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* contain keeps the image at its natural 1920×600 ratio — no stretching,
     no cropping. The cream backdrop fills any space above/below. */
  object-fit: contain;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Light at the very top and bottom so the cream borders above and below
     the image stay genuinely light, with a darker middle band that keeps
     the white headline + body text readable over the kitchen image. */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.50) 14%,
    rgba(0, 0, 0, 0.50) 86%,
    rgba(0, 0, 0, 0.02) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: none;
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  color: #333333;
  max-width: 720px;
  margin: 0 auto 24px;
}
.hero-video h1 {
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-video .hero-ctas {
  /* Extra breathing room between the italic "decision & understanding layer"
     positioning line and the CTA buttons below it. */
  margin-top: 18px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-body {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  color: #666666;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero-video .hero-body {
  color: rgba(255,255,255,0.9);
}
.hero-video .btn-outline {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.5);
}
.hero-video .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #FFFFFF;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-light); color: var(--ink); }
.btn-outline { background: transparent; color: #333333; border: 1px solid #E5E5E5; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: #1E1A16; color: white; }
.btn-lg { padding: 16px 40px; font-size: 14px; }

/* ── SECTIONS ────────────────────────────────────────────────────────────── */
.section {
  padding: 80px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-wide {
  padding: 80px 40px;
}
.section-dark {
  background: var(--ink);
  color: white;
}
.section-warm {
  background: var(--warm);
}
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  color: var(--ink);
  margin-bottom: 16px;
}
.section-dark .section-title { color: white; }
.section-sub {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--ink3);
  max-width: 580px;
  line-height: 1.75;
}
.section-dark .section-sub { color: #8A8078; }
.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }

/* ── HOW IT WORKS ────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.step-card {
  text-align: center;
  padding: 0 12px;
  grid-column: span 2;
}
/* 5-step layout: 3 on top, 2 centered below */
.steps-grid-5 .step-card:nth-child(4) { grid-column: 2 / span 2; }
.steps-grid-5 .step-card:nth-child(5) { grid-column: 4 / span 2; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 10px;
}
.step-desc {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.7;
}

/* ── TRUST STRIP ─────────────────────────────────────────────────────────── */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.trust-label {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--ink3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── PRICING CARDS ───────────────────────────────────────────────────────── */
.pricing-track-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.pricing-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 680px;
  margin-bottom: 48px;
}
.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.price-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(200,169,81,0.15);
}
.price-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 4px 4px;
}
.price-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}
.price-rooms {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--ink3);
  margin-bottom: 16px;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--ink);
  margin-bottom: 4px;
}
.price-amount sup {
  font-size: 18px;
  vertical-align: super;
  color: var(--ink3);
}
.price-gst {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: var(--mid);
  margin-bottom: 20px;
}
.price-desc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-dark);
}
.price-includes {
  list-style: none;
  margin-bottom: 24px;
}
.price-includes li {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--ink2);
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.5;
}
.price-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}
.price-delivery {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: var(--ink3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.price-delivery strong { color: var(--ink); }
.price-card .btn { width: 100%; text-align: center; display: block; }

/* ── DUAL TRACK EXPLAINER ────────────────────────────────────────────────── */
.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.track-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
}
.track-tag {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.track-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 12px;
}
.track-desc {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 20px;
}
.track-steps { list-style: none; counter-reset: track; }
.track-steps li {
  counter-increment: track;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--ink2);
  padding: 10px 0 10px 36px;
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
  line-height: 1.5;
}
.track-steps li::before {
  content: counter(track);
  position: absolute;
  left: 0;
  top: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
}
.track-steps li:last-child { border-bottom: none; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-grid {
  max-width: var(--max-narrow);
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after {
  content: '+';
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-top: 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 14px;
}

/* ── VALUE PROPS GRID ────────────────────────────────────────────────────── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
}
.value-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
}
.value-desc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.7;
}

/* ── SAMPLE REPORT PREVIEW ───────────────────────────────────────────────── */
.sample-preview {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  max-width: 480px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.sample-header {
  background: var(--ink);
  padding: 20px 24px;
}
.sample-header-tag {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.sample-header-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: white;
}
.sample-body { padding: 20px 24px; }
.sample-row {
  display: grid;
  grid-template-columns: 1fr 70px 70px 70px;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
}
.sample-row.head { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink3); border-bottom: 1px solid var(--border); }
.sample-row .low { color: var(--low); text-align: right; }
.sample-row .mid { color: var(--mid-c); text-align: right; }
.sample-row .high { color: var(--high); text-align: right; }
.sample-total { background: #F9F9F9; padding: 12px 24px; display: grid; grid-template-columns: 1fr 70px 70px 70px; gap: 8px; font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 600; }
.sample-blur { filter: blur(3px); opacity: 0.6; }

/* ── FOUNDER SECTION ──────────────────────────────────────────────────────── */
.founder-photo {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(200, 169, 81, 0.2);
}

.founder-photo-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 600;
  color: white;
}

/* ── PHOTO GALLERY ────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.gallery-card {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.gallery-label {
  background: var(--ink);
  padding: 14px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

.photo-placeholder {
  background: var(--cream-dark);
  border: 2px solid var(--gold);
  border-radius: 4px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.photo-placeholder span {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: var(--ink3);
  font-weight: 500;
}

/* ── TESTIMONIALS CAROUSEL ────────────────────────────────────────────────── */
.testimonial-track-wrapper {
  overflow: hidden;
  margin-top: 48px;
  padding: 8px 0 16px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.testimonial-track {
  display: flex;
  gap: 24px;
  animation: testimonialScroll 50s linear infinite;
  width: max-content;
}
.testimonial-track:hover {
  animation-play-state: paused;
}
@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testimonial-card {
  flex-shrink: 0;
  width: 360px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 32px 28px;
  transition: background 0.3s, border-color 0.3s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--gold);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: #C0B8A8;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: white;
  margin-bottom: 2px;
}
.testimonial-location {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: var(--gold-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── CTA BANNER ──────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  padding: 64px 40px;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 36px);
  color: white;
  margin-bottom: 12px;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: #8A8078;
  margin-bottom: 28px;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer {
  background: #1A1816;
  padding: 48px 40px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.footer-desc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: #5A5450;
  line-height: 1.7;
  max-width: 320px;
}
.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6A6258;
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: #8A8078;
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid #2A2622;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: #4A4440;
}
.footer-parent {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: #4A4440;
}
.footer-parent a { color: #6A6258; }
.footer-parent a:hover { color: var(--gold); }

/* ── ABOUT PAGE ──────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
.about-text {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.8;
}
.about-text p { margin-bottom: 16px; }
.methodology-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 32px;
}
.methodology-tag {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.methodology-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
}
.methodology-desc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.7;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.credential-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
}
.credential-icon { font-size: 28px; margin-bottom: 12px; }
.credential-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
}
.credential-desc {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.6;
}

/* ── THANK YOU PAGE ──────────────────────────────────────────────────────── */
.thankyou-hero {
  background: var(--cream, #FFFFFF);
  padding: 80px 40px;
  text-align: center;
}
.thankyou-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.thankyou-steps {
  max-width: 600px;
  margin: 48px auto 0;
}
.thankyou-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  text-align: left;
}
.thankyou-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
  width: 36px;
  line-height: 1;
}
.thankyou-step-title {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 4px;
}
.thankyou-step-desc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
}

/* ── METRO BADGE ─────────────────────────────────────────────────────────── */
.metro-badge {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--mid-bg);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ── DIVIDER ─────────────────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
}
.divider-center {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 28px auto;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .pricing-grid-2 { grid-template-columns: 1fr; max-width: 440px; }
  .track-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .step-card,
  .steps-grid-5 .step-card:nth-child(4),
  .steps-grid-5 .step-card:nth-child(5) { grid-column: auto; }
  .value-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2n) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .credentials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid #3A3632;
  }
  .nav-toggle { display: block; }
  .hero { padding: 48px 20px 60px; }
  .hero-video { padding: 80px 20px 90px; min-height: 70vh; }
  .section, .section-wide { padding: 48px 20px; }
  .cta-banner { padding: 48px 20px; }
  .footer { padding: 32px 20px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .trust-strip { grid-template-columns: 1fr 1fr; }

  /* Responsive sections for mobile */
  .section > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .founder-photo {
    width: 240px;
    height: 240px;
    margin: 0 auto 32px;
  }
  .founder-photo-placeholder {
    font-size: 56px;
  }
}
