/* ============================================================
   Maria Fink PMU — TrueKind-inspired editorial
   ============================================================ */

:root {
  --bg: #FAF7F2;
  --bg-pure: #FFFFFF;
  --bg-warm: #F0E9DE;
  --bg-dark: #161310;
  --ink: #161310;
  --ink-soft: #4A413A;
  --ink-mute: #8A7E72;
  --clay: #B27A6B;
  --clay-deep: #8B5A4D;
  --hairline: rgba(22, 19, 16, 0.12);
  --hairline-strong: rgba(22, 19, 16, 0.28);

  --font-serif: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1440px;
  --gutter: 48px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; transition: opacity 0.2s ease; }
a:hover { opacity: 0.6; }

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

button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wrap-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* === TYPOGRAPHY === */

.serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.serif em, .serif .em {
  font-style: italic;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--ink);
}

h1 { font-size: clamp(56px, 7vw, 104px); line-height: 1.0; }
h2 { font-size: clamp(40px, 5.2vw, 80px); line-height: 1.02; }
h3 { font-size: clamp(28px, 3vw, 44px); line-height: 1.1; }
h4 { font-size: clamp(20px, 2.4vw, 30px); line-height: 1.2; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em, .italic { font-style: italic; }

.label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}

.label-mute { color: var(--ink-mute); }

.lead {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 56ch;
}

/* === HEADER === */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 14px var(--gutter);
}

.brand {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand .em { font-style: italic; }

.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav a {
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 1px;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-sans);
}

main { padding-top: 0; }

/* === HERO === */

.hero {
  min-height: calc(100vh - 80px);
  padding: 120px var(--gutter) 60px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  display: block;
  margin-bottom: 32px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5.6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 14ch;
}

.hero-title em {
  font-style: italic;
  color: var(--clay);
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 36px;
}

/* Hero trust points — 2x2 grid with subtle dash markers */
.hero-trust {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  margin: 0 0 40px;
  padding: 0;
}

.hero-trust li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
  font-weight: 400;
}

.hero-trust li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 1px;
  background: var(--clay);
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

/* WhatsApp button — green dot indicator */
.btn-whatsapp {
  position: relative;
}

.whatsapp-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  margin-right: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--ink);
  font-family: var(--font-sans);
  cursor: pointer;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary:hover {
  background: transparent;
  color: var(--ink);
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  opacity: 1;
}

/* Hero photo column */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 76vh;
  overflow: hidden;
  background: var(--bg-warm);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.hero-photo-caption {
  position: static;
  display: block;
  margin-top: 16px;
  color: var(--ink-mute);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  font-style: italic;
  font-family: var(--font-serif);
}

/* Hero meta row — below hero, compact */
.hero-meta-strip {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 24px 0;
  margin: 0;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero-meta-item {
  padding: 0 32px;
  border-right: 1px solid var(--hairline);
  text-align: left;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.hero-meta-item:last-child { border-right: none; }
.hero-meta-item:first-child { padding-left: 0; }

.hero-meta-num {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1;
  font-style: normal;
  color: var(--ink);
  font-weight: 500;
  flex-shrink: 0;
}

.hero-meta-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

/* === SECTIONS === */

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

section.tight { padding: 64px 0; }

.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--bg-dark); color: var(--bg); }
.section-pure { background: var(--bg-pure); }

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--bg); }
.section-dark .lead, .section-dark p { color: rgba(250, 247, 242, 0.75); }
.section-dark .label { color: var(--bg); }
.section-dark .hairline { background: rgba(250, 247, 242, 0.18); }

/* === SECTION INTRO (block headline + lead) === */

.intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.intro-headline { font-family: var(--font-serif); font-size: clamp(36px, 4.8vw, 72px); line-height: 1.0; letter-spacing: -0.02em; }
.intro-headline em { font-style: italic; color: var(--clay); }
.intro-side .label { display: block; margin-bottom: 16px; }
.intro-side .lead { font-size: 17px; }

/* === MANIFESTO BLOCK (giant scrolling type) === */

.manifesto {
  padding: 0 var(--gutter);
  text-align: left;
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}

