/* ============================================================
   KARINA VOCAL — production CSS
   Fonts: Caveat (script accents) + Manrope (body)
   ============================================================ */

:root {
  --bg:        #FAF6F1;
  --bg-alt:    #F2D7C9;
  --text:      #2B2422;
  --text-soft: #6B5D54;
  --accent:    #C8553D;
  --accent-dk: #a8432d;
  --accent-2:  #E8C4A0;
  --line:      #E5DDD2;

  --font-script: 'Caveat', cursive;
  --font-text:   'Manrope', system-ui, sans-serif;

  --fs-h1:   clamp(40px, 8vw, 80px);
  --fs-h2:   clamp(32px, 5vw, 56px);
  --fs-h3:   clamp(22px, 3vw, 32px);
  --fs-body: clamp(16px, 1.1vw + 14px, 19px);
  --fs-cap:  14px;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;

  --space-section: clamp(80px, 12vw, 200px);
  --ease-main: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: var(--font-text);
  font-size: var(--fs-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Paper noise texture */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; top: -48px; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 20px; border-radius: var(--r-sm);
  font-family: var(--font-text); font-size: 14px; font-weight: 500;
  z-index: 10000; transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 8px; outline: 3px solid var(--text); outline-offset: 2px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-text);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

.h1-accent {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--accent);
  font-size: 1.18em;
  display: inline-block;
  transform: rotate(-2deg);
  transform-origin: left center;
  line-height: 1;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dk); }

/* ---------- Layout ---------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.container-narrow { max-width: 720px; }

.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.section-title {
  font-size: var(--fs-h2);
  margin-bottom: clamp(20px, 3vw, 40px);
}

.section-lead, .section-subtitle {
  font-size: var(--fs-body);
  color: var(--text-soft);
  max-width: 640px;
  margin-bottom: clamp(32px, 4vw, 56px);
  line-height: 1.7;
}

.section-cta { margin-top: clamp(32px, 4vw, 56px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-text); font-size: 15px; font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--r-md);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: transform 150ms ease-out, background 150ms ease-out;
  position: relative;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-dk);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-large { padding: 18px 40px; font-size: 17px; width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: 64px;
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--font-text);
  font-size: 15px; font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
}

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

.main-nav a {
  font-size: 14px; font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 200ms;
}
.main-nav a:hover, .main-nav a.nav-cta { color: var(--accent); }

.main-nav .nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 8px 20px;
  border-radius: var(--r-sm);
  transition: background 150ms, transform 150ms ease-out;
}
.main-nav .nav-cta:hover { background: var(--accent-dk); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px; justify-content: center;
  background: none; border: none; cursor: pointer;
  padding: 8px; width: 36px; height: 36px;
}
.menu-toggle span {
  display: block; height: 1.5px; width: 22px;
  background: var(--text);
  transition: transform 200ms, opacity 200ms;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(48px, 8vw, 120px);
  padding-bottom: clamp(48px, 6vw, 80px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.hero-text { max-width: 720px; }

.prehead {
  display: block;
  font-size: var(--fs-cap);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.hero h1 {
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-sub {
  font-size: clamp(17px, 1.4vw + 14px, 22px);
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.hero-actions {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 20px;
  margin-bottom: 20px;
}

.link-tg {
  font-size: 15px; font-weight: 500;
  color: var(--text-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 200ms;
}
.link-tg:hover { color: var(--accent); }

.hero-note {
  font-size: var(--fs-cap);
  color: var(--text-soft);
  display: flex; align-items: center; gap: 10px;
}
.sep {
  display: inline-block;
  width: 1px; height: 8px;
  background: var(--text-soft);
  opacity: 0.5;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 480px;
}

.hero-photo {
  position: absolute;
  top: -clamp(48px, 8vw, 120px);
  right: -clamp(20px, 4vw, 48px);
  bottom: -clamp(48px, 6vw, 80px);
  left: 0;
  background: var(--bg-alt);
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

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

.placeholder-img {
  font-size: 13px; color: var(--text-soft);
  padding: 24px; text-align: center;
}

.hero-signature {
  display: block;
  margin-top: 24px;
  width: clamp(160px, 20vw, 220px);
  color: var(--text-soft);
  opacity: 0.65;
}

/* ---------- Wave Dividers ---------- */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}
.wave-divider svg {
  display: block;
  width: 100%; height: 32px;
}

