/* ===== Reset & Variables ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --bg-soft: #131110;
  --cream: #E7BC91;
  --cream-light: #f2d3ac;
  --white: #f5f2ee;
  --muted: #a89e93;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1160px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream-light);
  font-weight: 500;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}
.section-title.center { text-align: center; }

section { padding: 110px 0; position: relative; }

/* ===== Progress bar ===== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--cream), var(--cream-light));
  z-index: 2000;
  transition: width 0.1s linear;
}

/* ===== Fade in on scroll ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== Animated title underline ===== */
.title-line {
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--cream), transparent);
  margin: 6px auto 0;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.title-line.center { margin-left: auto; margin-right: auto; }
.fade-in.is-visible .title-line { width: 90px; }

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

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

.nav-logo {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 1.15rem;
  color: var(--white);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: nowrap;
}
.nav-links li { flex-shrink: 0; }

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--white);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%; height: 1px;
  background: var(--cream);
  transition: width var(--transition);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:not(.nav-cta):hover { color: var(--cream-light); }

.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  background: var(--cream);
  color: #1a1512 !important;
  padding: 11px 24px;
  line-height: 1;
  border-radius: 30px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-links a.nav-cta:hover {
  background: var(--cream-light);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 15px 34px;
  border-radius: 32px;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
  border: none;
}
.btn-primary {
  background: var(--cream);
  color: #1a1512;
}
.btn-primary:hover {
  background: var(--cream-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(212, 180, 140, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(245, 242, 238, 0.4);
}
.btn-ghost:hover {
  border-color: var(--cream);
  color: var(--cream-light);
  transform: translateY(-3px);
}
.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  background: var(--bg);
}
.hero-photo {
  order: 2;
  flex: 1 1 34%;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(10,10,10,0.65) 14%, rgba(10,10,10,0.1) 45%, rgba(10,10,10,0) 100%);
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0) 18%, rgba(10,10,10,0) 45%, rgba(10,10,10,0.55) 68%, rgba(10,10,10,0.92) 88%, var(--bg) 100%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 21%;
  filter: brightness(0.82) saturate(0.94);
  transition: transform 0.6s ease;
}
.hero-content {
  order: 1;
  position: relative;
  z-index: 1;
  flex: 1 1 66%;
  max-width: 900px;
  min-height: 100vh;
  padding: 160px 40px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content h1 {
  font-family: var(--serif);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-content h1 .line-italic {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  font-size: clamp(2.3rem, 6vw, 4rem);
}
.hero-content h1 .line-bold {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--cream);
  font-size: clamp(2.6rem, 6.6vw, 4.5rem);
}
.hero-lead {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--cream-light);
}
.hero-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--cream);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-body {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 14px;
}
.hero-body:last-of-type {
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 46px;
  border: 1.5px solid rgba(245,242,238,0.5);
  border-radius: 20px;
  background: none;
  cursor: pointer;
  z-index: 1;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--cream-light);
  border-radius: 2px;
  animation: scrollCue 1.6s ease infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 24px; }
}

/* ===== Statement ===== */
.statement { padding: 90px 0; text-align: center; background: var(--bg); }
.statement-text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 500;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto;
}

/* ===== Mirrors / tabs ===== */
.mirrors { background: var(--bg-soft); }
.mirror-heading {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.mirror-heading em {
  font-style: italic;
  font-weight: 700;
  color: var(--cream);
}
.mirror-heading.center { text-align: center; }
.mirror-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 900px;
  margin: 50px auto 0;
}
.mirror-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  border: 1.5px solid rgba(231,188,145,0.35);
  border-radius: 40px;
  color: var(--white);
  padding: 19px 38px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.mirror-tab:hover {
  color: #1a1512;
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.3);
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Walkaway ===== */
.walkaway-head { max-width: 700px; margin-bottom: 60px; }
.walkaway-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 50px;
}
.walkaway-item .arrow {
  display: inline-block;
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.walkaway-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}
.walkaway-item p { color: var(--muted); font-size: 0.98rem; }

/* ===== How it works ===== */
.how-it-works { background: var(--bg-soft); text-align: center; }
.how-it-works .section-title { text-align: center; }
.how-it-works .eyebrow { text-align: center; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.step {
  padding: 30px 20px;
  border-radius: 16px;
  transition: transform var(--transition), background var(--transition);
}
.step:hover {
  background: rgba(212, 180, 140, 0.06);
  transform: translateY(-6px);
}
.step-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: rgba(245,242,238,0.25);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.step-icon {
  width: 64px; height: 64px;
  margin: 14px auto 20px;
  color: var(--cream);
}
.step-icon svg { width: 100%; height: 100%; }
.step h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--white); }
.step p { color: var(--muted); font-size: 0.95rem; max-width: 260px; margin: 0 auto; }

