@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f7f3f0;
  --surface: #ffffff;
  --surface-2: #efe8e3;
  --ink: #1a1514;
  --ink-2: #3a302c;
  --mute: #6e625c;
  --line: #e0d6cf;
  --teal: #6b3f4a;
  --teal-dark: #532f38;
  --teal-soft: #f0e4e7;
  --coral: #c46b4a;
  --coral-soft: #f8ebe5;
  --gold: #9a7b4f;
  --navy: #2a2430;
  --shadow: 0 20px 50px rgba(26, 21, 20, 0.08);
  --radius: 14px;
  --radius-lg: 22px;
  --g: clamp(18px, 4vw, 56px);
  --max: 1200px;
  --bar: 72px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--teal); color: #fff; }

.wrap { width: min(var(--max), 100% - 2 * var(--g)); margin-inline: auto; }

.js [data-in] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js [data-in].on { opacity: 1; transform: none; }
.js [data-in][data-w="1"] { transition-delay: 0.1s; }
.js [data-in][data-w="2"] { transition-delay: 0.18s; }
@media (prefers-reduced-motion: reduce) {
  .js [data-in] { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.top-ad {
  background: var(--navy);
  color: #e8eef2;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--bar);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-inline: var(--g);
  background: rgba(244, 247, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-stuck { box-shadow: var(--shadow); }
.brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand span { color: var(--teal); font-style: italic; font-weight: 500; }
.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin: 0 0 18px;
}
.price-now {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.price-was {
  font-size: 1.05rem;
  color: var(--mute);
  text-decoration: line-through;
}
.price-note {
  flex-basis: 100%;
  font-size: 0.78rem;
  color: var(--mute);
}
.price-row--product { margin: 0 0 18px; }
.price-row--cta .price-now { color: #fff; }
.price-row--cta .price-was { color: rgba(255,255,255,0.55); }
.price-row--cta .price-note { color: rgba(255,255,255,0.62); }
.nav { display: flex; gap: 24px; font-size: 0.84rem; font-weight: 600; color: var(--ink-2); }
.nav a:hover { color: var(--teal); }
.header-end { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.btn-buy {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.25s var(--ease);
}
.btn-buy:hover { background: var(--teal-dark); transform: translateY(-1px); }

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  position: relative;
}
.menu-btn i {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.menu-btn i:nth-child(1) { top: 14px; }
.menu-btn i:nth-child(2) { top: 20px; }
.menu-btn i:nth-child(3) { top: 26px; }
body.menu-open .menu-btn i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-btn i:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--bar) 0 0 0;
  z-index: 70;
  background: var(--teal-dark);
  color: #fff;
  display: grid;
  place-items: center;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path 0.5s var(--ease), visibility 0s 0.5s;
}
body.menu-open .mobile-nav {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  transition: clip-path 0.5s var(--ease);
}
body.menu .mobile-nav {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  transition: clip-path 0.5s var(--ease);
}
body.menu-open { overflow: hidden; }
body.menu { overflow: hidden; }
body.menu .menu-btn i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu .menu-btn i:nth-child(2) { opacity: 0; }
body.menu .menu-btn i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  padding: 8px 0;
}
.mobile-nav a:hover { color: var(--coral-soft); }
.mobile-nav small {
  display: block;
  margin-top: 24px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); }
.btn-outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-accent { background: var(--coral); color: #fff; }
.btn-accent:hover { background: #b34a32; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--g);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) var(--g);
  min-height: calc(100svh - var(--bar));
}
.kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-lead { font-size: 1.08rem; color: var(--ink-2); max-width: 44ch; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.hero-stats div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.hero-stats b {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stats span { font-size: 0.72rem; color: var(--mute); text-transform: uppercase; letter-spacing: 0.08em; }

.hero-visual {
  position: relative;
  background: linear-gradient(145deg, var(--teal-soft), var(--surface));
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.hero-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: calc(var(--radius-lg) - 8px);
  background: #fff;
}
.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--coral);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--surface);
}
.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 20px var(--g);
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item i {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
}
.trust-item b { display: block; font-size: 0.88rem; margin-bottom: 2px; }
.trust-item small { color: var(--mute); font-size: 0.76rem; }

.section { padding: clamp(56px, 8vw, 100px) 0; }
.section-alt { background: var(--surface-2); }
.section-head { margin-bottom: 40px; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 10px;
}
.section-head p { color: var(--mute); max-width: 58ch; }

.manifesto {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.quote b { color: var(--teal); font-weight: 400; }
.manifesto-copy p { color: var(--ink-2); margin-bottom: 14px; }

.product-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery {
  position: relative;
  background: var(--bg);
  min-height: 480px;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 24px 24px 16px;
}
.gallery-stage {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}
.gallery-stage > img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  z-index: 1;
}
.gallery-stage > img.on { opacity: 1; z-index: 2; }
.gallery-count {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--ink);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
}
.thumbs {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 8px;
  padding-top: 8px;
}
.thumbs button {
  flex: 1;
  max-width: 68px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumbs button[aria-current="true"] { outline: 2px solid var(--teal); }
.thumbs img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 1;
}

.product-copy { padding: clamp(28px, 4vw, 44px); }
.product-copy h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.spec {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px 14px;
  padding: 14px 0;
  border-top: 1px dashed var(--line);
}
.spec dt { font-size: 0.68rem; font-weight: 700; color: var(--teal); padding-top: 2px; }
.spec h4 { font-size: 0.95rem; margin-bottom: 4px; }
.spec p { font-size: 0.86rem; color: var(--mute); }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; }
.pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.bento-card {
  grid-column: span 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bento-card:nth-child(1) { grid-column: span 3; background: var(--teal); color: #fff; }
.bento-card:nth-child(1) p { color: rgba(255,255,255,0.78); }
.bento-card:nth-child(4) { grid-column: span 3; }
.bento-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 10px;
}
.bento-card:nth-child(1) .bento-num { color: var(--coral-soft); }
.bento-card h3 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 8px; }
.bento-card p { font-size: 0.9rem; color: var(--mute); }

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.phase-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.phase-card.featured { background: var(--navy); color: #fff; }
.phase-card.featured p { color: rgba(255,255,255,0.72); }
.phase-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.phase-card.featured .phase-label { color: #f4c7c3; }
.phase-card h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 10px; }
.phase-card p { font-size: 0.9rem; color: var(--mute); }

.steps-band {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 56px);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.step::before {
  content: attr(data-step);
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.step h3 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: rgba(255,255,255,0.68); }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.stats-copy p { color: var(--ink-2); margin-bottom: 14px; }
.note {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: var(--coral-soft);
  font-size: 0.84rem;
  color: var(--ink-2);
}
.stat-list { display: grid; gap: 0; }
.stat-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.stat-item strong {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--teal);
  line-height: 1;
}
.stat-item p { font-size: 0.88rem; color: var(--mute); }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compare-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.compare-card.highlight {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: var(--shadow);
}
.compare-card.highlight p { color: rgba(255,255,255,0.75); }
.compare-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--mute);
}
.compare-card.highlight .compare-tag { color: var(--teal-soft); }
.compare-card h3 { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 10px; }
.compare-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
  margin: 12px 0;
  background: var(--bg);
}
.compare-end { font-size: 0.78rem; font-weight: 700; margin-top: 12px; color: var(--mute); }
.compare-card.highlight .compare-end { color: var(--gold); }

