/* EXPRESSION GAP — STYLES */

:root {
  --ink:              #141210;
  --cream:            #F6F0E8;
  --warm-white:       #FDFAF5;
  --terracotta:       #B8502A;
  --terracotta-light: #D4714A;
  --ocean:            #1B3A4B;
  --muted:            #7A7268;
  --rule:             #DDD4C4;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

.rule { border: none; border-top: 1px solid var(--rule); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(253,250,245,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400; letter-spacing: 0.05em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.nav-links {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav-link {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.nav-link:hover { color: var(--ink); }
.nav-link--active { color: var(--terracotta); border-bottom: 1px solid var(--terracotta); padding-bottom: 1px; }
.nav-link--cta { color: var(--terracotta); border-bottom: 1px solid var(--terracotta); padding-bottom: 1px; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: all 0.25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 85vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 5rem;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem 6rem 4rem; position: relative;
}
.hero-left::after { display: none; }
.hero-image {
  position: relative; overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
}
.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.01em; color: var(--ink);
  margin-bottom: 1rem;
}
.hero-heading em { font-style: italic; color: var(--terracotta); }

/* meta row: eyebrow + byline on one line */
.hero-meta {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 1.75rem;
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terracotta);
}
.hero-byline {
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.05em; color: var(--muted);
  padding-left: 1rem; margin-left: 1rem;
  border-left: 1px solid var(--rule);
}

.hero-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 42ch; line-height: 1.75; margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-block; background: var(--terracotta); color: white;
  padding: 0.9rem 2rem; text-decoration: none;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.25s;
}
.btn-primary:hover { background: var(--terracotta-light); }
.btn-ghost {
  display: inline-block; border: 1px solid var(--ink); color: var(--ink);
  padding: 0.9rem 2rem; text-decoration: none;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.25s;
}
.btn-ghost:hover { background: var(--ink); color: white; }

.problem-section {
  background: var(--ocean);
  padding: 6rem 4rem;
  position: relative; overflow: hidden;
}
.problem-inner {
  max-width: 1000px; margin: 0 auto; position: relative; z-index: 1;
}
.problem-section::before {
  content: ''; position: absolute; top: -20%; right: -20%;
  width: 60%; padding-bottom: 60%; border-radius: 50%;
  background: rgba(184,80,42,0.12);
}
.problem-section::after {
  content: ''; position: absolute; bottom: -15%; left: -10%;
  width: 40%; padding-bottom: 40%; border-radius: 50%;
  background: rgba(92,122,106,0.15);
}
.problem-label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terracotta-light); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.75rem; position: relative; z-index: 1;
}
.problem-label::before {
  content: ''; display: inline-block;
  width: 2rem; height: 1px; background: var(--terracotta-light);
}
.problem-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 300; color: white; line-height: 1.4;
  margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.problem-body { margin-bottom: 1.5rem; position: relative; z-index: 1; }
.problem-body p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.problem-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 1.1rem; position: relative; z-index: 1;
}
.problem-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  color: rgba(255,255,255,0.82); font-size: 0.92rem; line-height: 1.55;
}
.problem-list li::before {
  content: ''; flex-shrink: 0; width: 4px; height: 4px;
  border-radius: 50%; background: var(--terracotta-light); margin-top: 0.6em;
}
.problem-note {
  margin-top: 2rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  font-style: italic; position: relative; z-index: 1;
}

/* ── GENERAL SECTION ── */
section { position: relative; }
.section-label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 2rem; height: 1px; background: var(--muted);
  flex-shrink: 0;
}
.section-num { display: none; }
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 1.5rem;
}
.section-body {
  font-size: 1rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 1.5rem; max-width: 52ch;
}

/* ── HAPPENING ── */
.happening { background: var(--cream); padding: 0; overflow: hidden; }
.happening-inner {
  max-width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 60vh;
}
.happening-inner .fade-in:first-child {
  padding: 7rem 5rem 7rem 4rem;
}
.happening-image {
  position: relative; overflow: hidden;
}
.section-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.gap-list {
  list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem;
}
.gap-list li {
  padding: 1.25rem 1.5rem; background: white;
  border-left: 2px solid var(--terracotta);
  font-size: 0.95rem; line-height: 1.6; color: var(--ink);
}
.gap-list li strong { display: block; font-weight: 500; margin-bottom: 0.2rem; }
.gap-list li span { color: var(--muted); font-size: 0.9rem; }

