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

:root {
  --navy:      #1B4F9C;
  --navy-dk:   #122f5c;
  --navy-lt:   #D6E4F7;
  --navy-m:    #EBF2FB;
  --teal:      #0F6E56;
  --teal-lt:   #D6F0E8;
  --cream:     #F8F7F4;
  --warm-gray: #F2F1EE;
  --border:    #E0DED9;
  --text:      #1A1A1A;
  --text-mid:  #4A4A4A;
  --text-muted:#7A7A7A;
  --white:     #FFFFFF;
  --gold:      #B8922A;
  --radius:    4px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ──────────────────────────────────────────────── */
.display { font-family: var(--font-display); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

/* ── Utility ─────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.tag--light { color: rgba(255,255,255,0.65); }
.tag--gold  { color: var(--gold); }

.section-title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--navy-dk);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-title--light { color: var(--white); }

.section-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
  margin-top: 16px;
}

.section-subtitle--light { color: rgba(255,255,255,0.75); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
}
.btn--primary:hover { background: #0c5843; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(15,110,86,0.25); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }

.btn--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-arrow { font-size: 16px; transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(18, 47, 92, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.nav__tagline {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  padding: 10px 22px;
  font-size: 13px;
}

.nav__toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav__toggle span { display: block; width: 22px; height: 1.5px; background: white; transition: 0.3s; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-dk);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(27,79,156,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(15,110,86,0.2) 0%, transparent 50%);
}

/* Subtle grid texture */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Decorative vertical rule */
.hero__rule {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--teal), transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero__credential {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  margin-bottom: 36px;
}

.hero__credential-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.hero__credential span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__headline {
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
}

.hero__sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 0.8; } }

/* Compact page hero (for sub-pages like Booking) */
.hero--compact {
  min-height: auto;
  padding-top: 68px;
}
.hero--compact .hero__content {
  padding-top: 88px;
  padding-bottom: 72px;
}
.hero--compact .hero__headline { font-size: clamp(40px, 5.5vw, 64px); margin-bottom: 20px; }

/* ── Problem Section ─────────────────────────────────────────── */
.problem {
  padding: 96px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.problem__intro {
  text-align: center;
  margin-bottom: 64px;
}

.problem__intro .section-title { color: var(--navy-dk); }

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.problem__card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
}

.problem__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.problem__card:hover::before { transform: scaleX(1); }

.problem__number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  color: var(--navy-lt);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.problem__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-dk);
  margin-bottom: 14px;
  line-height: 1.2;
}

.problem__text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

.problem__bridge {
  text-align: center;
  margin-top: 56px;
}

.problem__bridge p {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  font-weight: 400;
  color: var(--navy-dk);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.45;
}

/* ── Services Section ────────────────────────────────────────── */
.services {
  padding: 96px 0;
  background: var(--white);
}

.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}

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

.service-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(18,47,92,0.1);
}

.service-card__header {
  padding: 28px 28px 20px;
  background: var(--navy-dk);
  position: relative;
}

.service-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}

.service-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.service-card__price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.service-card__price-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.service-card__body {
  padding: 24px 28px 28px;
  background: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.service-card__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__includes li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  align-items: flex-start;
}

.service-card__includes li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 600;
  font-size: 12px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Retainer strip */
.retainer-strip {
  background: var(--navy-m);
  border: 1px solid var(--navy-lt);
  border-radius: 8px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.retainer-strip__left h3 {
  font-size: 22px;
  color: var(--navy-dk);
  margin-bottom: 6px;
}

.retainer-strip__left p {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 520px;
}

.retainer-strip__tiers {
  display: flex;
  gap: 16px;
}

.retainer-tier {
  text-align: center;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 110px;
}

.retainer-tier__name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.retainer-tier__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}

.retainer-tier__hrs {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Process Section ─────────────────────────────────────────── */
.process {
  padding: 96px 0;
  background: var(--navy-dk);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.process__inner { position: relative; z-index: 1; }

.process__header {
  text-align: center;
  margin-bottom: 72px;
}

.process__tagline {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line */
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 1px;
  background: rgba(255,255,255,0.15);
  z-index: 0;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.process__step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
  background: var(--navy-dk);
  color: rgba(255,255,255,0.4);
  transition: 0.3s;
}

.process__step:hover .process__step-num {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

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

.process__step-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.process__questions {
  margin-top: 72px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 48px;
}

.process__q-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.process__q-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}

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

.process__q {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process__q-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: rgba(255,255,255,0.12);
  line-height: 1;
}

.process__q-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

/* ── About Section ───────────────────────────────────────────── */
.about {
  padding: 96px 0;
  background: var(--cream);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__img-wrap {
  position: relative;
}


.about__headshot {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  display: block;
}
.about__img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy-m);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy-lt);
  border: 1px solid var(--navy-lt);
  position: relative;
  overflow: hidden;
}

.about__img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--navy-m) 25%, var(--navy-lt) 25%,
    var(--navy-lt) 50%, var(--navy-m) 50%, var(--navy-m) 75%,
    var(--navy-lt) 75%);
  background-size: 20px 20px;
  opacity: 0.4;
}