.manifesto-headline {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 28ch;
  font-weight: 400;
}

.manifesto-headline em {
  font-style: italic;
  color: var(--clay);
}

.manifesto-arc {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  width: 200px;
  height: 280px;
  opacity: 0.5;
  pointer-events: none;
}

/* === ABOUT (split editorial) === */

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

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.about-content { padding-top: 0; }

.about-content .label { display: block; margin-bottom: 32px; }

.about-content h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 32px;
  line-height: 1.04;
}

.about-content h2 em { font-style: italic; color: var(--clay); }

.about-content p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 52ch;
}

.signature {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

.signature-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
}

.signature-role {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* === SERVICES (two large vertical photos with type overlay) === */

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-warm);
}

.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.service-card:hover img { transform: scale(1.04); }

.service-card-content {
  position: absolute;
  inset: 0;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFF;
  background: linear-gradient(180deg, rgba(22,19,16,0) 30%, rgba(22,19,16,0.55) 100%);
  pointer-events: none;
}

.service-card-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

.service-card-bottom {}

.service-card h3 {
  color: #FFF;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.0;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  max-width: 32ch;
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-card-meta {
  display: flex;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* === HERO single CTA link (secondary "or book" under button) === */

.hero-cta-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--hairline-strong);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-cta-link:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
  opacity: 1;
}

/* === MODEL OFFER (limited spots card under hero) === */

.model-offer {
  padding: 48px 0 24px;
}

.model-card {
  background: var(--bg-warm);
  border: 1px solid var(--hairline);
  padding: 36px 48px;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.model-card-text {
  min-width: 0;
}

.model-card-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.model-card h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  margin-bottom: 12px;
  line-height: 1.15;
  font-family: var(--font-serif);
  font-weight: 400;
}

.model-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}

.model-card-cta {
  white-space: nowrap;
  align-self: center;
}

/* === TRUST STRIP (pigments + certifications) === */

.trust-strip {
  padding: 56px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg);
}

.trust-strip-caption {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 28px;
  font-weight: 500;
}

/* Logo strip — hotlinked brand logos with consistent sizing + onerror text fallback */
.trust-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  gap: 56px;
  row-gap: 24px;
}

.trust-list li {
  display: flex;
  align-items: center;
  height: 36px;
}

.trust-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  text-decoration: none;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.trust-list a:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.trust-list a img {
  height: 32px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}

/* Mast PNG ships with white background — multiply blends it into cream */
.trust-list .logo-mast img {
  mix-blend-mode: multiply;
}

/* Kwadron logo is white (built for dark nav) — invert to dark, then match grayscale tone */
.trust-list a.logo-invert {
  filter: invert(1) brightness(0.55);
  opacity: 0.65;
}

.trust-list a.logo-invert:hover {
  filter: invert(1) brightness(0.35);
  opacity: 1;
}

/* Onerror fallback: img replaced with text — style as clean wordmark */
.trust-list a.logo-fallback {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  filter: none;
  opacity: 1;
  white-space: nowrap;
}

/* === FEARS / STAKES (StoryBrand: name the objection) === */

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

.fear-card {
  background: var(--bg-pure);
  border: 1px solid var(--hairline);
  padding: 40px 36px 40px;
}

.fear-card h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 16px;
  line-height: 1.15;
  font-family: var(--font-serif);
  font-weight: 400;
}

.fear-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* === THE PLAN (3 steps) === */

.plan-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0;
  margin: 0 0 56px;
}

.plan-step {
  background: var(--bg-pure);
  border: 1px solid var(--hairline);
  padding: 40px 36px 40px;
  position: relative;
}

.plan-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}

.plan-step h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 12px;
  line-height: 1.15;
  font-family: var(--font-serif);
  font-weight: 400;
}

.plan-step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

.plan-cta {
  display: flex;
  justify-content: center;
}

/* === SUCCESS VISION === */

.success {
  padding: 96px 0;
}

.success-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--gutter);
}

.success-content h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 24px;
  line-height: 1.02;
}

.success-content .lead {
  margin: 0 auto;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
  max-width: 56ch;
}