/* ---------- Video ---------- */
.section-video .section-title {
  font-style: italic;
  font-weight: 500;
  max-width: 700px;
}

.video-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--text);
  aspect-ratio: 16/9;
  max-width: 900px;
}

.video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.video-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt);
  color: var(--text-soft); font-size: 14px;
  border-radius: var(--r-lg);
}

.video-caption {
  margin-top: 16px;
  font-size: var(--fs-cap);
  color: var(--text-soft);
  font-style: italic;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.about-visual {
  position: sticky; top: 80px;
}

.about-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-bio p { margin-bottom: 20px; color: var(--text); line-height: 1.75; }
.about-bio p:last-child { margin-bottom: 0; }

.about-facts {
  list-style: none;
  margin: 28px 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.about-facts li {
  font-size: var(--fs-cap);
  color: var(--text-soft);
  padding: 8px 0 8px 16px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.about-facts li::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- Manifesto Full-Bleed ---------- */
.manifesto-fullbleed {
  background: var(--bg-alt);
  padding: clamp(60px, 10vw, 140px) clamp(20px, 4vw, 48px);
  text-align: center;
}

.manifesto-inner {
  display: inline-block;
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-inner p {
  font-family: var(--font-script);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  font-style: normal;
  margin-bottom: 20px;
}

.manifesto-inner cite {
  display: block;
  font-family: var(--font-text);
  font-style: normal;
  font-size: var(--fs-cap);
  color: var(--text-soft);
  letter-spacing: 0.05em;
}

/* ---------- Results / Cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.result-card {
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  border-bottom: 1px solid var(--line);
  transition: background 300ms var(--ease-main);
  position: relative;
}

.result-card:nth-child(-n+3) { border-top: 1px solid var(--line); }
.result-card:not(:nth-child(3n)) { border-right: 1px solid var(--line); }

@media (min-width: 769px) {
  .result-card:hover { background: rgba(242, 215, 201, 0.3); }
  .result-card:hover .result-icon svg { transform: rotate(8deg); }
}

.result-icon {
  width: 40px; height: 40px;
  margin-bottom: 16px;
  color: var(--accent);
  display: flex; align-items: center;
}
.result-icon svg {
  width: 24px; height: 24px;
  transition: transform 300ms var(--ease-main);
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-card h3 {
  font-size: clamp(17px, 1.5vw, 21px);
  margin-bottom: 10px;
  font-weight: 600;
}
.result-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ---------- Audio Section ---------- */
.section-audio {
  background: var(--bg-alt);
}

.audio-cards { display: flex; flex-direction: column; gap: var(--space-section); }

.audio-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.audio-name {
  font-family: var(--font-script);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 12px;
}
.audio-age { font-size: 0.7em; }

.audio-story {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}

.audio-footnote {
  font-size: var(--fs-cap);
  color: var(--accent);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.audio-waves { display: flex; flex-direction: column; gap: 12px; }

.audio-track {
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 16px 20px;
  transition: opacity 300ms;
}
.audio-track.dimmed { opacity: 0.4; }

.track-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}

.track-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-soft);
  background: var(--line);
  padding: 3px 10px; border-radius: 100px;
}
.track-label--after {
  color: var(--bg);
  background: var(--accent);
}

.track-date { font-size: var(--fs-cap); color: var(--text-soft); }

.waveform-wrap {
  width: 100%; height: 64px;
  overflow: hidden; border-radius: 4px;
  position: relative; margin-bottom: 10px;
}

.waveform-svg {
  width: 100%; height: 64px;
  display: block;
}

.wf-base {
  fill: none;
  stroke: var(--line);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.wf-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  clip-path: inset(0 100% 0 0);
}

.track-controls {
  display: flex; align-items: center; gap: 12px;
}

.play-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 150ms ease-out, background 150ms;
}
.play-btn:hover { background: var(--accent-dk); transform: scale(1.08); }
.play-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.track-duration {
  font-size: var(--fs-cap);
  color: var(--text-soft);
  font-variant-numeric: tabular-nums;
}

.disclaimer {
  margin-top: var(--space-section);
  font-size: var(--fs-cap);
  color: var(--text-soft);
  font-style: italic;
  max-width: 560px;
}

/* ---------- Trial Steps ---------- */
.section-trial > .container { max-width: 800px; margin: 0 auto; }

.steps-list {
  list-style: none;
  position: relative;
  margin-top: clamp(40px, 5vw, 72px);
}

.steps-list::before {
  content: "";
  position: absolute;
  left: 2.2rem;
  top: 0; bottom: 0;
  width: 1px;
  border-left: 1.5px dashed rgba(200, 85, 61, 0.35);
  z-index: 0;
}

.step-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: clamp(16px, 2.5vw, 32px);
  align-items: start;
  padding-bottom: clamp(32px, 5vw, 56px);
  position: relative;
}
.step-item:last-child { padding-bottom: 0; }