/* ===== Testimonials ===== */
.testimonials { background: var(--bg); }
.testimonial-wrap {
  max-width: 720px;
  margin: 50px auto 0;
}
.testimonial-track {
  position: relative;
}
.testimonial-card {
  display: none;
  text-align: left;
  animation: panelIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(160deg, #171310, #100d0b);
  border: 1px solid rgba(231,188,145,0.16);
  border-radius: 22px;
  padding: 48px 46px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.testimonial-card.is-active { display: block; }
.testimonial-card .quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 6px;
}
.testimonial-text {
  position: relative;
  max-height: 165px;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-text::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(16,13,11,0) 0%, #100d0b 92%);
  transition: opacity 0.3s ease;
}
.testimonial-card.is-expanded .testimonial-text {
  max-height: 3000px;
}
.testimonial-card.is-expanded .testimonial-text::after {
  opacity: 0;
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 18px;
}
.testimonial-card p:last-of-type { margin-bottom: 0; }
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  font-family: var(--sans);
  transition: color var(--transition);
}
.read-more-btn:hover { color: var(--cream-light); }
.read-more-btn .chev {
  display: inline-block;
  font-size: 0.7rem;
  transition: transform 0.35s ease;
}
.testimonial-card.is-expanded .read-more-btn .chev { transform: rotate(180deg); }
.testimonial-card footer {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(231,188,145,0.15);
}
.testimonial-card footer cite {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cream-light);
  display: block;
}
.testimonial-card footer span {
  color: var(--muted);
  font-size: 0.85rem;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 32px;
}
.carousel-btn {
  background: transparent;
  border: 1.5px solid rgba(245,242,238,0.3);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.carousel-btn:hover { background: var(--cream); color: #1a1512; border-color: var(--cream); }
.carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(245,242,238,0.25);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.is-active { background: var(--cream); transform: scale(1.3); }
.testimonial-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 20px;
  font-style: italic;
}

/* ===== Guidebooks ===== */
.guidebooks { background: var(--bg-soft); }
.guidebooks .heart { color: #c98080; }
.guidebook-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.guidebook-card {
  display: block;
  background: linear-gradient(145deg, #3a2f24, #241d16);
  border-radius: 14px;
  padding: 3px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.guidebook-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.guidebook-card-inner {
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  padding: 40px 32px;
  height: 100%;
}
.guidebook-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 14px;
}
.guidebook-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 14px;
}
.guidebook-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; }
.guidebook-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--cream-light);
  letter-spacing: 0.03em;
}
.arrow-right { transition: transform var(--transition); }
.guidebook-card:hover .arrow-right { transform: translateX(6px); }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about-photo img {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}
.about-content p { color: var(--muted); margin-bottom: 18px; }
.about-content .btn { margin-top: 12px; }

/* ===== About page (standalone) ===== */
.about-page-hero { padding-top: 160px; }
.about-page-hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about-page-hero-grid .eyebrow { margin-bottom: 10px; }
.about-page-hero-grid .hero-lead { color: var(--muted); font-weight: 500; }

.about-gallery-section { background: var(--bg); }
.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 40px auto 0;
}
.about-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  transition: transform var(--transition);
}
.about-gallery img:hover { transform: translateY(-6px); }

.prose-section { background: var(--bg-soft); padding-top: 70px; }
.prose {
  max-width: 880px;
  margin: 0 auto;
}
.prose p {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 26px;
}
.prose strong {
  color: var(--cream-light);
  font-weight: 700;
}
.prose-note {
  color: var(--muted) !important;
  font-size: 0.88rem !important;
  font-style: italic;
}
.back-home { margin-top: 26px; }
.back-home a {
  color: var(--muted);
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.back-home a:hover { color: var(--cream-light); border-color: var(--cream-light); }

/* ===== Mirror detail pages (standalone) ===== */
.mirror-page-hero {
  padding-top: 170px;
  padding-bottom: 60px;
  text-align: center;
}
.mirror-page-hero .eyebrow { text-align: center; }
.mirror-page-hero .section-title { max-width: 780px; margin-left: auto; margin-right: auto; }
.mirror-page-hero .hero-lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-weight: 500;
  font-size: 1.15rem;
}

