/* RESET + TOKENS */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #FBF8F3;
  color: #1F1B16;
  font-size: 16px;
  line-height: 1.5;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; list-style: none; }

:root {
  --cream: #FBF8F3;
  --creamdeep: #F4EEE3;
  --ink: #1F1B16;
  --ink-soft: #5C554C;
  --line: #E8E2D8;
  --terracotta: #B4623B;
  --terracotta-soft: #E8C9B6;
  --brown: #3A2C20;
  --brown-soft: #5A4333;
}

/* UTILITIES */
.hidden { display: none; }
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:inline-flex { display: inline-flex; }
}
.text-sm { font-size: 14px; }
.text-center { text-align: center; }
.items-center { align-items: center; }
.gap-8 { gap: 32px; }
.antialiased { -webkit-font-smoothing: antialiased; }

/* TYPOGRAPHY */
.serif { font-family: 'Fraunces', Georgia, serif; font-optical-sizing: auto; }
.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.03;
  font-size: clamp(42px, 7vw, 80px);
  margin: 0;
}
.display-2 { font-size: clamp(32px, 4.5vw, 52px); margin: 24px 0 0; }
.display-big { font-size: clamp(38px, 6vw, 68px); margin: 0; }

.serif-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.01em;
  margin: 0;
}
.serif-title-sm {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.eyebrow-light { color: rgba(232, 201, 182, 0.85); }
.eyebrow-accent { color: var(--terracotta); }
/* Hero eyebrow — slightly larger and more prominent */
.hero .eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.lead {
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.58;
  color: var(--ink-soft);
  margin: 32px 0 0;
  max-width: 36em;
}
.lead-afterlist { margin-top: 48px; }
.lead-light { color: rgba(251, 248, 243, 0.75); margin: 32px auto 0; max-width: 32em; }
.max-prose { max-width: 42em; }

/* LAYOUT */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* Sticky nav: visible while scrolling. Mobile: burger-menu via CSS checkbox hack */
.nav-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.site-nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 768px) { .site-nav-inner { padding: 18px 40px; } }

.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform .22s, opacity .15s;
  transform-origin: center;
}
.nav-toggle-input:checked ~ .site-nav .nav-toggle-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle-input:checked ~ .site-nav .nav-toggle-btn span:nth-child(2) { opacity: 0; }
.nav-toggle-input:checked ~ .site-nav .nav-toggle-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}

@media (max-width: 767px) {
  .nav-toggle-btn { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 0;
    border-top: 1px solid var(--line);
    box-shadow: 0 16px 32px -12px rgba(31, 27, 22, 0.12);
    font-size: 16px;
  }
  .nav-menu .navlink {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-menu .nav-cta {
    margin-top: 18px;
    justify-content: center;
  }
  .nav-toggle-input:checked ~ .site-nav .nav-menu { display: flex; }
}

.brand { font-size: 18px; letter-spacing: -0.01em; }
.navlink { color: var(--ink-soft); transition: color .2s; }
.navlink:hover { color: var(--terracotta); }

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition: all .2s ease;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--cream); border: none; }
.btn-primary:hover { background: var(--terracotta); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn-primary-shrink { flex-shrink: 0; }

.btn-on-dark { background: var(--cream); color: var(--ink); }
.btn-on-dark:hover { background: var(--terracotta-soft); color: var(--ink); }
.btn-on-dark-sec { border-color: var(--cream); color: var(--cream); }
.btn-on-dark-sec:hover { background: var(--cream); color: var(--ink); }

/* SECTIONS */
.section { padding: 96px 0; }
.section-soft { padding: 96px 0; background: var(--creamdeep); }
@media (min-width: 768px) {
  .section { padding: 128px 0; }
  .section-soft { padding: 128px 0; }
}

/* HERO */
.hero {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}
@media (min-width: 768px) {
  .hero { padding: 96px 40px 128px; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.3fr 1fr; gap: 80px; }
}
.hero-cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badge {
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-soft);
}
.hero-portrait { order: -1; }
@media (min-width: 900px) { .hero-portrait { order: 0; } }
.portrait-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 420px;
  margin: 0 auto;
}
.portrait-wrap.portrait-small {
  max-width: 340px;
}
@media (min-width: 900px) {
  .portrait-wrap.portrait-small { max-width: 300px; margin-left: auto; }
}
.portrait-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}
.portrait-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(58, 44, 32, 0.12));
  pointer-events: none;
}