/* === TESTIMONIAL INTRO (small label above quotes) === */

.testimonial-intro {
  text-align: center;
  padding: 60px 0 0;
}

.testimonial-intro-label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
  font-weight: 500;
  margin: 0;
}

/* === SIGNATURE (Guide section) === */

.signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.signature-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}

.signature-role {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

/* === CONTACT FORM (Final CTA — Maria calls back) === */

.cta-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  text-align: left;
  margin: 56px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.form-field {
  display: block;
}

.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
  font-weight: 500;
  margin-bottom: 10px;
}

.form-label em {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(250, 247, 242, 0.4);
  font-size: 11px;
  margin-left: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250, 247, 242, 0.25);
  padding: 8px 0 12px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--bg);
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(250, 247, 242, 0.35);
  font-size: 15px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--bg);
}

.contact-form select {
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, rgba(250, 247, 242, 0.5) 50%),
                    linear-gradient(135deg, rgba(250, 247, 242, 0.5) 50%, transparent 50%);
  background-position: calc(100% - 16px) 18px, calc(100% - 10px) 18px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 32px;
}

.contact-form select option {
  background: var(--bg-dark);
  color: var(--bg);
}

.contact-form textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--font-sans);
}

.btn-form {
  align-self: flex-start;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--bg);
  padding: 18px 40px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  margin-top: 8px;
}

.btn-form:hover {
  background: transparent;
  color: var(--bg);
}

.form-note {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.5;
  margin: 4px 0 0;
}

.form-note a {
  color: rgba(250, 247, 242, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note a:hover {
  color: var(--bg);
  opacity: 1;
}

.form-error {
  font-size: 13px;
  color: #f5b89a;
  background: rgba(245, 184, 154, 0.08);
  border-left: 2px solid #f5b89a;
  padding: 12px 16px;
  margin: 0;
  border-radius: 0;
  line-height: 1.5;
}

.form-success {
  margin: 56px 0 32px;
  padding: 56px 40px;
  border: 1px solid rgba(250, 247, 242, 0.2);
  text-align: center;
  background: rgba(250, 247, 242, 0.04);
}

.form-success-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  color: var(--bg);
  margin: 0 0 16px;
}

.form-success p:not(.form-success-title) {
  font-size: 17px;
  color: rgba(250, 247, 242, 0.75);
  margin: 0;
  line-height: 1.55;
}

.form-fallback {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.55);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 247, 242, 0.12);
}

.form-fallback a {
  color: rgba(250, 247, 242, 0.85);
  margin: 0 6px;
}

.form-fallback a:hover {
  color: var(--bg);
  opacity: 1;
}

.form-fallback span {
  color: rgba(250, 247, 242, 0.3);
  margin: 0 4px;
}

/* === CTA Link primary (WhatsApp emphasis on final CTA) === */

.cta-link.cta-link-primary {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

.cta-link.cta-link-primary:hover {
  background: transparent;
  color: var(--bg);
  border-color: var(--bg);
}

/* === NEW SERVICES (clean cards — Block 2 of landing) === */

.services-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 0 var(--gutter);
}

.services-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.04;
}

.services-intro .lead {
  margin: 0 auto;
  max-width: 56ch;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.svc-card {
  background: var(--bg-pure);
  border: 1px solid var(--hairline);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.4s ease;
}

.svc-card:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-2px);
}

.svc-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-warm);
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease;
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.03);
}

.svc-card-body {
  padding: 36px 40px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-card-body h3 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 14px;
  line-height: 1.05;
}

.svc-card-copy {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 40ch;
}

.svc-card-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

.svc-card-meta > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-card-meta dt {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

.svc-card-meta dd {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.35;
}

.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  padding: 0 0 4px;
  border-bottom: 1px solid var(--ink);
  margin-top: auto;
  align-self: flex-start;
  transition: gap 0.3s ease;
}

.svc-card-link:hover {
  gap: 14px;
  opacity: 1;
}

/* === PROCESS (two-session diagram) === */

.process {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  text-align: left;
  padding: 60px 48px;
  background: var(--bg-pure);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
}

