/* MomMe — Sleep Coaching */
:root {
  --bg: oklch(0.985 0.012 90);
  --bg-warm: oklch(0.96 0.025 88);
  --ink: oklch(0.18 0.012 85);
  --ink-soft: oklch(0.38 0.012 85);
  --ink-muted: oklch(0.55 0.01 85);
  --rule: oklch(0.88 0.015 85);
  --yellow: #FAD02C;
  --yellow-soft: oklch(0.94 0.08 95);
  --yellow-deep: oklch(0.78 0.16 92);
  --sage: oklch(0.78 0.04 145);
  --sage-deep: oklch(0.55 0.06 150);
  --rose: oklch(0.86 0.04 35);
  --display: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Plus Jakarta Sans', 'Helvetica Neue', system-ui, sans-serif;
  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: auto;
}
button, a, [role="button"] { cursor: pointer; }

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

/* ---------- TYPE ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.center::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  margin-left: 4px;
}
.eyebrow.center::before {
  display: inline-block;
  margin-right: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}
h2 { font-size: clamp(36px, 5.2vw, 72px); }
h3 { font-size: clamp(24px, 2.6vw, 36px); }
h4 { font-size: clamp(20px, 1.8vw, 24px); line-height: 1.25; }
.italic { font-style: italic; }

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
section { padding: clamp(80px, 10vw, 140px) 0; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: padding 0.4s cubic-bezier(.16,1,.3,1), background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  padding: 14px 0;
  background: oklch(0.985 0.012 90 / 0.85);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  font-family: 'Antonio', 'Impact', system-ui, sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  text-transform: none;
  line-height: 1;
}
.logo .logo-mark {
  font-style: normal;
  color: var(--yellow);
  font-weight: 900;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--yellow-deep);
  transition: width 0.35s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-right {
  display: flex; align-items: center; gap: 20px;
}
.nav-cta {
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.lang {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex; gap: 8px;
}
.lang span.on { color: var(--ink); font-weight: 600; }
.lang span:not(.on) { cursor: pointer; }

@media (max-width: 960px) {
  .nav-links { display: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--ink);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:hover {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.btn .arrow { display: inline-block; }

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--ink);
}

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

/* ---------- HERO ---------- */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
}
.hero-headline {
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 400;
  font-family: var(--display);
  margin: 56px 0 48px;
  text-wrap: balance;
}
.hero-headline .accent {
  font-style: italic;
  color: var(--yellow-deep);
  font-weight: 400;
}
.underlined {
  position: relative;
  display: inline-block;
  isolation: isolate;
}
.underlined::after {
  content: '';
  position: absolute;
  left: 2%; right: 2%;
  bottom: 0.04em;
  height: 0.16em;
  background: var(--yellow);
  z-index: -1;
  border-radius: 6px;
}
.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 56px;
  line-height: 1.6;
}
.hero-cta-row {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--ink-muted);
}
.hero-meta .dot { width: 6px; height: 6px; background: var(--sage-deep); border-radius: 50%; animation: pulse 2.4s infinite; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}

.hero-photo {
  position: relative;
  align-self: stretch;
}
.hero-photo-frame {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  aspect-ratio: 4/5;
  max-height: 580px;
  margin-left: auto;
  width: 100%;
  max-width: 460px;
  /* organic blob shape */
  border-radius: 62% 38% 54% 46% / 50% 56% 44% 50%;
  animation: blob-morph 16s ease-in-out infinite;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 62% 38% 54% 46% / 50% 56% 44% 50%; }
  33%      { border-radius: 46% 54% 38% 62% / 60% 44% 56% 40%; }
  66%      { border-radius: 54% 46% 62% 38% / 44% 60% 40% 56%; }
}
.hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s cubic-bezier(.16,1,.3,1);
}
.hero-photo-frame:hover img { transform: scale(1.04); }
.hero-photo-tag {
  position: absolute;
  top: 24px;
  left: -32px;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transform: rotate(-4deg);
  z-index: 2;
}

.hero-quote {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-quote-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}
.hero-quote-mark {
  font-family: var(--display);
  font-size: 96px;
  line-height: 0.6;
  color: var(--yellow);
  font-style: italic;
}
.hero-quote-text {
  font-family: var(--display);
  font-size: clamp(18px, 1.7vw, 24px);
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  max-width: 640px;
}
.hero-quote-author {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-left: calc(96px * 0.6 + 32px);
}
.hero-quote-author strong { color: var(--ink); font-weight: 600; }
.hero-quote-sep { color: var(--rule); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo-frame { margin: 0 auto; max-width: 380px; }
  .hero-quote-row { grid-template-columns: 1fr; gap: 16px; }
  .hero-quote-author { padding-left: 0; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 28px 0;
  overflow: hidden;
  border-block: 1px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 48px);
  font-style: italic;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.marquee-item .star {
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--yellow);
  border-radius: 50%;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- PAIN POINTS ---------- */
.pain {
  background: var(--bg-warm);
  text-align: center;
}
.pain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 60px 0;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.pain-item {
  padding: 36px 24px;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 0.4s ease, color 0.4s ease;
}
.pain-item:nth-child(odd) { border-right: 1px solid var(--rule); }
.pain-item:nth-last-child(-n+2) { border-bottom: none; }
.pain-item:hover {
  background: var(--yellow);
}
.pain-q {
  font-size: clamp(28px, 4vw, 56px);
  font-style: italic;
  font-family: var(--display);
  line-height: 1.15;
  margin-top: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.pain-q strong { font-weight: 600; }

@media (max-width: 700px) {
  .pain-list { grid-template-columns: 1fr; }
  .pain-item { border-right: none !important; }
  .pain-item:not(:last-child) { border-bottom: 1px solid var(--rule); }
}

/* ---------- ABOUT ---------- */
.about {
  position: relative;
  padding-top: 80px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.about-teaser-photo {
  border-radius: 24px;
  overflow: hidden;
  min-height: 100%;
  display: flex;
}
.about-teaser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-teaser-photo { aspect-ratio: 16 / 10; min-height: 0; }
}
.about-photo {
  position: relative;
}
.about-photo-frame {
  background: var(--yellow);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 440px;
  position: relative;
  will-change: transform;
  /* organic blob, mirrored from hero */
  border-radius: 38% 62% 46% 54% / 56% 50% 50% 44%;
  animation: blob-morph-2 18s ease-in-out infinite;
}
@keyframes blob-morph-2 {
  0%, 100% { border-radius: 38% 62% 46% 54% / 56% 50% 50% 44%; }
  33%      { border-radius: 54% 46% 62% 38% / 44% 60% 40% 56%; }
  66%      { border-radius: 46% 54% 38% 62% / 60% 44% 56% 40%; }
}
.about-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--ink);
  color: var(--bg);
  width: 140px; height: 140px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
  animation: spin 28s linear infinite;
}
.about-badge span {
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.about-body p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-body p strong { color: var(--ink); font-weight: 600; }
.about-name {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(40px, 5vw, 64px);
  margin: 16px 0 24px;
  line-height: 1;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-photo-frame { margin: 0 auto; }
  .about-badge { right: 10%; }
}

/* ---------- PROGRAMS (approach page) ---------- */
.programs {
  background: var(--bg-warm);
  padding: clamp(80px, 10vw, 140px) 0;
}
.programs-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}
.programs-head p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  max-width: 460px;
}