/* ACCENT UNDERLINE */
.accent-underline {
  background-image: linear-gradient(to top, rgba(180, 98, 59, 0.22) 34%, transparent 34%);
  background-repeat: no-repeat;
}

/* ANIMATIONS */
.fade-in { animation: fade 1.1s cubic-bezier(.2,.7,.2,1) both; }
@keyframes fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.pulse-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--terracotta);
  margin-right: 10px;
  vertical-align: middle;
  animation: pulsed 1.8s ease-in-out infinite;
}
@keyframes pulsed {
  0%, 100% { opacity: .35; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}

/* DIVIDER */
.divider {
  height: 1px;
  background: var(--line);
  width: 72px;
  margin: 28px 0;
}

/* LEAD CALLOUT — emphasised para under need list */
.lead-callout {
  margin: 64px 0 0;
  max-width: 760px;
  padding: 28px 32px;
  background: var(--cream);
  border-left: 3px solid var(--terracotta);
  border-radius: 4px 16px 16px 4px;
}
.lead-callout p {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* NEED LIST V2 — 2-column, terracotta dot bullets */
.need-list-v2 {
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 56px;
  max-width: 1040px;
}
@media (min-width: 900px) {
  .need-list-v2 { grid-template-columns: 1fr 1fr; }
}
.need-list-v2 li {
  position: relative;
  padding-left: 32px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(17px, 1.15vw, 20px);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.003em;
}
/* Larger variant */
.need-list-v2-lg li {
  font-size: clamp(19px, 1.35vw, 23px);
  line-height: 1.45;
}
.scenarios-intro {
  margin: 32px 0 12px;
  color: var(--ink-soft);
  font-style: italic;
}
.need-list-v2 li::before {
  content: '';
  position: absolute;
  left: 4px; top: 11px;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--terracotta);
  opacity: 0.85;
}

/* LEAD CALLOUT BIG — prominent pullquote for "У каждого свой вход" */
.lead-callout-big {
  margin: 80px auto 0;
  max-width: 900px;
  text-align: center;
  padding: 48px 40px;
  background: linear-gradient(180deg, rgba(232, 201, 182, 0.35) 0%, rgba(232, 201, 182, 0.15) 100%);
  border-radius: 24px;
  position: relative;
}
.lead-callout-big::before,
.lead-callout-big::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--terracotta);
}
.lead-callout-big::before { top: 0; }
.lead-callout-big::after { bottom: 0; }
.callout-eyebrow {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.callout-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.5;
  color: var(--ink);
  margin: 16px 0 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  font-weight: 300;
}
@media (min-width: 768px) {
  .lead-callout-big { padding: 64px 56px; }
}

/* NEED LIST (single column, prominent) — deprecated fallback */
.need-list {
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 820px;
  counter-reset: need;
}
.need-list li {
  position: relative;
  padding-left: 56px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
  color: var(--ink);
  counter-increment: need;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.need-list li::before {
  content: counter(need, decimal-leading-zero);
  position: absolute;
  left: 0; top: 4px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--terracotta);
  letter-spacing: 0.02em;
}
.need-list li::after {
  content: '';
  position: absolute;
  left: 32px; top: 16px;
  width: 12px; height: 1px;
  background: var(--terracotta);
}

/* METHOD CARDS */
.method-grid {
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .method-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.method-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.method-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.method-card-link:hover .method-card,
.method-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -12px rgba(31, 27, 22, 0.15);
}
.method-card-link:hover .card-link {
  color: var(--ink);
  letter-spacing: 0.005em;
}
.method-illustration {
  width: 80px; height: 80px;
  margin-bottom: 24px;
}
.method-illustration svg { width: 100%; height: 100%; }
.card-body {
  color: var(--ink-soft);
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
}
.card-note {
  color: var(--ink-soft);
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.55;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-style: italic;
}
.card-link {
  margin-top: auto;
  padding-top: 28px;
  font-size: 14px;
  color: var(--terracotta);
  font-weight: 500;
  transition: all .2s;
}
.card-link:hover { color: var(--ink); letter-spacing: 0.005em; }

/* COMMON FRAME */
.common-frame { margin: 72px 0 0; max-width: 42em; }
.common-body {
  color: var(--ink-soft);
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.65;
}
.common-frame-new {
  margin: 96px 0 0;
}
.common-frame-inner {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--terracotta);
  border-radius: 4px 20px 20px 4px;
  padding: 40px 44px;
  max-width: 820px;
}
@media (min-width: 768px) {
  .common-frame-inner { padding: 48px 56px; }
}
.common-body-big {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  margin: 16px 0 0;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.5;
  letter-spacing: -0.005em;
}