.mini-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream-light);
  margin: 44px 0 20px;
}
.mirror-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mirror-list li {
  position: relative;
  padding-left: 30px;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.6;
}
.mirror-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cream);
  font-weight: 600;
}
.mirror-list li span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 4px;
}

/* ===== Pain / outcome blocks (mirror detail pages) ===== */
.pain-section { background: var(--bg-soft); }
.pain-kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 34px;
}
.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.08rem;
  color: var(--white);
  line-height: 1.55;
}
.pain-item .mark {
  flex-shrink: 0;
  color: #c9846a;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.4;
}

.outcome-section .mini-title { text-align: center; }
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 820px;
  margin: 34px auto 0;
}
.outcome-card {
  background: linear-gradient(145deg, #3a2f24, #241d16);
  border-radius: 14px;
  padding: 30px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.outcome-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.outcome-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cream-light);
  margin-bottom: 10px;
  line-height: 1.3;
}
.outcome-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== Mirror page intro (statement + poem lines) ===== */
.mirror-statement {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  line-height: 1.35;
  max-width: 900px;
  margin: 0 auto 44px;
}
.mirror-statement em {
  display: block;
  font-style: italic;
  color: var(--cream);
  font-weight: 700;
}
.mirror-poem {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 620px;
  margin: 0 auto;
}
.mirror-poem li {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
}

.mirror-transition { background: var(--bg); }
.mirror-transition .prose { text-align: center; }
.mirror-transition .prose p {
  font-size: 1.05rem;
  text-align: center;
}
.mirror-reveal {
  font-family: var(--serif) !important;
  font-style: italic;
  color: var(--cream-light) !important;
  font-size: 1.5rem !important;
  margin: 8px 0 !important;
}

/* ===== Outcome stack (sequential rows) ===== */
.outcome-stack {
  max-width: 760px;
  margin: 34px auto 0;
  display: flex;
  flex-direction: column;
}
.outcome-row {
  padding: 26px 0;
  border-bottom: 1px solid rgba(245,242,238,0.1);
  transition: transform var(--transition);
  text-align: left;
}
.outcome-row:last-child { border-bottom: none; }
.outcome-row:hover { transform: translateX(6px); }
.outcome-row .row-head {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 8px;
}
.outcome-row .num {
  font-family: var(--sans);
  font-style: normal;
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.9;
  flex-shrink: 0;
}
.outcome-row h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--cream-light);
  line-height: 1.3;
}
.outcome-row p {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
  padding-left: 30px;
  max-width: 640px;
}

/* ===== Final CTA ===== */
.final-cta {
  text-align: center;
  background: var(--bg-soft);
  padding-bottom: 130px;
}
.final-sub {
  color: var(--cream);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 34px;
}
.final-lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 34px;
}

/* ===== Footer ===== */
.site-footer {
  background: #050505;
  padding: 50px 0;
  border-top: 1px solid rgba(245,242,238,0.08);
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: var(--serif);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream-light); }
.footer-copy { color: rgba(245,242,238,0.35); font-size: 0.8rem; }

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream);
  color: #1a1512;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--cream-light); }

/* ===== Responsive ===== */
@media (max-width: 1300px) and (min-width: 781px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.8rem; }
  .nav-links a.nav-cta { padding: 10px 18px; }
}

@media (max-width: 900px) {
  .walkaway-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .guidebook-grid { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-row p { margin-top: 6px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 340px; margin: 0 auto; }
  .about-page-hero-grid { grid-template-columns: 1fr; }
  .about-gallery { grid-template-columns: 1fr; }
  .about-page-hero-grid .about-photo { max-width: 340px; margin: 0 auto; }
  .about-page-hero { padding-top: 120px; }

  .hero {
    flex-direction: column;
  }
  .hero-photo {
    position: relative;
    top: auto;
    height: 46vh;
    flex: 0 0 auto;
    order: 1;
  }
  .hero-content {
    order: 2;
    max-width: 100%;
    min-height: 0;
    padding: 40px 24px 60px;
  }
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.05rem; }

  section { padding: 70px 0; }
  .hero-content { padding-bottom: 70px; }
  .mirror-tabs { flex-direction: column; align-items: stretch; }
  .mirror-tab { padding: 17px 28px; }
  .testimonial-card { padding: 30px 22px; }
  .testimonial-controls { gap: 14px; }
  .carousel-btn { width: 38px; height: 38px; }
}