.programs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.program-row {
  border-bottom: 1px solid var(--rule);
  background: transparent;
  transition: background 0.5s cubic-bezier(.7,0,.25,1);
}
.program-row:hover { background: var(--bg); }
.program-row.open { background: var(--bg); }

.program-row-head {
  width: 100%;
  display: grid;
  grid-template-columns: 56px minmax(220px, 1.4fr) 1fr 56px;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.program-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--yellow-deep);
  letter-spacing: 0.02em;
}

.program-title-block { min-width: 0; }
.program-title-block h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.program-row:hover .program-title-block h3,
.program-row.open .program-title-block h3 { color: var(--ink); }
.program-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
}

.program-meta-inline {
  display: flex;
  gap: 32px;
  justify-self: end;
}
.program-meta-inline span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  text-align: left;
  white-space: nowrap;
}
.program-meta-inline em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.program-meta-inline strong {
  font-family: var(--display);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.program-toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s cubic-bezier(.16,1,.3,1);
  justify-self: end;
  flex-shrink: 0;
}
.program-row:hover .program-toggle {
  background: var(--yellow);
  border-color: var(--yellow);
}
.program-toggle-bar {
  position: absolute;
  background: currentColor;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.program-toggle-bar:nth-child(1) { width: 14px; height: 1.5px; }
.program-toggle-bar:nth-child(2) { width: 1.5px; height: 14px; }
.program-row.open .program-toggle-bar:nth-child(2) { transform: rotate(90deg); }
.program-row.open .program-toggle {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.program-row-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.55s cubic-bezier(.7,0,.25,1);
}
.program-row.open .program-row-body {
  grid-template-rows: 1fr;
}
.program-row-body-inner {
  min-height: 0;
  display: grid;
  grid-template-columns: 56px minmax(220px, 1.4fr) 1fr 56px;
  gap: 32px;
  padding-bottom: 0;
  transition: padding-bottom 0.4s ease;
}
.program-row.open .program-row-body-inner {
  padding-bottom: 40px;
}

.program-copy {
  grid-column: 2;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  max-width: 480px;
}

.program-includes {
  grid-column: 3;
  align-self: start;
}
.program-includes-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.program-includes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.program-includes li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}
.program-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 1.5px;
  background: var(--yellow-deep);
}

.program-cta {
  grid-column: 2 / span 2;
  justify-self: start;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .program-row-head {
    grid-template-columns: 40px 1fr 44px;
    gap: 20px;
    padding: 26px 0;
  }
  .program-meta-inline {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    gap: 24px;
    padding-left: 60px;
    padding-bottom: 4px;
  }
  .program-meta-inline strong { font-size: 14px; }
  .program-row-body-inner {
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }
  .program-copy, .program-includes, .program-cta {
    grid-column: 2;
  }
}
@media (max-width: 880px) {
  .programs-head { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .program-title-block h3 { font-size: 26px; }
  .program-meta-inline { gap: 18px; padding-left: 0; }
  .program-num { font-size: 18px; }
}

/* ---------- HOW IT WORKS ---------- */
.how {
  background: var(--bg);
}
.how-head {
  text-align: center;
  margin-bottom: 80px;
}
.how-head h2 { max-width: 880px; margin: 24px auto 0; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 6px, transparent 6px 12px);
  opacity: 0.3;
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  margin: 0 auto 24px;
  position: relative;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s cubic-bezier(.16,1,.3,1);
}
.step:hover .step-num {
  background: var(--yellow);
  transform: scale(1.08) rotate(-6deg);
}
.step h4 {
  margin-bottom: 12px;
  font-family: var(--display);
}
.step p {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
  .how-steps::before { display: none; }
}
@media (max-width: 500px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* ---------- TESTIMONIALS ---------- */
.testi {
  background: var(--yellow-soft);
  position: relative;
  overflow: hidden;
}
.testi-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 60px;
  gap: 48px;
}
.testi-arrows {
  display: flex; gap: 12px;
}
.testi-arrow {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.testi-arrow:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.testi-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

.testi-track-wrap { overflow: hidden; }
.testi-track {
  display: flex;
  gap: 32px;
  transition: transform 0.7s cubic-bezier(.16,1,.3,1);
}
.testi-card {
  flex: 0 0 calc((100% - 64px) / 3);
  background: var(--bg);
  padding: 40px;
  border-radius: 24px;
  display: flex; flex-direction: column;
  min-height: 360px;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s ease;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -20px oklch(0.5 0.06 90 / 0.25);
}
.testi-stars {
  display: flex; gap: 4px;
  color: var(--yellow-deep);
  margin-bottom: 24px;
  font-size: 18px;
}
.testi-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
  margin-bottom: 28px;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
}
.testi-meta {
  font-size: 13px;
  line-height: 1.4;
}
.testi-meta strong { display: block; font-weight: 600; }
.testi-meta span { color: var(--ink-muted); }
.testi-dots {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 40px;
}
.testi-dots button {
  width: 28px; height: 4px;
  background: oklch(0.7 0.04 90);
  border-radius: 2px;
  transition: background 0.3s ease, width 0.3s ease;
  padding: 0;
}
.testi-dots button.active { background: var(--ink); width: 56px; }