.step-num {
  font-family: var(--font-script);
  font-size: 5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 0.85;
  display: block;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: -10px;
}

.step-body { padding-top: 6px; }
.step-body h3 { font-size: clamp(18px, 2vw, 22px); margin-bottom: 8px; font-weight: 600; }
.step-body p { color: var(--text-soft); line-height: 1.7; }

.step-time {
  font-style: normal;
  font-size: var(--fs-cap);
  color: var(--accent);
  font-weight: 600;
}

.trial-afterword {
  margin-top: clamp(32px, 4vw, 56px);
  padding: 24px 28px;
  border-left: 3px solid var(--accent-2);
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- Formats ---------- */
.format-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}

.format-card {
  padding: clamp(28px, 3.5vw, 48px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--bg);
}

.format-card h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.format-card dl { margin-bottom: 28px; }
.format-card dt {
  font-size: var(--fs-cap); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 4px; margin-top: 20px;
}
.format-card dt:first-child { margin-top: 0; }
.format-card dd { color: var(--text); line-height: 1.65; font-size: 15px; }

.formats-afterword {
  margin-top: clamp(28px, 3vw, 48px);
  text-align: center;
  color: var(--text-soft);
  font-size: 15px;
  font-style: italic;
}

/* ---------- Reviews ---------- */
.reviews-scroll { }

.reviews-grid {
  column-count: 3;
  column-gap: clamp(16px, 2.5vw, 24px);
}

.review-card {
  break-inside: avoid;
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 32px;
  margin-bottom: clamp(16px, 2vw, 24px);
  box-shadow: 0 2px 20px rgba(43, 36, 34, 0.06);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "\00AB";
  position: absolute;
  top: -4px; left: 20px;
  font-family: var(--font-script);
  font-size: 80px;
  color: var(--accent-2);
  opacity: 0.4;
  line-height: 1;
  pointer-events: none;
  font-weight: 700;
}

.review-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}

.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-text); font-size: 11px; font-weight: 700;
  color: var(--text-soft);
  flex-shrink: 0;
}

.review-meta cite { display: block; font-style: normal; font-weight: 600; font-size: 14px; }
.review-meta .review-tags { display: block; font-size: 12px; color: var(--text-soft); margin-top: 2px; }

.review-card > p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  position: relative; z-index: 1;
}

/* ---------- FAQ ---------- */
.faq-list { margin-top: clamp(32px, 4vw, 56px); }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--font-text);
  font-size: clamp(17px, 1.2vw + 14px, 20px);
  font-weight: 600;
  color: var(--text);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  user-select: none;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary:hover { color: var(--accent); }

.faq-item summary::after {
  content: "";
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text-soft);
  flex-shrink: 0;
  transition: transform 200ms ease-in-out, width 200ms ease-in-out, background 200ms;
}
.faq-item[open] summary::after {
  width: 12px;
  background: var(--accent);
}

.faq-item > p {
  padding: 0 0 24px 24px;
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 15px;
}

.faq-cta {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: clamp(32px, 4vw, 56px);
}

/* ---------- Form ---------- */
.lead-form {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 4px 32px rgba(43, 36, 34, 0.08);
  margin-top: clamp(28px, 4vw, 48px);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
}
.form-row .form-field { margin-bottom: 0; }