.process-step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(56px, 6vw, 84px);
  line-height: 1;
  color: var(--clay);
  margin-bottom: 20px;
  font-weight: 400;
}

.process-step h4 {
  font-size: clamp(24px, 2.4vw, 32px);
  margin-bottom: 14px;
}

.process-step .duration {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}

.process-step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.process-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  position: relative;
}

.process-link-text {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink-mute);
  position: relative;
  padding: 12px 16px;
  background: var(--bg);
  z-index: 1;
  font-weight: 500;
}

.process-link::before {
  content: '';
  position: absolute;
  inset: 50% 0 50% 0;
  height: 1px;
  background: var(--hairline-strong);
}

/* === TOOLS (clean numbered list) === */

.tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  margin-top: 60px;
}

.tool {
  padding: 36px 40px;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
}

.tool:nth-child(2n) { border-right: none; }

.tool-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--clay);
  margin-bottom: 16px;
  display: block;
}

.tool h4 {
  font-size: clamp(20px, 1.8vw, 24px);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.tool p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* === GALLERY (asymmetric grid with diagonal masks) === */

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  margin-top: 60px;
}

.g-tile {
  overflow: hidden;
  position: relative;
}

.g-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.g-tile:hover img { transform: scale(1.05); }

.g1 { grid-column: span 4; grid-row: span 2; }
.g2 { grid-column: span 2; grid-row: span 2; }
.g3 { grid-column: span 2; grid-row: span 2; }
.g4 { grid-column: span 4; grid-row: span 2; }

/* === TESTIMONIALS (huge editorial quote) === */

.testimonial-block {
  padding: 120px 0;
  position: relative;
  text-align: center;
}

.testimonial-block .quote-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(80px, 10vw, 140px);
  line-height: 0.8;
  color: var(--clay);
  margin-bottom: 24px;
  display: block;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: inherit;
  max-width: 28ch;
  margin: 0 auto 40px;
}

.testimonial-quote em { font-style: italic; color: var(--clay); }

.section-dark .testimonial-quote em { color: #D9C2B5; }

.testimonial-author {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

.section-dark .testimonial-author { color: rgba(250, 247, 242, 0.65); }

.testimonial-block + .testimonial-block {
  padding-top: 80px;
  border-top: 1px solid var(--hairline);
}

.section-dark .testimonial-block + .testimonial-block { border-color: rgba(250, 247, 242, 0.15); }

/* === KNOWLEDGE HUB CARDS === */

.kb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.kb-card {
  display: block;
  position: relative;
  overflow: hidden;
}

.kb-card-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 24px;
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}

.kb-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.kb-card:hover .kb-card-img img { transform: scale(1.06); }

.kb-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.kb-card-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--clay);
}

.kb-card-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.kb-card h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  margin-bottom: 12px;
  line-height: 1.1;
}

.kb-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 32ch;
}

.kb-card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
}

.kb-card-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.kb-card:hover .kb-card-link::after { transform: translateX(4px); }

/* === CTA === */

.cta {
  background: var(--bg-dark);
  color: var(--bg);
  text-align: center;
  padding: 120px var(--gutter);
  position: relative;
}

.cta h2 {
  color: var(--bg);
  font-size: clamp(44px, 5.6vw, 88px);
  margin-bottom: 36px;
  line-height: 1.02;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.cta h2 em { color: #D9C2B5; }

.cta .lead {
  color: rgba(250, 247, 242, 0.7);
  margin: 0 auto 60px;
  font-size: 18px;
}

.cta-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  border: 1px solid rgba(250, 247, 242, 0.3);
  color: var(--bg);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-link:hover {
  background: var(--bg);
  color: var(--ink);
  opacity: 1;
  border-color: var(--bg);
}

/* === FOOTER === */

.footer {
  background: var(--bg-dark);
  color: rgba(250, 247, 242, 0.7);
  padding: 80px var(--gutter) 48px;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-brand-block {}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--bg);
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.footer-brand em { font-style: italic; color: #D9C2B5; }

.footer-tagline {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.55;
  max-width: 32ch;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; }
.footer-col a {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.7);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4);
}

/* ============================================================
   Inner page styles
   ============================================================ */

.page-hero {
  padding: 140px var(--gutter) 80px;
  position: relative;
}

.page-hero-label { margin-bottom: 36px; display: block; }

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 36px;
}