/* SERVICES */
.services-grid {
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 1100px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.service-card .divider { background: var(--line); }
.service-card.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.service-card.featured .divider { background: rgba(232, 201, 182, 0.22); }
.service-card.featured .price-suffix { color: rgba(232, 201, 182, 0.6); }
.service-card.featured .service-meta { color: rgba(232, 201, 182, 0.7); }
.service-card.featured .service-desc { color: rgba(251, 248, 243, 0.82); }

.service-desc { color: var(--ink-soft); font-size: 14px; margin: 12px 0 0; line-height: 1.55; }
@media (min-width: 768px) {
  .service-card:not(.featured) .service-desc { min-height: 175px; }
}
.service-meta { text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; color: var(--ink-soft); margin: 0; }
.price-tag { font-family: 'Fraunces', Georgia, serif; font-weight: 500; font-size: 30px; margin: 12px 0 0; font-variant-numeric: tabular-nums; }
.price-small { font-size: 20px; margin-top: 4px; }
.price-suffix { font-size: 14px; color: var(--ink-soft); font-weight: 400; }
.price-tag.price-compact { line-height: 1; }
.price-note { font-size: 14px; color: var(--ink-soft); font-weight: 400; margin: 2px 0 0; line-height: 1.3; }
.price-tag.price-compact + .price-note { margin-top: 2px; }
.price-note + .price-tag { margin-top: 10px; }

.service-actions { margin-top: auto; padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.service-link { color: var(--terracotta); font-size: 13px; font-weight: 500; }
.service-link:hover { color: var(--ink); }
.service-link-light { color: var(--terracotta-soft); font-size: 13px; font-weight: 500; }
.service-link-light:hover { color: var(--cream); }
.service-link-sec { color: var(--ink-soft); font-size: 13px; }
.service-link-sec:hover { color: var(--terracotta); }
.service-link-sec-light { color: rgba(232, 201, 182, 0.7); font-size: 13px; }
.service-link-sec-light:hover { color: var(--cream); }

/* FREE BANNER */
.free-banner {
  margin: 56px 0 0;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .free-banner { flex-direction: row; align-items: center; padding: 36px 40px; gap: 40px; }
}
.free-banner-text { flex: 1; }
.free-banner-desc { color: var(--ink-soft); margin: 12px 0 0; max-width: 520px; font-size: 15px; line-height: 1.55; }

/* ABOUT — Variant A: portrait + methods left, bio right */
.about-grid-a {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .about-grid-a {
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start;
  }
}
.about-side {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.about-side .portrait-wrap { max-width: none; margin: 0; }
.about-side .channel-link { margin-top: 20px; }
.about-side-top { display: flex; flex-direction: column; }

/* Mobile: break aside into direct grid children so we can reorder */
@media (max-width: 899px) {
  .about-side { display: contents; }
  .about-side-top { order: 1; }
  .about-main { order: 2; }
  .about-side-bottom { order: 3; }
}

.methods-accordion {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.methods-heading {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 4px;
  padding-top: 20px;
}
.method-item {
  border-bottom: 1px solid var(--line);
}
.method-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: color .15s;
}
.method-item summary::-webkit-details-marker { display: none; }
.method-item summary:hover { color: var(--terracotta); }
.method-item summary:hover .method-plus { border-color: var(--terracotta); color: var(--terracotta); }
.method-plus {
  display: inline-flex;
  width: 20px; height: 20px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--ink-soft);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s, border-color .15s, color .15s;
}
.method-name { flex: 1; }
.method-item[open] > summary { color: var(--terracotta); }
.method-item[open] > summary .method-plus {
  transform: rotate(45deg);
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.method-text {
  padding: 4px 0 20px 32px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.method-text p { margin: 0 0 12px; }
.method-text p:last-child { margin-bottom: 0; }
.method-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.method-text ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}
.method-text ul li:last-child { margin-bottom: 0; }
.method-text ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 10px; height: 1px;
  background: var(--terracotta);
}
.method-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: letter-spacing .2s;
}
.method-more-link:hover { letter-spacing: 0.005em; }

.methods-additional {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.additional-heading {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.additional-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.about-main { min-width: 0; }
.about-main .divider { margin: 24px 0 32px; }

/* ABOUT — Variant B (previous, kept for fallback) */
.about-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about-header {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
}
.about-header-portrait {
  flex-shrink: 0;
  width: 100%;
  max-width: 220px;
}
@media (min-width: 768px) {
  .about-header-portrait { width: 220px; }
}
.about-header-portrait .portrait-wrap {
  max-width: none;
  margin: 0;
}
.about-header-intro { flex: 1; min-width: 0; }
.about-header-intro .display-2 { margin: 8px 0 0; }
.about-header-intro .channel-link { margin-top: 20px; }

.about-divider {
  max-width: 820px;
  margin: 40px auto;
}

.about-body {
  max-width: 720px;
  margin: 0 auto;
}
.about-body .about-text { margin-top: 0; }

/* Expertise tabs — CSS-only via radio buttons */
.about-expertise {
  max-width: 960px;
  margin: 0 auto;
}
.expertise-heading {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
  color: var(--ink);
}
@media (min-width: 768px) {
  .expertise-heading { font-size: 40px; }
}
.expertise-tabs { position: relative; }
.tab-radio { position: absolute; opacity: 0; pointer-events: none; }
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  justify-content: center;
  margin: 0 auto 40px;
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 8px;
  cursor: pointer;
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .15s, border-color .15s;
  user-select: none;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--ink); }
.tab-plus {
  display: inline-flex;
  width: 20px; height: 20px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s;
}
.tab-panel {
  display: none;
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}
.tab-panel p { margin: 0 0 16px; }
.tab-panel p:last-child { margin-bottom: 0; }

#exp-mr:checked    ~ .panel-mr,
#exp-astro:checked ~ .panel-astro,
#exp-taro:checked  ~ .panel-taro,
#exp-neuro:checked ~ .panel-neuro,
#exp-narra:checked ~ .panel-narra { display: block; }

#exp-mr:checked    ~ .tab-nav label[for="exp-mr"],
#exp-astro:checked ~ .tab-nav label[for="exp-astro"],
#exp-taro:checked  ~ .tab-nav label[for="exp-taro"],
#exp-neuro:checked ~ .tab-nav label[for="exp-neuro"],
#exp-narra:checked ~ .tab-nav label[for="exp-narra"] {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}
#exp-mr:checked    ~ .tab-nav label[for="exp-mr"] .tab-plus,
#exp-astro:checked ~ .tab-nav label[for="exp-astro"] .tab-plus,
#exp-taro:checked  ~ .tab-nav label[for="exp-taro"] .tab-plus,
#exp-neuro:checked ~ .tab-nav label[for="exp-neuro"] .tab-plus,
#exp-narra:checked ~ .tab-nav label[for="exp-narra"] .tab-plus {
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .tab-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tab-nav::-webkit-scrollbar { display: none; }
  .tab-btn { flex-shrink: 0; font-size: 14px; }
}
.channel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-soft);
  transition: color .2s;
}
.channel-link:hover { color: var(--terracotta); }