.form-field label {
  font-size: var(--fs-cap);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
  transition: color 200ms;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-text);
  font-size: 16px;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line);
  padding: 10px 0;
  outline: none;
  transition: border-color 200ms, border-width 200ms;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--accent);
  border-bottom-width: 2px;
}
.form-field textarea { resize: vertical; min-height: 80px; }

.form-checkbox {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}
.form-checkbox input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }
.form-checkbox label {
  font-size: 13px; letter-spacing: 0; text-transform: none;
  font-weight: 400; color: var(--text-soft); margin: 0;
}
.form-checkbox a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

.form-actions { margin-bottom: 16px; }

.form-note {
  font-size: var(--fs-cap);
  color: var(--text-soft);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 64px) clamp(24px, 4vw, 48px);
  text-align: center;
  margin-top: clamp(28px, 4vw, 48px);
  animation: successFade 250ms var(--ease-main) both;
}

.form-success-title {
  font-family: var(--font-script);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.form-success p { color: var(--text-soft); line-height: 1.7; }

@keyframes successFade {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--text);
  color: var(--bg);
  padding: clamp(48px, 7vw, 96px) 0 clamp(32px, 4vw, 48px);
  margin-top: var(--space-section);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.footer-signature {
  display: block;
  width: 160px; height: auto;
  color: var(--bg-alt);
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-copy {
  font-size: var(--fs-cap);
  color: rgba(250, 246, 241, 0.45);
  line-height: 1.6;
  margin-top: 8px;
}

.footer-contacts p,
.footer-legal p { margin-bottom: 10px; }

.footer-contacts a,
.footer-legal a {
  font-size: 14px;
  color: rgba(250, 246, 241, 0.75);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 200ms;
}
.footer-contacts a:hover,
.footer-legal a:hover { color: var(--bg); }

/* ---------- Scroll Reveal (ink-fade) ---------- */
.reveal {
  opacity: 0;
  clip-path: inset(0 0 12% 0);
  transition: opacity 400ms var(--ease-main), clip-path 400ms var(--ease-main);
}
.reveal.visible {
  opacity: 1;
  clip-path: inset(0 0 0% 0);
}

/* ---------- Signature Animation ---------- */
.sig-path {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
}
.sig-path.animated {
  animation: drawSig 600ms ease-out forwards;
}
@keyframes drawSig {
  to { stroke-dashoffset: 0; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.visible { opacity: 1; clip-path: none; transition: none; }
  .sig-path, .sig-path.animated { animation: none !important; stroke-dashoffset: 0 !important; }
  .btn, .play-btn, .result-icon svg, .main-nav .nav-cta { transition: none !important; }
  @keyframes successFade { from { opacity: 1; transform: none; } }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .reviews-grid { column-count: 2; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .result-card:not(:nth-child(2n)) { border-right: 1px solid var(--line); }
  .result-card:nth-child(2n) { border-right: none; }
  .audio-card { grid-template-columns: 220px 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0;
    padding: 8px 0 16px;
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 24px; width: 100%; font-size: 15px; }
  .main-nav .nav-cta {
    margin: 8px 24px 0; width: calc(100% - 48px);
    text-align: center; justify-content: center;
    padding: 12px 20px;
  }
  .menu-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 0; }
  .hero-photo {
    position: relative; top: 0; right: 0; bottom: 0; left: 0;
    height: 300px;
    margin: 0 -20px;
    border-radius: var(--r-lg) 0 0 var(--r-lg);
  }
  .hero { padding-top: 24px; }
  .hero-text { padding-top: 28px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { position: static; }

  .audio-card { grid-template-columns: 1fr; }
  .waveform-wrap { height: 48px; }
  .waveform-svg { height: 48px; }

  .cards-grid { grid-template-columns: 1fr; }
  .result-card { border-right: none !important; }

  .format-cards { grid-template-columns: 1fr; }

  .reviews-scroll { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 16px; }
  .reviews-grid { column-count: 1; display: flex; gap: 16px; }
  .review-card { min-width: 280px; margin-bottom: 0; flex-shrink: 0; scroll-snap-align: start; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .step-num { font-size: 3rem; }
  .steps-list::before { left: 1.4rem; }
  .step-item { grid-template-columns: 3rem 1fr; }
}