/* ── COSTS ── */
.costs { background: var(--ink); padding: 7rem 4rem; }
.costs-inner { max-width: 900px; margin: 0 auto; }
.costs-inner .section-heading { color: white; margin-bottom: 3rem; }
.costs-para {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  line-height: 1.8; max-width: 68ch;
  padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.costs-para:first-child { padding-top: 0; }
.costs-para:last-child  { border-bottom: none; }

/* ── OFFER ── */
.offer { background: var(--warm-white); padding: 8rem 4rem; }
.offer-inner { max-width: 1100px; margin: 0 auto; }
.offer-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start; margin-bottom: 5rem;
}
.offer-tag {
  display: inline-block; background: var(--terracotta); color: white;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; margin-bottom: 1.5rem;
}
.process-box { padding: 2rem; background: var(--cream); border-top: 2px solid var(--ocean); }
.process-box-steps {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 300; color: var(--ocean);
  margin-bottom: 1rem; line-height: 1.5;
}
.process-box-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.outcomes-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem;
}
.outcome-card {
  padding: 2rem; background: var(--cream); border-top: 2px solid var(--terracotta);
  opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s;
}
.outcome-card.visible { opacity: 1; transform: none; }
.outcome-card:nth-child(2) { transition-delay: 0.1s; }
.outcome-card:nth-child(3) { transition-delay: 0.2s; }
.outcome-card:nth-child(4) { transition-delay: 0.3s; }
.outcome-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--terracotta); font-weight: 300; margin-bottom: 0.75rem;
}
.outcome-text { font-size: 0.95rem; line-height: 1.6; color: var(--ink); }

/* ── PROCESS ── */
.process { background: var(--ocean); padding: 8rem 4rem; overflow: hidden; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 3rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.process-label::before { content: ''; width: 2rem; height: 1px; background: rgba(255,255,255,0.3); }
.process-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 300; color: white; margin-bottom: 4rem;
}
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 2.5rem; left: 3rem; right: 3rem;
  height: 1px; background: rgba(255,255,255,0.15);
}
.step { padding: 0 2rem 0 0; position: relative; }
.step-num {
  width: 5rem; height: 5rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  color: rgba(255,255,255,0.5); margin-bottom: 1.5rem;
  background: var(--ocean); position: relative; z-index: 1;
}
.step:first-child .step-num { border-color: var(--terracotta); color: var(--terracotta-light); }
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: white; font-weight: 400; margin-bottom: 0.75rem;
}
.step-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── WHY ME — full width, no sidebar ── */
.why { background: var(--cream); padding: 8rem 4rem; }
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-body {
  font-size: 1rem; line-height: 1.85; color: var(--muted);
  margin-bottom: 1.25rem;
}
.why-body em { font-style: italic; color: var(--ink); }
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300; font-style: italic; color: var(--ink);
  line-height: 1.45; margin: 0;
  padding-left: 2.5rem; border-left: 3px solid var(--terracotta);
  display: flex; align-items: center;
}

/* ── PHOTO BLOCK ── */
.photo-bio-row {
  display: flex; align-items: flex-start; gap: 3rem;
  margin: 2.5rem 0;
}
.photo-col { flex: 0 0 auto; text-align: center; }
.bio-col { flex: 1; }
.photo-block { margin-bottom: 0.75rem; }
.philadelphia-photo {
  width: 160px; height: 160px;
  border-radius: 50%; object-fit: cover;
  border: 3px solid var(--rule);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.photo-caption {
  font-size: 0.8rem; color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.04em;
}
.fijian-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-style: italic; font-weight: 400;
  color: var(--ink); line-height: 1.65; margin-bottom: 0.5rem;
}
.fijian-label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}

/* ── CTA ── */
.cta-section {
  background: var(--ink); padding: 8rem 4rem;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: 'Expression Gap';
  position: absolute; bottom: -4rem; right: -2rem;
  font-family: 'Cormorant Garamond', serif; font-size: 14vw;
  font-weight: 300; color: rgba(255,255,255,0.03);
  white-space: nowrap; pointer-events: none; user-select: none;
}
.cta-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr; gap: 6rem; align-items: center;
}
.cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 300; color: white; line-height: 1.1; margin-bottom: 1.5rem;
}
.cta-heading em { font-style: italic; color: var(--terracotta-light); }
.cta-sub { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 42ch; line-height: 1.7; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.btn-cta-main {
  display: inline-block; background: var(--terracotta); color: white;
  padding: 1.1rem 2.5rem; text-decoration: none;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.25s; white-space: nowrap;
}
.btn-cta-main:hover { background: var(--terracotta-light); }
.btn-cta-ghost {
  display: inline-block; border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7); padding: 1.1rem 2.5rem; text-decoration: none;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.25s; white-space: nowrap;
}
.btn-cta-ghost:hover { border-color: white; color: white; }

/* ── FOOTER ── */
footer {
  background: var(--ink); border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2rem 4rem; display: flex; align-items: center; justify-content: space-between;
}
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: rgba(255,255,255,0.4); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ── ANIMATION ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */

/* ── THE IMPACT ── */
.impact-section {
  background: var(--warm-white);
  overflow: hidden;
  border-top: 1px solid var(--rule);
}
.impact-inner {
  max-width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 60vh;
}
.impact-content {
  padding: 7rem 5rem 7rem 4rem;
}
.impact-image {
  position: relative; overflow: hidden;
}

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-burger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--warm-white); flex-direction: column;
    align-items: flex-start; gap: 0;
    border-bottom: 1px solid var(--rule); padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; padding: 14px 24px; border-bottom: 1px solid var(--rule); font-size: 0.85rem; }
  .nav-link--active { border-bottom: 1px solid var(--rule); color: var(--terracotta); }
  .nav-link--cta { border-bottom: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; } .hero-image { min-height: 60vw; }
  .hero-left { padding: 8rem 2rem 4rem; }
  .hero-left::after { display: none; }
  .problem-section { padding: 4rem 2rem 6rem; }
  .happening-inner { grid-template-columns: 1fr; }
  .happening-inner .fade-in:first-child { padding: 4rem 2rem; }
  .happening-image { min-height: 50vw; }
  .happening-inner { grid-template-columns: 1fr; gap: 2rem; }
  .section-num { display: none; }
  .costs { padding: 5rem 2rem; }
  .offer { padding: 5rem 2rem; }
  .offer-top { grid-template-columns: 1fr; gap: 2rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .process { padding: 5rem 2rem; }
  .impact-inner { grid-template-columns: 1fr; }
  .impact-content { padding: 4rem 2rem; }
  .impact-image { min-height: 50vw; }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .process-steps::before { display: none; }
  .why { padding: 5rem 2rem; }
  .why-top-row { grid-template-columns: 1fr; }
  .pull-quote { padding-left: 1.5rem; margin-top: 0; }
  .photo-block { flex-direction: column; }
  .cta-section { padding: 5rem 2rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cta-buttons { flex-direction: row; flex-wrap: wrap; }
  footer { flex-direction: column; gap: 0.5rem; padding: 1.5rem 2rem; text-align: center; }
}
@media (max-width: 600px) {
  .photo-bio-row { flex-direction: column; }
  .photo-col { text-align: left; }
  .process-steps { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .hero-byline { padding-left: 0; margin-left: 0; border-left: none; }
}

/* ── CONTACT FORM SECTION ── */
.contact-form-section {
  background: var(--warm-white);
  padding: 8rem 4rem;
  border-top: 1px solid var(--rule);
}
.contact-form-inner {
  max-width: 680px;
  margin: 0 auto;
}
.contact-form-header {
  margin-bottom: 3rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea {
  background: white;
  border: 1px solid var(--rule);
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--rule);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.btn-form-submit {
  align-self: flex-start;
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 0.9rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}
.btn-form-submit:hover { background: var(--terracotta-light); }

/* success state */
.form-success {
  text-align: center;
  padding: 4rem 2rem;
}
.form-success-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 300;
  color: var(--ink); margin-bottom: 0.75rem;
}
.form-success p {
  font-size: 0.95rem; color: var(--muted); line-height: 1.6;
}

@media (max-width: 600px) {
  .contact-form-section { padding: 5rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .btn-form-submit { width: 100%; text-align: center; }
}

/* ── HERO SUBHEADING LINES ── */

.hero-sub-punch {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 300; font-style: italic;
  color: var(--ink); margin-bottom: 0.75rem; line-height: 1.3;
}
.hero-sub-body {
  font-size: 0.98rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 0.75rem;
}
.hero-sub-close {
  font-size: 0.9rem; font-weight: 500;
  color: var(--terracotta); letter-spacing: 0.01em;
  margin-top: 0.25rem;
}

/* ── COSTS — punchy single sentences ── */
.costs-para {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 62ch;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.costs-para:first-child { padding-top: 0; }
.costs-para:last-child  { border-bottom: none; }

/* ── HERO SUB BLOCK (three lines) ── */
.hero-sub-block {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hero-sub-punch {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  font-style: normal;
  color: var(--muted);
  line-height: 1.75;
}
.hero-sub-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}
.hero-sub-close {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}

/* ── DESKTOP BODY TEXT BOOST ─────────────────
   Bumps sub-1rem body copy up slightly on
   laptop/desktop. Mobile unaffected.          */
@media (min-width: 901px) {
  .step-desc          { font-size: 1rem; }
  .process-box-desc   { font-size: 1rem; }
  .gap-list li span   { font-size: 1rem; }
  .problem-body p     { font-size: 1rem; }
  .costs-para         { font-size: 1rem; }
  .outcome-text       { font-size: 1.05rem; }
  .section-body       { font-size: 1.05rem; }
  .why-body           { font-size: 1.05rem; }
}

.impact-label {
  color: var(--muted);
}
.impact-label::before {
  background: var(--muted);
}
.impact-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 300; color: var(--ink); line-height: 1.4;
  margin-bottom: 2.5rem;
}
.impact-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 1.25rem; margin-bottom: 3rem;
}
.impact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  color: var(--muted); font-size: 1rem; line-height: 1.6;
}
.impact-item::before {
  content: ''; flex-shrink: 0; width: 4px; height: 4px;
  border-radius: 50%; background: var(--terracotta); margin-top: 0.6em;
}
.impact-close {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--rule);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300; font-style: italic;
  color: var(--ink); line-height: 1.4;
}


/* ── WHY TOP ROW (photo + quote) ── */
.why-top-row {
  display: grid; grid-template-columns: auto 1fr;
  gap: 3rem; align-items: center;
  margin-bottom: 3rem;
}
.why-photo-col {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.75rem;
  flex-shrink: 0;
}