@media (max-width: 980px) {
  .testi-card { flex: 0 0 calc((100% - 32px) / 2); }
}
@media (max-width: 700px) {
  .testi-card { flex: 0 0 100%; }
  .testi-head { flex-direction: column; align-items: flex-start; }
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--bg);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}
.faq-side h2 { font-style: italic; font-weight: 300; }
.faq-side p {
  color: var(--ink-soft);
  margin: 24px 0 32px;
  line-height: 1.65;
}
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.3s ease, padding-left 0.4s cubic-bezier(.16,1,.3,1);
}
.faq-q:hover { padding-left: 12px; color: var(--yellow-deep); }
.faq-q-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.faq-q-icon::before, .faq-q-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.faq-q-icon::before { width: 14px; height: 1.5px; }
.faq-q-icon::after { width: 1.5px; height: 14px; transition: transform 0.4s cubic-bezier(.16,1,.3,1); }
.faq-item.open .faq-q-icon::after { transform: rotate(90deg); }
.faq-item.open .faq-q { color: var(--yellow-deep); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.7,0,.25,1);
}
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 640px;
}
.faq-item.open .faq-a { max-height: 360px; }

@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- NEWSLETTER ---------- */
.news {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}
.news-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.news h2 {
  font-style: italic;
  font-weight: 300;
}
.news h2 .accent {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  padding: 0 0.2em;
  font-style: italic;
  transform: rotate(-1deg);
}
.news p { font-size: 17px; color: var(--ink); margin: 24px 0 0; max-width: 460px; }
.news-form {
  background: var(--bg);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 30px 60px -20px oklch(0.4 0.1 90 / 0.3);
}
.news-form-title {
  font-family: var(--display);
  font-size: 24px;
  margin-bottom: 6px;
  font-style: italic;
}
.news-form-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.news-input {
  display: flex;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 6px 6px 6px 24px;
  align-items: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 14px;
}
.news-input:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px oklch(0.18 0.01 85 / 0.08);
}
.news-input input {
  flex: 1;
  border: none;
  background: none;
  font: inherit;
  padding: 14px 0;
  color: var(--ink);
  outline: none;
}
.news-input input::placeholder { color: var(--ink-muted); }
.news-input button {
  background: var(--ink);
  color: var(--bg);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
}
.news-input button:hover { background: var(--yellow-deep); color: var(--ink); transform: translateX(2px); }
.news-fine {
  font-size: 12px;
  color: var(--ink-muted);
  display: flex; align-items: center; gap: 8px;
}
.news-fine input { accent-color: var(--ink); }

.news-deco {
  position: absolute;
  font-family: var(--display);
  font-style: italic;
  font-size: 240px;
  font-weight: 300;
  color: oklch(0.85 0.18 92);
  pointer-events: none;
  user-select: none;
  line-height: 0.8;
  opacity: 0.6;
}
.news-deco-1 { top: -40px; left: -20px; }
.news-deco-2 { bottom: -100px; right: 40%; transform: rotate(-8deg); }

@media (max-width: 880px) {
  .news-inner { grid-template-columns: 1fr; gap: 40px; }
  .news-deco { display: none; }
}

/* ---------- BLOG ---------- */
.blog { background: var(--bg); }
.blog-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 48px;
  margin-bottom: 64px;
}
.blog-head .lead {
  max-width: 460px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}
.blog-soon {
  background: var(--bg-warm);
  border-radius: 32px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.blog-soon::before {
  content: 'Soon';
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--ink);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 500;
  z-index: 2;
}
.blog-soon-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.blog-soon-card {
  background: var(--bg);
  padding: 18px;
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1), box-shadow 0.4s ease;
}
.blog-soon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px oklch(0.5 0.06 90 / 0.2);
}
.blog-soon-card .blog-soon-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--yellow);
  border-radius: 58% 42% 52% 48% / 48% 54% 46% 52%;
  transition: border-radius 0.7s cubic-bezier(.7,0,.25,1);
}
.blog-soon-card:hover .blog-soon-img {
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
}
.blog-soon-card .blog-soon-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(.16,1,.3,1);
  filter: saturate(0.92);
}
.blog-soon-card:hover .blog-soon-img img { transform: scale(1.06); }
.blog-soon-card .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-soon-card h4 {
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-weight: 400;
}
.blog-soon-form {
  align-self: stretch;
  display: flex; flex-direction: column;
  justify-content: center;
}
.blog-soon-form-head { margin-bottom: 28px; }
.blog-soon-form-head h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  color: var(--ink);
}

@media (max-width: 980px) {
  .blog-soon { grid-template-columns: 1fr; padding: 40px 28px; gap: 40px; }
}
@media (max-width: 640px) {
  .blog-head { flex-direction: column; align-items: flex-start; }
  .blog-soon-strip { grid-template-columns: 1fr; }
}