.page-hero-title em { font-style: italic; color: var(--clay); }

.page-hero-lead {
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

.page-hero-photo {
  margin: 80px calc(-1 * var(--gutter)) 0;
  height: clamp(380px, 60vh, 640px);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 6%, 100% 94%, 0 100%);
}

.page-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.prose h2 {
  margin-top: 64px;
  margin-bottom: 32px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
}

.prose h2:first-child { margin-top: 0; }
.prose h2 em { font-style: italic; color: var(--clay); }

.prose h3 {
  margin-top: 56px;
  margin-bottom: 18px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
}

.prose .lead-prose {
  font-family: var(--font-sans);
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 28px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}

.prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.prose p strong { color: var(--ink); font-weight: 600; }

.prose ul.checklist {
  list-style: none;
  margin: 40px 0;
  border-top: 1px solid var(--hairline);
}

.prose ul.checklist li {
  padding: 24px 0 24px 48px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
}

.prose ul.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 32px;
  width: 28px;
  height: 1px;
  background: var(--clay);
}

/* Healing timeline (clean editorial) */

.healing {
  margin: 80px auto;
  max-width: 900px;
  padding: 0 var(--gutter);
}

.healing-step {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding: 48px 0;
  border-top: 1px solid var(--hairline);
  align-items: start;
}

.healing-step:last-child { border-bottom: 1px solid var(--hairline); }

.healing-step-label {
  position: sticky;
  top: 120px;
}

.healing-step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--clay);
  margin-bottom: 8px;
  display: block;
  letter-spacing: 0;
}

.healing-step-time {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: var(--ink);
}

.healing-step-content h4 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  font-weight: 400;
  line-height: 1.15;
}

.healing-step-content p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
  max-width: 52ch;
}

/* Callout pull quote */

.callout {
  margin: 64px auto;
  max-width: 900px;
  padding: 60px var(--gutter);
  background: var(--bg-dark);
  color: var(--bg);
}

.callout-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D9C2B5;
  font-weight: 500;
  margin-bottom: 24px;
  display: block;
}

.callout p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-style: italic;
  color: var(--bg);
  margin: 0;
}

.callout.soft {
  background: var(--bg-warm);
  color: var(--ink);
}

.callout.soft .callout-label { color: var(--clay); }
.callout.soft p { color: var(--ink); font-style: normal; font-family: var(--font-sans); font-size: 17px; line-height: 1.55; letter-spacing: 0; }

/* Contraindications */

.contra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 80px auto;
  max-width: 1100px;
  padding: 0 var(--gutter);
}

.contra-box {
  background: var(--bg-pure);
  border: 1px solid var(--hairline);
  padding: 56px 48px;
}