.cta-band {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 12px;
}
.cta-band p { color: rgba(255,255,255,0.82); max-width: 46ch; margin-bottom: 20px; }
.checks li {
  font-size: 0.82rem;
  padding: 4px 0;
}
.checks li::before { content: "✓  "; color: var(--gold); font-weight: 700; }

.guarantee {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: center;
}
.seal {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e07a68, var(--coral));
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 10px 0 var(--ink);
  font-family: var(--serif);
}
.seal b { display: block; font-size: 2rem; line-height: 1; }
.seal small { font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  gap: 12px;
  align-items: center;
  padding: 20px 0;
  font-family: var(--serif);
  font-size: 1.08rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary em { font-style: normal; font-size: 0.72rem; font-weight: 700; color: var(--teal); }
.faq summary::after { content: "+"; color: var(--mute); justify-self: end; }
.faq details[open] summary::after { content: "−"; color: var(--teal); }
.faq details p { padding: 0 0 20px 60px; color: var(--mute); max-width: 68ch; }
.faq a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.contact-intro {
  background: var(--teal);
  color: #fff;
  padding: clamp(32px, 5vw, 56px);
}
.contact-intro h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
  margin: 8px 0 14px;
}
.contact-intro p { color: rgba(255,255,255,0.78); max-width: 40ch; }
.contact-details { padding: clamp(32px, 5vw, 56px); }
.contact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row dt { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); padding-top: 4px; }
.contact-row dd { font-family: var(--serif); font-size: 1.1rem; }
.contact-row small { display: block; font-family: var(--sans); font-size: 0.8rem; color: var(--mute); margin-top: 2px; }
.contact-row a:hover { color: var(--teal); }