.about__img-label {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  text-align: center;
  padding: 24px;
}

.about__img-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--teal);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15,110,86,0.3);
}

.about__img-badge-main {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  display: block;
}

.about__img-badge-sub {
  font-size: 11px;
  opacity: 0.8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about__content { display: flex; flex-direction: column; gap: 24px; }

.about__name {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--navy-dk);
  line-height: 1.1;
  margin-bottom: 4px;
}

.about__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about__text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 8px;
}

.about__stat {
  background: var(--white);
  padding: 20px;
  text-align: center;
}

.about__stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  display: block;
}

.about__stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.about__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.credential-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--navy-m);
  border: 1px solid var(--navy-lt);
  border-radius: 100px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}

.credential-pill::before {
  content: '✓';
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
}

/* ── Discovery / CTA Section ─────────────────────────────────── */
.discovery {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.discovery__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.discovery__text h2 {
  font-size: clamp(32px, 4vw, 46px);
  color: var(--navy-dk);
  margin-bottom: 16px;
  line-height: 1.1;
}

.discovery__text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 8px;
}

.discovery__card {
  background: var(--navy-dk);
  border-radius: 8px;
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.discovery__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
}

.discovery__card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.discovery__card-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.discovery__card-price {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1;
}

.discovery__card-price span {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}

.discovery__card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.discovery__card-features li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  align-items: flex-start;
}

.discovery__card-features li::before {
  content: '→';
  color: var(--teal);
  flex-shrink: 0;
}

.discovery__card-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  font-style: italic;
}

/* ── Book-a-Time Band (homepage CTA section) ─────────────────── */
.book-band {
  padding: 88px 0;
  background: var(--navy-m);
  border-top: 1px solid var(--navy-lt);
  border-bottom: 1px solid var(--navy-lt);
}

.book-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  background: var(--navy-dk);
  border-radius: 8px;
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}

.book-band__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(15,110,86,0.25) 0%, transparent 60%);
}

.book-band__text { position: relative; z-index: 1; max-width: 560px; }

.book-band__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
}

.book-band__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.book-band__action { position: relative; z-index: 1; flex-shrink: 0; }

/* ── Contact Section ─────────────────────────────────────────── */
.contact {
  padding: 96px 0;
  background: var(--navy-dk);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(15,110,86,0.15) 0%, transparent 60%);
}

.contact__inner { position: relative; z-index: 1; }

.contact__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  max-width: 720px;
  margin: 0 auto 24px;
  letter-spacing: -0.01em;
}

.contact__headline em {
  font-style: italic;
  color: rgba(255,255,255,0.4);
}

.contact__sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.contact__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.contact__details {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact__detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.contact__detail-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.contact__detail-value {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

.contact__detail-value a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.contact__detail-value a:hover { color: var(--white); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: #0B1E3D;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover { color: rgba(255,255,255,0.6); }

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

/* ── Booking Page ────────────────────────────────────────────── */
.booking {
  padding: 96px 0;
  background: var(--cream);
}

.booking__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.booking__info { padding-top: 8px; }

.booking__info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.booking__info-item { display: flex; gap: 16px; }

.booking__info-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--teal);
  flex-shrink: 0;
  width: 32px;
}

.booking__info-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-dk);
  margin-bottom: 4px;
}

.booking__info-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.booking__direct {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.booking__direct p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(18,47,92,0.06);
}

.booking-card__title {
  font-size: 24px;
  color: var(--navy-dk);
  margin-bottom: 6px;
}

.booking-card__sub {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group--optional label::after {
  content: ' (optional)';
  text-transform: none;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

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

.form-honeypot { position: absolute; left: -9999px; }

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
  line-height: 1.6;
}

/* ── Success Page ────────────────────────────────────────────── */
.success {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  padding: 140px 0 96px;
}

.success__card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal-lt);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 28px;
}

.success__card h1 {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--navy-dk);
  margin-bottom: 16px;
}

.success__card p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .services__header { grid-template-columns: 1fr; }
  .services__cards  { grid-template-columns: 1fr; }
  .process__steps   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process__steps::before { display: none; }
  .process__q-grid  { grid-template-columns: 1fr 1fr; }
  .about__inner     { grid-template-columns: 1fr; }
  .about__img-wrap  { max-width: 360px; margin: 0 auto; }
  .discovery__inner { grid-template-columns: 1fr; }
  .retainer-strip   { grid-template-columns: 1fr; }
  .retainer-strip__tiers { justify-content: flex-start; }
  .problem__grid    { grid-template-columns: 1fr; }
  .book-band__inner { flex-direction: column; text-align: center; padding: 40px 36px; }
  .booking__inner   { grid-template-columns: 1fr; }
  .booking-card     { padding: 32px 28px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__toggle { display: flex; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .process__q-grid { grid-template-columns: 1fr; }
  .contact__details { flex-direction: column; align-items: center; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}

/* Mobile nav open state */
.nav--open .nav__links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px; left: 0; right: 0;
  background: rgba(18,47,92,0.98);
  padding: 20px 32px 28px;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav--open .nav__links a { font-size: 16px; }