/* ---------- INSTAGRAM ---------- */
.ig {
  background: var(--bg-warm);
}
.ig-head {
  text-align: center;
  margin-bottom: 60px;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.16,1,.3,1);
}
.ig-tile::after {
  content: '@momme.space';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: oklch(0.18 0.01 85 / 0);
  color: transparent;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  transition: background 0.4s ease, color 0.4s ease;
}
.ig-tile:hover img { transform: scale(1.08); }
.ig-tile:hover::after { background: oklch(0.18 0.01 85 / 0.65); color: var(--yellow); }
@media (max-width: 700px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--yellow);
  color: var(--ink);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer-headline {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(54px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--bg);
  margin-bottom: 80px;
}
.footer-headline .y {
  background: var(--yellow);
  color: var(--ink);
  padding: 0 0.16em;
  font-style: italic;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 60px;
  border-top: 1px solid oklch(0.3 0.01 85);
}
.footer-col h5 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(0.28 0.04 40);
  margin-bottom: 20px;
  font-weight: 600;
  font-family: var(--sans);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 15px; }
.footer-col a {
  color: var(--ink);
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: inline-block;
}
.footer-col a:hover { color: var(--bg); padding-left: 8px; }
.footer-brand .logo {
  color: var(--bg);
  font-size: 36px;
  margin-bottom: 16px;
}
.footer-brand .logo .logo-mark { color: var(--bg); }
.footer-brand p {
  color: oklch(0.32 0.04 40);
  font-size: 15px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid oklch(0.55 0.12 35 / 0.5);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: oklch(0.32 0.04 40);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a:hover { color: var(--bg); }

@media (max-width: 880px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-brand { grid-column: span 2; }
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: oklch(0.7 0.04 90); border-radius: 5px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--yellow-deep); }

/* selection */
::selection { background: var(--yellow); color: var(--ink); }

/* ============================================================
   MULTIPAGE — page transitions, headers, mobile nav, new pages
   ============================================================ */

/* page fade-in on route change */
.page-fade {
  animation: pageFade 0.6s cubic-bezier(.16,1,.3,1);
}
@keyframes pageFade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- BURGER + MOBILE NAV ---------- */
.burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--rule);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), opacity 0.2s;
}
.burger span:first-child { transform: translate(-50%, calc(-50% - 4px)); }
.burger span:last-child  { transform: translate(-50%, calc(-50% + 4px)); }
.burger.open span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.burger.open span:last-child  { transform: translate(-50%, -50%) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(.16,1,.3,1);
  z-index: 90;
}
.nav-mobile.open { max-height: 480px; }
.nav-mobile a {
  font-family: var(--display);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  padding: 18px 32px;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.active { color: var(--yellow-deep); }

@media (max-width: 960px) {
  .burger { display: inline-flex; align-items: center; justify-content: center; }
}

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-header {
  padding: 160px 0 80px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 380px; height: 380px;
  background: var(--yellow-soft);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}
.page-header .container { position: relative; }
.page-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
  max-width: 900px;
  text-wrap: balance;
}
.page-title .italic { font-style: italic; }
.page-sub {
  margin-top: 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
}
.page-header-grid {
  display: block;
}
.page-header-split .page-header-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}
.page-header-main { display: flex; flex-direction: column; }
.page-header-side { display: flex; align-items: end; }
.page-header-single .page-header-side {
  display: block;
  margin-top: 28px;
}
.page-header-single .page-sub {
  max-width: 720px;
  margin-bottom: 16px;
}
.page-header-single .page-sub:last-child { margin-bottom: 0; }
.page-header.page-header-compact {
  padding: 120px 0 48px;
}


@media (max-width: 880px) {
  .page-header-split .page-header-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .page-sub { max-width: none; }
}
@media (max-width: 700px) {
  .page-header { padding: 120px 0 56px; }
  .page-sub { font-size: 17px; }
}

/* ---------- VALUES (about page) ---------- */
.values {
  padding: 120px 0;
  background: var(--bg);
}
.values-head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.values-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.values-head .italic { font-style: italic; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  padding: 48px 36px;
  background: var(--bg-warm);
  border-radius: 24px;
  border: 1px solid var(--rule);
  position: relative;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1), box-shadow 0.5s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px oklch(0.4 0.05 90 / 0.18);
}
.value-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--yellow-deep);
  letter-spacing: 0.02em;
}
.value-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  margin: 16px 0 16px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.value-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
@media (max-width: 880px) {
  .values { padding: 80px 0; }
  .values-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- CTA BAND ---------- */
.cta-band {
  padding: 100px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cta-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.cta-inner .italic { font-style: italic; }
.cta-inner p {
  margin: 24px 0 36px;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
  padding: 40px 0 140px;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

/* left column — three ways to begin */
.contact-info {
  position: sticky;
  top: 110px;
}
.contact-info h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-style: italic;
}
.contact-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.contact-item:last-child { border-bottom: 1px solid var(--rule); }
.contact-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--yellow-deep);
  line-height: 1;
  padding-top: 4px;
}
.contact-item > div { min-width: 0; }
.contact-item strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-item p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.contact-item p a {
  color: var(--ink);
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 1px;
  transition: color 0.25s, border-color 0.25s;
}
.contact-item p a:hover {
  color: var(--yellow-deep);
  border-color: var(--yellow-deep);
}

/* right column — form card */
.contact-form {
  background: var(--bg-warm);
  border-radius: 32px;
  padding: 48px;
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: var(--yellow);
  border-radius: 58% 42% 52% 48% / 48% 54% 46% 52%;
  opacity: 0.55;
  pointer-events: none;
  animation: blob-morph 18s ease-in-out infinite;
}
.contact-form > * { position: relative; z-index: 1; }

.contact-field {
  display: block;
  margin-bottom: 22px;
}
.contact-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--ink-muted); }
.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 4px var(--yellow-soft);
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-row .contact-field { margin-bottom: 22px; }

.contact-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
.contact-fine {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.5;
}

.contact-thanks {
  text-align: center;
  padding: 60px 16px;
}
.contact-thanks h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
}
.contact-thanks p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-info { position: static; }
  .contact-form { padding: 36px 24px; }
  .contact-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 700px) {
  .contact-section { padding: 20px 0 80px; }
}