.health-banner {
  background: var(--teal-soft);
  border-left: 4px solid var(--teal);
  padding: 16px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--ink-2);
}

.site-footer {
  background: var(--ink);
  color: #e8ece9;
  padding: clamp(40px, 6vw, 64px) 0 0;
  margin-top: 56px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer h4 {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.site-footer p, .site-footer li { font-size: 0.85rem; color: rgba(232,236,233,0.65); line-height: 1.8; }
.site-footer a:hover { color: #fff; }
.foot-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 3px solid var(--coral);
  background: rgba(255,255,255,0.04);
}
.foot-note h5 {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}
.foot-note p { font-size: 0.78rem; }
.foot-end {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,236,233,0.4);
}
.foot-watermark {
  font-family: var(--serif);
  font-size: clamp(3rem, 14vw, 9rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.1);
  user-select: none;
  margin-bottom: -0.06em;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.08);
  padding: 16px var(--g);
  display: none;
}
.cookie-bar.show { display: block; }
.cookie-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.88rem; color: var(--ink-2); max-width: 720px; }
.cookie-inner a { color: var(--teal); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }

.legal { padding: 56px 0 80px; }
.legal-head { border-bottom: 1px solid var(--line); padding-bottom: 24px; margin-bottom: 36px; }
.legal-head h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.legal-head p { font-size: 0.76rem; color: var(--mute); margin-top: 10px; }
.legal-body { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.legal-toc { position: sticky; top: calc(var(--bar) + 20px); align-self: start; }
.legal-toc h4 {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.legal-toc a {
  display: block;
  font-size: 0.84rem;
  color: var(--mute);
  padding: 5px 0 5px 12px;
  border-left: 2px solid var(--line);
}
.legal-toc a:hover { color: var(--teal); border-color: var(--teal); }
.legal-main section { margin-bottom: 32px; scroll-margin-top: calc(var(--bar) + 20px); }
.legal-main h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.legal-main h3 { font-size: 1.02rem; margin: 14px 0 8px; }
.legal-main p { font-size: 0.92rem; color: var(--ink-2); margin-bottom: 10px; line-height: 1.8; }
.legal-main a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.legal-main ul { margin-bottom: 12px; }
.legal-main ul li {
  font-size: 0.92rem;
  color: var(--ink-2);
  padding-left: 16px;
  position: relative;
  line-height: 1.8;
}
.legal-main ul li::before { content: "–"; position: absolute; left: 0; color: var(--teal); }
.formbox {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  padding: 22px;
  margin-top: 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

@media (max-width: 1024px) {
  .hero, .manifesto, .product-block, .stats-grid, .cta-inner, .contact, .guarantee, .legal-body { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card, .bento-card:nth-child(1), .bento-card:nth-child(4) { grid-column: span 1; }
  .phase-grid, .steps, .compare { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .gallery { min-height: 380px; }
  .legal-toc { position: static; }
  .legal-toc div { display: flex; flex-wrap: wrap; gap: 8px; }
  .legal-toc a { border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; border-left: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .nav { display: none; }
  .menu-btn { display: block; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .bento { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .faq summary { grid-template-columns: 36px 1fr 20px; font-size: 1rem; }
  .faq details p { padding-left: 0; }
  .contact-row { grid-template-columns: 1fr; gap: 4px; }
  .stat-item { grid-template-columns: 80px 1fr; }
}