.contra-box.no {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.contra-box .label { display: block; margin-bottom: 20px; color: var(--clay); }
.contra-box.no .label { color: #D9C2B5; }

.contra-box h3 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 28px;
  letter-spacing: -0.015em;
}

.contra-box.no h3 { color: var(--bg); }

.contra-box ul { list-style: none; }

.contra-box li {
  padding: 16px 0 16px 36px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.contra-box.no li { color: rgba(250, 247, 242, 0.85); border-bottom-color: rgba(250, 247, 242, 0.12); }
.contra-box li:last-child { border-bottom: none; }

.contra-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 20px;
  height: 1px;
  background: var(--clay);
}

.contra-box.no li::before { background: #D9C2B5; }

/* FAQ */

.faq {
  max-width: 900px;
  margin: 64px auto;
  padding: 0 var(--gutter);
  border-top: 1px solid var(--hairline-strong);
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.015em;
  transition: color 0.2s ease;
  line-height: 1.15;
  cursor: pointer;
}

.faq-q:hover { color: var(--clay); }

.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  position: relative;
  transition: transform 0.4s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
}

.faq-icon::before {
  width: 24px; height: 1px;
  top: 15px; left: 4px;
}

.faq-icon::after {
  width: 1px; height: 24px;
  left: 15px; top: 4px;
  transition: transform 0.4s ease;
}

.faq-item.open .faq-icon::after { transform: rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.4s ease;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 0 40px;
  max-width: 56ch;
}

/* === REVEAL ANIMATIONS === */
/* Default: everything visible. The .js-on class is added by JS in <head>
   — only then do we hide reveals for entry animation. This guarantees
   the site is visible even if JavaScript fails for any reason. */

.js-on .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-on .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js-on .reveal-delay-1 { transition-delay: 0.08s; }
.js-on .reveal-delay-2 { transition-delay: 0.16s; }
.js-on .reveal-delay-3 { transition-delay: 0.24s; }

/* === RESPONSIVE === */

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 120px;
  }
  .hero-photo { aspect-ratio: 16 / 10; max-height: 60vh; }
  .intro { grid-template-columns: 1fr; gap: 32px; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .services { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; gap: 24px; }
  .fears-grid { grid-template-columns: 1fr; gap: 16px; }
  .plan-grid { grid-template-columns: 1fr; gap: 16px; }
  .model-card { grid-template-columns: 1fr; padding: 32px 28px; gap: 24px; }
  .model-card-cta { justify-self: stretch; justify-content: center; }
  .trust-list { gap: 28px 32px; }
  .trust-list li { height: 28px; }
  .trust-list a { height: 28px; }
  .trust-list a img { height: 24px; max-width: 100px; }
  .trust-list a.logo-fallback { font-size: 11px; letter-spacing: 0.18em; }

  .contact-form { margin: 32px 0 24px; gap: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 22px; }
  .btn-form { align-self: stretch; padding: 18px 24px; }
  .form-fallback { font-size: 12px; }
  .gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
  .g1, .g4 { grid-column: span 4; grid-row: span 2; }
  .g2, .g3 { grid-column: span 2; grid-row: span 2; }
  .kb-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 800px) {
  :root { --gutter: 24px; }

  section { padding: 80px 0; }
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 100px var(--gutter) 40px;
    min-height: auto;
  }
  .hero-text { order: 1; }
  .hero-photo { order: 2; aspect-ratio: 4 / 5; max-height: none; }
  .hero-title { font-size: clamp(40px, 10vw, 72px); margin-bottom: 20px; }
  .hero-meta { grid-template-columns: 1fr; padding: 0 var(--gutter); }
  .hero-meta-item { padding: 14px 0; border-right: none; border-bottom: 1px solid var(--hairline); }
  .hero-meta-item:last-child { border-bottom: none; }
  .hero-meta-num { font-size: 22px; }

  /* Hero trust + CTA on mobile */
  .hero-trust { grid-template-columns: 1fr; gap: 10px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; padding: 18px 24px; }

  /* Service cards on mobile */
  .svc-card-body { padding: 28px 28px 32px; }
  .svc-card-meta { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .services-intro { margin-bottom: 40px; }

  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 32px var(--gutter);
    gap: 24px;
    border-bottom: 1px solid var(--hairline);
    align-items: flex-start;
  }
  .nav-toggle { display: block; }

  .process { grid-template-columns: 1fr; gap: 16px; }
  .process-link { min-width: auto; padding: 16px 0; }
  .process-link::before { inset: 0 50% 0 50%; width: 1px; height: 100%; }

  .tools { grid-template-columns: 1fr; }
  .tool { border-right: none; padding: 28px 24px; }

  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .g1, .g4 { grid-column: span 2; grid-row: span 1; }
  .g2, .g3 { grid-column: span 1; grid-row: span 1; }

  .kb-grid { grid-template-columns: 1fr; }

  .contra { grid-template-columns: 1fr; }
  .contra-box { padding: 40px 32px; }

  .healing-step { grid-template-columns: 1fr; gap: 12px; }
  .healing-step-label { position: static; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { font-size: 36px; }

  .service-card-content { padding: 32px; }

  .page-hero { padding: 140px var(--gutter) 60px; }
  .page-hero-title { font-size: clamp(56px, 14vw, 96px); }

  .callout { padding: 40px 28px; margin: 40px auto; }
}