.about-text {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}
.about-text p { margin: 0; }

/* FINAL CTA — warm brown */
.final-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 0;
}
@media (min-width: 768px) { .final-cta { padding: 128px 0; } }
.final-cta-consent {
  margin: 24px auto 0;
  max-width: 520px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(232, 201, 182, 0.55);
}
.final-cta-consent a {
  color: rgba(232, 201, 182, 0.85);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .2s;
}
.final-cta-consent a:hover { color: var(--cream); }

.final-cta-actions {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* FOOTER */
.site-footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.footer-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-soft);
}
@media (min-width: 768px) { .footer-row { flex-direction: row; align-items: center; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr auto; gap: 48px; align-items: start; }
}
.footer-col a { transition: color .2s; color: inherit; }
.footer-col a:hover { color: var(--terracotta); }
.footer-col-brand .footer-brand { font-size: 16px; color: var(--ink); margin: 0 0 4px; }
.footer-col-brand .footer-tag { margin: 0; }

.footer-legal-info {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-soft);
  opacity: 0.78;
}
.footer-legal-info p { margin: 0 0 2px; }
.footer-legal-info p:last-child { margin-bottom: 0; }

.footer-col-links { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 768px) { .footer-col-links { align-items: flex-end; text-align: right; } }
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  transition: color .2s;
}
.footer-link:hover { color: var(--ink); }
.footer-link:hover .footer-link-icon { color: var(--terracotta-dark, #8a4a2a); }
.footer-link-icon {
  color: var(--terracotta);
  flex-shrink: 0;
  transition: color .2s;
}
.footer-brand { font-size: 16px; color: var(--ink); margin: 0; }
.footer-tag { margin: 4px 0 0; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: var(--terracotta); }

.footer-legal-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  justify-content: space-between;
}
@media (min-width: 768px) { .footer-legal-row { flex-direction: row; align-items: center; } }
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 13px;
}
.footer-legal-links a { color: var(--ink-soft); transition: color .2s; }
.footer-legal-links a:hover { color: var(--terracotta); }
.footer-legal-links span { color: var(--line); user-select: none; }
.footer-copyright { color: var(--ink-soft); font-size: 13px; }