.contact-soft {
  padding: 32px 0 120px;
}
.contact-soft-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.contact-soft-title {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 24px);
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.contact-soft-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  transition: color 0.25s ease;
}
.contact-soft-link:hover {
  color: var(--yellow-deep);
}
@media (max-width: 700px) {
  .contact-soft { padding: 20px 0 80px; }
}

/* ---------- BLOG LIST ---------- */
.blog-list-section { padding: 80px 0 140px; }

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.blog-filter {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.blog-filter:hover { color: var(--ink); border-color: var(--ink); transform: translateY(-1px); }
.blog-filter.on { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.blog-cats {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 14px;
}
.blog-cats span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  background: var(--yellow-soft);
  padding: 4px 10px;
  border-radius: 999px;
}

.blog-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 16px;
  flex-wrap: wrap;
}
.blog-meta .dotsep { color: var(--rule); }
.blog-readmore {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 0.3s ease;
}
.blog-readmore .arrow { transition: transform 0.4s cubic-bezier(.16,1,.3,1); display: inline-block; }

/* Featured (large) */
.blog-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  margin-bottom: 96px;
  align-items: center;
  background: var(--bg-warm);
  border-radius: 32px;
  padding: 24px;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1), box-shadow 0.5s ease;
}
.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px oklch(0.4 0.06 90 / 0.2);
}
.blog-featured:hover .blog-readmore { gap: 14px; }
.blog-featured:hover .blog-readmore .arrow { transform: translateX(4px); }
.blog-featured-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  background: var(--yellow-soft);
}
.blog-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.16,1,.3,1);
}
.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 2;
}
.blog-featured-body {
  padding: 16px 24px 16px 0;
}
.blog-featured-body h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.blog-excerpt {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
}

/* Grid cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.blog-card {
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card-img {
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: var(--yellow-soft);
  margin-bottom: 24px;
  position: relative;
}
.blog-card-img::after {
  content: '↗';
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  background: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--ink);
  opacity: 0;
  transform: translate(8px, -8px) rotate(-30deg);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(.16,1,.3,1);
  z-index: 2;
}
.blog-card:hover .blog-card-img::after {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(.16,1,.3,1);
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 0 4px; }
.blog-card-body h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.blog-card:hover .blog-card-body h3 { color: var(--yellow-deep); }
.blog-card-body p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.blog-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--ink-muted);
  font-style: italic;
  font-family: var(--display);
  font-size: 22px;
}

@media (max-width: 980px) {
  .blog-featured { grid-template-columns: 1fr; gap: 24px; padding: 16px; }
  .blog-featured-body { padding: 8px 12px 16px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-list-section { padding: 60px 0 100px; }
}

/* ---------- BLOG POST DETAIL ---------- */
.post {
  padding: 140px 0 120px;
  background: var(--bg);
}
.post-crumbs {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1.4;
}
.post-crumbs > * { flex-shrink: 0; }
.post-crumbs a {
  color: var(--ink-soft);
  font-weight: 600;
  transition: color 0.25s ease;
}
.post-crumbs a:hover { color: var(--yellow-deep); }
.post-crumbs .sep {
  color: var(--rule);
  font-size: 14px;
  letter-spacing: 0;
}
.post-crumbs .muted {
  color: var(--ink);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}
.post-cats {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 20px;
}
.post-cats span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  background: var(--yellow-soft);
  padding: 6px 12px;
  border-radius: 999px;
}
.post-title {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.post-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.post-meta .dotsep { color: var(--rule); }
.post-image {
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 48px;
  aspect-ratio: 16/10;
  background: var(--yellow-soft);
}
.post-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.post-body p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 24px;
  max-width: 680px;
}
.post-body h2 {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  margin: 48px 0 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.post-body h2::first-letter { font-style: italic; }

.post-share {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  flex-wrap: wrap;
  gap: 16px;
}
.post-share div { display: flex; gap: 16px; }
.post-share a {
  color: var(--ink);
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}
.post-share a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--ink);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
}
.post-share a:hover::after { transform: scaleX(1); }

/* Sidebar */
.post-side {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.post-author {
  background: var(--bg-warm);
  border-radius: 28px;
  padding: 32px;
  text-align: center;
}
.post-author-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background: var(--yellow);
}
.post-author-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.post-author-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--ink);
}
.post-author p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 24px;
}
.post-author .btn { font-size: 13px; padding: 14px 22px; }

.post-side-cta {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-warm);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(.16,1,.3,1);
}
.post-side-cta:hover { transform: translateY(-3px); }
.post-side-cta img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(.16,1,.3,1);
}
.post-side-cta:hover img { transform: scale(1.06); }
.post-side-cta-mark {
  position: absolute;
  top: 16px; left: 16px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  z-index: 2;
}
.post-side-cta-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, oklch(0.18 0.012 85 / 0.92), transparent);
  padding: 48px 20px 20px;
  color: var(--bg);
  z-index: 2;
}
.post-side-cta-overlay strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--yellow);
  margin-bottom: 4px;
}
.post-side-cta-overlay span {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: oklch(0.92 0.01 85);
}

.post-related {
  margin-top: 120px;
  padding-top: 80px;
  border-top: 1px solid var(--rule);
}
.post-related-head {
  text-align: center;
  margin-bottom: 60px;
}
.post-related-head h2 {
  font-size: clamp(32px, 4vw, 48px);
}

@media (max-width: 980px) {
  .post-grid { grid-template-columns: 1fr; gap: 64px; }
  .post-side { position: static; flex-direction: row; gap: 20px; }
  .post-author, .post-side-cta { flex: 1; }
}
@media (max-width: 700px) {
  .post-side { flex-direction: column; }
  .post { padding: 110px 0 80px; }
  .post-crumbs { font-size: 11px; margin-bottom: 32px; padding-bottom: 16px; gap: 8px; }
  .post-crumbs .muted { font-size: 12px; }
  .post-related { margin-top: 80px; padding-top: 56px; }
  .post-body p { font-size: 16px; }
}