/* 404 page */
.not-found-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 24px 128px;
  text-align: center;
}
@media (min-width: 768px) { .not-found-page { padding: 140px 40px 160px; } }
.not-found-code {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 300;
  line-height: 1;
  color: var(--terracotta);
  margin: 0 0 8px;
  letter-spacing: -0.04em;
}
.not-found-page h1 {
  margin: 0 0 24px;
  font-size: clamp(32px, 4vw, 56px);
}
.not-found-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 40px;
}
.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Legal pages layout */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
@media (min-width: 768px) {
  .legal-page { padding: 80px 40px 120px; }
}
.legal-page .eyebrow { margin: 0 0 12px; }
.legal-page .display-2 { margin: 8px 0 8px; font-size: clamp(28px, 3vw, 40px); }
.legal-page .legal-meta { color: var(--ink-soft); margin: 0 0 40px; font-size: 14px; }
.legal-page h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  margin: 40px 0 12px;
  color: var(--ink);
  line-height: 1.3;
}
.legal-page p, .legal-page li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}
.legal-page p { margin: 0 0 14px; }
.legal-page ul, .legal-page ol {
  margin: 12px 0 20px;
  padding-left: 24px;
}
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--terracotta); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-page a:hover { text-decoration: none; }

/* METHOD DETAIL PAGE */
.method-hero {
  padding: 64px 0 48px;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 24px; padding-right: 24px;
}
@media (min-width: 768px) { .method-hero { padding-left: 40px; padding-right: 40px; padding-top: 80px; } }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 40px;
  transition: color .2s;
}
.back-link:hover { color: var(--terracotta); }

.method-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) {
  .method-layout { grid-template-columns: 1fr 1.6fr; gap: 80px; }
}

.method-hero-illustration {
  background: var(--creamdeep);
  border-radius: 24px;
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.method-hero-illustration svg { width: 70%; max-width: 280px; }

.method-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(26px, 2.5vw, 32px);
  letter-spacing: -0.01em;
  margin: 56px 0 16px;
  line-height: 1.15;
}
.method-content p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 40em;
}
.method-content p.soft { color: var(--ink-soft); }
.method-content ul.details { margin: 12px 0 24px; }
.method-content ul.details li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.method-content ul.details li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--terracotta);
}
.method-content blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--terracotta);
  background: var(--creamdeep);
  border-radius: 0 16px 16px 0;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
}

.faq {
  margin: 16px 0 24px;
  max-width: 46em;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px 22px 28px;
  background: var(--cream);
  margin-bottom: 12px;
  transition: all .2s;
}
.faq details:hover {
  border-color: var(--ink-soft);
}
.faq details[open] {
  border-color: var(--terracotta);
  background: #fff;
  box-shadow: 0 4px 18px -10px rgba(180, 98, 59, 0.15);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  padding-right: 52px;
  position: relative;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.faq summary:hover { color: var(--terracotta); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  color: var(--cream);
  background: var(--terracotta);
  border-radius: 999px;
  line-height: 1;
  font-weight: 300;
  transition: all .25s;
}
.faq details[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}
.faq details:hover summary::after { background: var(--ink); }
.faq .faq-body {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.faq .faq-body p {
  font-size: 16px !important;
  margin-bottom: 12px !important;
  color: var(--ink);
  line-height: 1.65;
  max-width: none !important;
  font-family: 'Inter', system-ui, sans-serif !important;
}
.faq .faq-body p:last-child { margin-bottom: 0 !important; }

.method-cta-card {
  margin-top: 64px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .method-cta-card { flex-direction: row; align-items: center; justify-content: space-between; padding: 32px 40px; }
}
.cta-meta { font-size: 13px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.16em; margin: 0 0 8px; }
.cta-price { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 500; margin: 0; }
.cta-price .small { font-size: 14px; color: var(--ink-soft); font-weight: 400; }