/* ---------- Make page-header :before more subtle on dark palette ---------- */
.crumbs {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.crumbs a { color: var(--ink-soft); transition: color 0.25s ease; }
.crumbs a:hover { color: var(--yellow-deep); }
.crumbs .sep { color: var(--rule); }

.ig-handle-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  transition: color 0.25s ease;
}
.ig-handle-link:hover { color: var(--yellow-deep); }

/* ---------- PACKAGES ---------- */
.packages-section { padding: 120px 0 80px; }
.packages-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}
.packages-head h2 {
  font-size: clamp(40px, 5vw, 72px);
}
.packages-head p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
}
.packages-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.package-card {
  background: var(--bg-warm);
  border-radius: 24px;
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.12);
}
.package-card.open {
  border-color: var(--yellow);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.18);
}
.package-card-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
  position: relative;
}
.package-card-head:focus-visible {
  outline: 2px solid var(--yellow-deep);
  outline-offset: -4px;
  border-radius: 18px;
}
.package-toggle {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}
.package-card.open .package-toggle {
  background: var(--ink);
  border-color: var(--ink);
  transform: rotate(180deg);
}
.package-toggle-bar {
  position: absolute;
  background: var(--ink);
  transition: transform 0.3s ease, background 0.25s ease;
}
.package-toggle-bar:nth-child(1) { width: 12px; height: 1.5px; }
.package-toggle-bar:nth-child(2) { width: 1.5px; height: 12px; }
.package-card.open .package-toggle-bar { background: var(--bg); }
.package-card.open .package-toggle-bar:nth-child(2) { transform: scaleY(0); }

.package-card-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.5s cubic-bezier(.7,0,.25,1);
}
.package-card.open .package-card-body {
  grid-template-rows: 1fr;
}
.package-card-body-inner {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 36px;
  transition: padding 0.4s ease;
}
.package-card.open .package-card-body-inner {
  padding: 4px 36px 40px;
}
.package-card-top { display: flex; flex-direction: column; gap: 8px; padding-right: 56px; }
.package-card-num-row {
  display: flex; align-items: center; gap: 16px;
}
.package-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--yellow-deep);
  letter-spacing: 0.04em;
}
.package-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.package-title {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.1;
  color: var(--ink);
}
.package-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.package-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 600;
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  margin-top: 4px;
}
.package-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 14px 0 0;
  border-top: 1px solid var(--rule);
}
.package-meta div { display: flex; flex-direction: column; gap: 4px; }
.package-meta em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.package-meta strong {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.package-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.package-includes-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.package-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.package-includes li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}
.package-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}
.package-card-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.package-learn {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.package-learn:hover { color: var(--ink); }

.packages-cta { padding: 80px 0 120px; }
.packages-cta-inner {
  background: var(--yellow);
  color: var(--ink);
  padding: 80px 64px;
  border-radius: 32px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.packages-cta-inner h2 {
  font-family: var(--display);
  color: var(--ink);
  font-size: clamp(36px, 4.4vw, 56px);
  margin-bottom: 20px;
}
.packages-cta-inner p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 32px;
}
.packages-cta-inner .btn,
.packages-cta-inner .btn-yellow {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.packages-cta-inner .btn:hover,
.packages-cta-inner .btn-yellow:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--ink);
}

/* Detail page */
.package-hero {
  padding: 80px 0 60px;
  background: var(--bg-warm);
}
.package-hero-back { margin-bottom: 32px; font-size: 14px; }
.package-hero-back a {
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.package-hero-back a:hover { color: var(--ink); }
.package-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.package-hero-main .eyebrow {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 600;
}
.package-hero-title {
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.05;
  margin: 16px 0 18px;
  color: var(--ink);
}
.package-hero-tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.4;
}
.package-hero-lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 600px;
  margin-bottom: 24px;
}
.package-hero-meta {
  background: var(--bg);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--rule);
  position: sticky;
  top: 100px;
}
.package-hero-meta > div {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.package-hero-meta > div:nth-last-child(2) { border-bottom: none; padding-bottom: 0; }
.package-hero-meta em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}
.package-hero-meta strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.package-hero-meta small {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.package-hero-cta { margin-top: 8px; justify-content: center; }

.package-body { padding: 80px 0 120px; }
.package-body-prose {
  max-width: 760px;
  margin: 0 auto 80px;
}
.package-body-prose p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 24px;
}
.package-blocks {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.package-block h3 {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 34px);
  margin-bottom: 24px;
  color: var(--ink);
}
.package-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.package-list li {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding-left: 24px;
  position: relative;
}
.package-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--yellow);
}
.package-plans {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.package-plans li {
  background: var(--bg-warm);
  border-radius: 18px;
  padding: 24px 28px;
  border: 1px solid var(--rule);
}
.package-plans strong {
  display: block;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.package-plans span {
  display: block;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.package-journey {
  list-style: none;
  counter-reset: jstep;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.package-journey li {
  counter-increment: jstep;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding-left: 56px;
  position: relative;
  min-height: 36px;
  display: flex;
  align-items: center;
}
.package-journey li::before {
  content: counter(jstep, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--yellow-deep);
  width: 40px;
  height: 36px;
  display: flex; align-items: center;
  border-right: 1px solid var(--rule);
  padding-right: 12px;
}
.package-body-cta {
  text-align: center;
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.package-book-pay {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.package-book-pay:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

@media (max-width: 1024px) {
  .package-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .package-hero-meta { position: static; }
}
@media (max-width: 880px) {
  .packages-section { padding: 80px 0 60px; }
  .packages-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .packages-grid { grid-template-columns: 1fr; gap: 20px; }
  .package-card { padding: 32px 28px; }
  .package-meta { grid-template-columns: 1fr 1fr; gap: 12px; }
  .packages-cta-inner { padding: 56px 32px; border-radius: 24px; }
  .package-body { padding: 60px 0 80px; }
  .package-blocks { gap: 40px; }
}

/* ---------- APPROACH PAGE ---------- */
.approach-intro { padding: 100px 0 80px; }
.approach-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.approach-intro-side h2 {
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.1;
}
.approach-intro-body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.approach-intro-body p:last-child { margin-bottom: 0; }
.approach-intro-highlight {
  margin-top: 16px !important;
  padding-left: 24px;
  border-left: 3px solid var(--yellow);
}
.approach-intro-highlight strong {
  color: var(--ink);
  font-weight: 500;
  font-style: normal;
}

.momme-way { padding: 100px 0; background: var(--bg-warm); }
.momme-way-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.momme-way-head h2 {
  margin-top: 24px;
  font-size: clamp(36px, 4.8vw, 64px);
}
.momme-way-head p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.momme-way-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.way-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.way-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.way-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--yellow-deep);
}
.way-card h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  color: var(--ink);
}
.way-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.key-statement { padding: 120px 0; }
.key-statement-text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.25;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  color: var(--ink);
}

.approach-testimonial { padding: 60px 0 100px; }
.approach-testimonial-inner {
  background: var(--yellow);
  color: var(--ink);
  border-radius: 32px;
  padding: 80px 64px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.approach-testimonial-inner .eyebrow {
  color: var(--ink);
}
.approach-testimonial-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.55;
  color: var(--ink);
  margin: 28px auto 36px;
  max-width: 760px;
  position: relative;
}
.approach-testimonial-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 64px;
  color: var(--ink);
  display: block;
  line-height: 0.8;
  margin-bottom: 12px;
}
.approach-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.approach-testimonial-author strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.approach-testimonial-author span {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.approach-closing { padding: 100px 0 140px; }
.approach-closing-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.approach-closing-inner p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 40px;
}

@media (max-width: 880px) {
  .approach-intro { padding: 60px 0; }
  .approach-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .momme-way { padding: 60px 0; }
  .momme-way-grid { grid-template-columns: 1fr; gap: 20px; }
  .way-card { padding: 32px 28px; }
  .key-statement { padding: 80px 0; }
  .approach-testimonial { padding: 40px 0 60px; }
  .approach-testimonial-inner { padding: 56px 32px; border-radius: 24px; }
  .approach-closing { padding: 60px 0 80px; }
}

/* ---------- ABOUT PAGE ---------- */
.about-hero { padding: 120px 0 80px; position: relative; }
.about-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.about-hero-photo {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 620px;
}
.about-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-hero-text { display: flex; flex-direction: column; }
.about-hero-text .eyebrow { display: inline-block; }
.about-hero-sub-strong {
  font-family: var(--display);
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 16px;
}
.about-hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 480px;
}

.about-short { padding: 100px 0; background: var(--bg-warm); }
.about-short-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.about-short-title {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  color: var(--ink);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 32px;
}
.about-short-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 20px;
}
.about-short-body p:last-child { margin-bottom: 0; }
.about-short-photo {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about-short-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-expand-trigger-wrap {
  display: flex;
  justify-content: center;
  padding: 64px 0;
  background: var(--bg-warm);
}
.about-expand-trigger {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.about-expand-trigger:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -12px rgba(0,0,0,0.25);
}
.about-expand-trigger:active {
  transform: translateY(0);
}
.about-expand-trigger.open {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.about-expand-trigger.open:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.about-expand-arrow {
  font-size: 14px;
  display: inline-block;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-expand-trigger.open .about-expand-arrow {
  transform: rotate(-180deg);
}

.about-long {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-long.open {
  grid-template-rows: 1fr;
}
.about-long-inner {
  min-height: 0;
  overflow: hidden;
}
.about-long-part {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s ease-out, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-long.open .about-long-part {
  opacity: 1;
  transform: translateY(0);
}
.about-long.open .about-long-part:nth-child(1) { transition-delay: 0.20s; }
.about-long.open .about-long-part:nth-child(2) { transition-delay: 0.32s; }
.about-long.open .about-long-part:nth-child(3) { transition-delay: 0.44s; }
.about-long.open .about-long-part:nth-child(4) { transition-delay: 0.56s; }
.about-long-photo img {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-long.open .about-long-photo img {
  animation: aboutPhotoZoom 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.4s;
}
@keyframes aboutPhotoZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.about-pull-mark {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 64px;
  color: var(--yellow);
  line-height: 0.6;
  margin-bottom: 16px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-long.open .about-long-part .about-pull-mark {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.9s;
}
.about-long-part {
  padding: 100px 0;
  border-top: 1px solid var(--rule);
}
.about-long-part:first-child { border-top: none; }
.about-long-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-long-part.reverse .about-long-grid {
  direction: rtl;
}
.about-long-part.reverse .about-long-grid > * {
  direction: ltr;
}
.about-long-text .eyebrow { display: inline-block; }
.about-long-headline {
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  color: var(--ink);
  margin: 24px 0 32px;
  font-weight: 400;
}
.about-long-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
}
.about-long-text p:last-child { margin-bottom: 0; }
.about-long-photo {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about-long-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-pull-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.3;
  color: var(--ink);
  max-width: 900px;
  margin: 64px auto 0;
  text-align: center;
  position: relative;
  padding-top: 32px;
}

.about-bridge {
  padding: 100px 0;
  text-align: center;
}
.about-bridge-inner {
  max-width: 720px;
  margin: 0 auto;
}
.about-bridge-title {
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}
.about-bridge-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

/* ---------- DISCOVERY CALL PAGE ---------- */
.discovery-page .page-header {
  background: var(--bg);
  border-bottom: none;
}
.discovery-page .page-header::before { display: none; }

.approach-page .page-header {
  background: #ffffff;
  border-bottom: none;
}
.approach-page .page-header::before { display: none; }

.discovery-section-title {
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.1;
  color: var(--ink);
  margin-top: 24px;
  font-weight: 400;
}

.discovery-why { padding: 100px 0 80px; }
.discovery-why-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.discovery-pull-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.3;
  color: var(--ink);
  margin: 40px auto;
  position: relative;
  padding-top: 24px;
}
.discovery-pull-mark {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 64px;
  color: var(--yellow);
  line-height: 0.6;
  margin-bottom: 16px;
}
.discovery-why-body { text-align: left; max-width: 640px; margin: 32px auto 0; }
.discovery-why-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 18px;
}
.discovery-why-body p:last-child { margin-bottom: 0; }

.discovery-steps { padding: 100px 0; background: var(--bg-warm); }
.discovery-steps-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.discovery-steps-sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin-top: 16px;
}
.discovery-steps-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.discovery-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 18px;
  align-items: flex-start;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.discovery-step:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.discovery-step-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--yellow-deep);
  line-height: 1;
}
.discovery-step-body h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
}
.discovery-step-body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.discovery-widget { padding: 100px 0 80px; }
.discovery-widget-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.discovery-widget-frame {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: 80px 48px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.discovery-widget-frame--iframe {
  padding: 0;
  overflow: hidden;
  min-height: 720px;
}
.discovery-widget-frame--iframe iframe {
  width: 100%;
  height: 720px;
  display: block;
  border: 0;
}
.discovery-widget-placeholder {
  text-align: center;
  max-width: 480px;
}
.discovery-widget-placeholder p {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.discovery-widget-note {
  max-width: 640px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
}

.discovery-testimonial { padding: 60px 0 80px; }
.discovery-testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  background: var(--yellow-soft);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
}
.discovery-testimonial-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  color: var(--ink);
  margin: 24px auto 28px;
  position: relative;
  padding-top: 16px;
}
.discovery-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.discovery-testimonial-author strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.discovery-testimonial-author span {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.discovery-faq { padding: 100px 0; }
.discovery-faq-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.discovery-faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.discovery-fallback { padding: 60px 0 120px; }
.discovery-fallback-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.discovery-fallback-title {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 12px;
}
.discovery-fallback-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.discovery-fallback-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.discovery-fallback-list a {
  display: inline-block;
  font-size: 15px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.25s ease;
}
.discovery-fallback-list a:hover {
  color: var(--yellow-deep);
}
.discovery-fallback-closing {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
}

@media (max-width: 880px) {
  .about-hero { padding: 80px 0 60px; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-photo { aspect-ratio: 4 / 5; max-height: 520px; }
  .about-short { padding: 60px 0; }
  .about-short-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-short-photo { aspect-ratio: 4 / 3; }
  .about-expand-trigger-wrap { padding: 40px 0; }
  .about-long-part { padding: 60px 0; }
  .about-long-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-long-part.reverse .about-long-grid { direction: ltr; }
  .about-long-photo { aspect-ratio: 4 / 3; }
  .about-pull-quote { margin-top: 40px; padding-top: 24px; }
  .about-bridge { padding: 60px 0; }
  .discovery-why { padding: 60px 0 40px; }
  .discovery-pull-quote { margin: 24px auto; }
  .discovery-steps { padding: 60px 0; }
  .discovery-steps-list { grid-template-columns: 1fr 1fr; gap: 16px; }
  .discovery-step { padding: 22px 20px; }
  .discovery-widget { padding: 60px 0 40px; }
  .discovery-widget-frame { padding: 56px 24px; }
  .discovery-testimonial-inner { padding: 40px 28px; }
  .discovery-faq { padding: 60px 0; }
  .discovery-fallback { padding: 40px 0 80px; }
  .nav-cta { padding: 8px 14px; font-size: 11px; }
}
@media (max-width: 560px) {
  .discovery-steps-list { grid-template-columns: 1fr; }
}

/* ---------- APPROACH PAGE v2 ---------- */
.approach-beliefs { padding: 100px 0; background: var(--bg-warm); }
.approach-beliefs-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.approach-beliefs-head h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  margin-top: 20px;
}
.approach-beliefs-head p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.approach-beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.belief-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.belief-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}
.belief-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--yellow-deep);
}
.belief-card h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  color: var(--ink);
}
.belief-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.approach-stand { padding: 100px 0; }
.approach-stand-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.approach-stand-head h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  margin-top: 20px;
}
.approach-stand-head p {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.approach-stand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.position-card {
  padding: 36px 32px;
  border-left: 3px solid var(--yellow);
  background: transparent;
}
.position-card h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
}
.position-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.approach-how { padding: 100px 0; background: var(--bg-warm); }
.approach-how-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.approach-how-head h2 {
  font-size: clamp(36px, 4.6vw, 60px);
  margin-top: 20px;
}
.approach-how-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.approach-how-item {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.approach-how-item:last-child { border-bottom: none; padding-bottom: 0; }
.approach-how-headline {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  color: var(--ink);
}
.approach-how-body p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.approach-how-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.approach-how-bullets li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}
.approach-how-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}
.approach-how-bullets li strong {
  color: var(--ink);
  font-weight: 600;
}

.approach-bridge-cta { padding: 80px 0; }
.approach-bridge-cta-inner {
  background: var(--bg-warm);
  border-radius: 32px;
  padding: 64px 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--rule);
}
.approach-bridge-cta-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}
.approach-bridge-cta-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 880px) {
  .approach-beliefs { padding: 60px 0; }
  .approach-beliefs-grid { grid-template-columns: 1fr; gap: 20px; }
  .approach-stand { padding: 60px 0; }
  .approach-stand-grid { grid-template-columns: 1fr; gap: 20px; }
  .approach-how { padding: 60px 0; }
  .approach-how-item { grid-template-columns: 1fr; gap: 16px; }
  .approach-bridge-cta { padding: 56px 0; }
  .approach-bridge-cta-inner { padding: 48px 28px; border-radius: 24px; }
}
