/* ConfortSuave — Minimal editorial redesign */

:root {
  --bg: #f4f2ed;
  --surface: #ffffff;
  --ink: #111110;
  --ink-soft: #3a3a38;
  --muted: #767672;
  --line: #ddd9d2;
  --line-dark: #c8c3ba;
  --accent: #8b5e3c;
  --accent-dark: #6f4a2f;
  --accent-soft: #f0e8df;
  --dark: #1a1917;
  --dark-muted: #a8a49c;
  --max: 1120px;
  --narrow: 680px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: min(100% - 48px, var(--max)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 48px, var(--narrow)); margin-inline: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Top strip ── */
.strip {
  background: var(--dark);
  color: var(--dark-muted);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  letter-spacing: 0.04em;
}
.strip b { color: #fff; font-weight: 600; }

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(244, 242, 237, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.header.scrolled {
  border-color: var(--line);
  background: rgba(244, 242, 237, 0.96);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.brand-mark svg { width: 14px; height: 14px; }
.brand i { font-style: normal; color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2px;
  margin-inline: auto;
}
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s, transform 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-dark);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--surface);
}
.btn-lg { padding: 16px 32px; font-size: 0.9rem; }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── Hero ── */
.hero {
  padding: 72px 0 0;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 72vh;
  align-items: stretch;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px 64px 0;
}
.hero-text .label { margin-bottom: 20px; }
.hero-text h1 { margin-bottom: 24px; max-width: 14ch; }
.hero-text h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-bottom: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-meta b {
  display: block;
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 2px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-image {
  position: relative;
  border-left: 1px solid var(--line);
  min-height: 480px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}
.hero-image figcaption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.92);
  padding: 8px 14px;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── Chapter / Story ── */
.chapter {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.chapter-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: end;
}
.chapter-num {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--line-dark);
  font-weight: 300;
}
.chapter-intro h2 { margin-bottom: 12px; }
.chapter-intro p {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 52ch;
}

.prose {
  max-width: var(--narrow);
  margin-left: 160px;
}
.prose p {
  color: var(--ink-soft);
  margin-bottom: 1.4em;
  font-size: 1.02rem;
  line-height: 1.8;
}
.prose p:first-child {
  color: var(--ink);
  font-size: 1.08rem;
}

.pullquote {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
}
.pullquote.warn {
  border-color: #c45c3e;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-style: normal;
  color: var(--ink-soft);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  margin-left: 160px;
  background: var(--line);
}
.gallery figure { background: var(--bg); overflow: hidden; }
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: grayscale(8%);
}
.gallery figure:hover img {
  transform: scale(1.03);
  filter: none;
}
.gallery figcaption {
  padding: 12px 14px;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ── Section blocks ── */
.block {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.block.alt { background: var(--surface); }
.block-head {
  max-width: 560px;
  margin-bottom: 56px;
}
.block-head.center {
  margin-inline: auto;
  text-align: center;
}
.block-head .label { margin-bottom: 16px; }
.block-head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1rem;
}

/* Pillars — minimal rows */
.pillars-min {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.pillar-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.pillar-row .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--line-dark);
}
.pillar-row h3 { margin-bottom: 6px; }
.pillar-row p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Benefits — 2 col text grid */
.benefits-min {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
}
.benefit-cell {
  background: var(--surface);
  padding: 32px 28px;
}
.benefit-cell h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.benefit-cell p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Demo */
.demo-min {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
}
.demo-item {
  background: var(--surface);
  display: flex;
  flex-direction: column;
}
.demo-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.demo-item .content {
  padding: 28px 32px 36px;
  flex: 1;
}
.demo-item .step-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.demo-item h3 { margin-bottom: 10px; }
.demo-item p { color: var(--muted); font-size: 0.93rem; }

/* Week timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.timeline-day {
  padding: 28px 16px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.timeline-day:last-child { border-right: none; }
.timeline-day .day {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.timeline-day p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Compare table — minimal */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}
table.minimal {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
table.minimal th,
table.minimal td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
table.minimal thead th {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
}
table.minimal thead th.hl { color: var(--ink); }
table.minimal td:first-child { font-weight: 500; color: var(--ink); }
table.minimal .c { text-align: center; }
table.minimal .yes { color: var(--accent); font-weight: 700; }
table.minimal .no { color: var(--line-dark); }
table.minimal tbody tr:last-child td { border-bottom: none; }
table.minimal tbody tr:hover { background: rgba(0,0,0,0.02); }

/* Before / after */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
}
.split-item {
  background: var(--surface);
  overflow: hidden;
}
.split-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.split-item .cap {
  padding: 24px 28px 32px;
}
.split-item .tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.split-item .tag.before { color: #b85c3a; }
.split-item .tag.after { color: var(--accent); }
.split-item h3 { margin-bottom: 8px; font-size: 1.2rem; }
.split-item p { color: var(--muted); font-size: 0.9rem; }

/* Price block */
.price-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  padding: 64px;
  background: var(--dark);
  color: #fff;
}
.price-block h2 {
  color: #fff;
  margin: 12px 0 16px;
}
.price-block .desc {
  color: var(--dark-muted);
  max-width: 40ch;
  font-size: 0.95rem;
  line-height: 1.7;
}
.price-includes {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.price-includes li {
  font-size: 0.88rem;
  color: #ccc8c0;
  padding-left: 16px;
  position: relative;
}
.price-includes li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.price-box {
  background: var(--surface);
  color: var(--ink);
  padding: 40px 36px;
  min-width: 280px;
  text-align: center;
}
.price-box .promo {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.price-box .was {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.95rem;
}
.price-box .now {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  margin: 8px 0;
}
.price-box .unit {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.price-box .btn { width: 100%; }

/* ── Order ── */
.order-section {
  padding: 96px 0;
  background: var(--surface);
}
.order-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.order-aside {
  position: sticky;
  top: 96px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.order-aside h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--muted);
}
.summary-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.summary-row img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 2px;
}
.summary-row .t b { display: block; font-size: 0.92rem; }
.summary-row .t small { color: var(--muted); font-size: 0.8rem; }
.summary-row .p { margin-left: auto; font-weight: 600; font-size: 0.92rem; }
.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  font-weight: 600;
}
.summary-total .big {
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.summary-trust {
  margin-top: 24px;
  display: grid;
  gap: 8px;
}
.summary-trust li {
  font-size: 0.8rem;
  color: var(--muted);
  padding-left: 12px;
  position: relative;
}
.summary-trust li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.order-form h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.order-form > .sub {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field label .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--ink);
}
.field input.with-prefix { padding-left: 48px; }
.field .input-prefix { position: relative; }
.field .input-prefix .pfx {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.field .hint { font-size: 0.75rem; color: var(--muted); margin-top: 6px; }
.field .err-msg {
  display: none;
  font-size: 0.75rem;
  color: #c45c3e;
  margin-top: 6px;
}
.field.invalid input,
.field.invalid textarea { border-bottom-color: #c45c3e; }
.field.invalid .err-msg { display: block; }

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-dark);
}
.qty-control button {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--ink);
}
.qty-control button:hover { background: var(--accent-soft); }
.qty-control input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: none;
  font-weight: 600;
  padding: 0;
  background: transparent;
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 8px 0 24px;
}
.consent input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--ink);
  flex-shrink: 0;
}
.consent label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.consent a { color: var(--accent); text-decoration: underline; }
.consent.invalid label { color: #c45c3e; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  border: 1px solid var(--line);
  margin-top: 24px;
}
.form-success.show { display: block; animation: fadeUp 0.5s var(--ease); }
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.form-success p { color: var(--muted); font-size: 0.92rem; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* ── FAQ ── */
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q .plus {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s;
}
.faq-q .plus::before { top: 9px; left: 2px; width: 16px; height: 1.5px; }
.faq-q .plus::after { top: 2px; left: 9px; width: 1.5px; height: 16px; }
.faq-item.open .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p {
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
  max-width: 58ch;
}

/* ── CTA strip ── */
.cta-strip {
  padding: 72px 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.cta-strip h2 { margin-bottom: 12px; }
.cta-strip p {
  color: var(--muted);
  max-width: 44ch;
  margin: 0 auto 28px;
  font-size: 0.98rem;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: var(--dark-muted);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand i { color: var(--accent); }
.footer-desc {
  font-size: 0.86rem;
  line-height: 1.7;
  max-width: 32ch;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer ul { display: grid; gap: 10px; }
.footer ul a {
  font-size: 0.86rem;
  color: var(--dark-muted);
  transition: color 0.2s;
}
.footer ul a:hover { color: #fff; }
.footer-contact li {
  font-size: 0.86rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact a { color: var(--dark-muted); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 0.78rem;
}

/* ── Subpages ── */
.page-hero {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin: 16px 0 12px; }
.page-hero p {
  color: var(--muted);
  max-width: 52ch;
  font-size: 1.02rem;
}
.page-hero .updated {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--muted);
}

.page-content {
  padding: 64px 0 96px;
}
.page-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.page-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.page-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--ink);
}
.page-content p,
.page-content li {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.page-content ul,
.page-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 8px; }
.page-content a { color: var(--accent); text-decoration: underline; }

.info-box {
  background: var(--accent-soft);
  border-left: 2px solid var(--accent);
  padding: 20px 24px;
  margin: 28px 0;
}
.info-box p { margin-bottom: 6px; }
.info-box p:last-child { margin-bottom: 0; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
  margin: 40px 0;
}
.contact-card {
  background: var(--surface);
  padding: 32px 28px;
}
.contact-card h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.contact-card p,
.contact-card a {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
}
.contact-card a:hover { color: var(--accent); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 32px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--ink); }

.health-grid {
  display: grid;
  gap: 24px;
  margin: 32px 0;
}
.health-item {
  padding: 28px 32px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.health-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.health-item p { margin-bottom: 0; }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

.note-center {
  text-align: center;
  max-width: 56ch;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 40px 0 32px; }
  .hero-image { border-left: none; border-top: 1px solid var(--line); min-height: 360px; }
  .hero-image img { min-height: 360px; }
  .chapter-head { grid-template-columns: 1fr; gap: 12px; }
  .chapter-num { font-size: 3rem; }
  .prose, .gallery { margin-left: 0; }
  .pillar-row { grid-template-columns: 1fr; gap: 8px; }
  .benefits-min { grid-template-columns: 1fr; }
  .demo-min, .split { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(4, 1fr); }
  .timeline-day { border-bottom: 1px solid var(--line); }
  .price-block { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .order-grid { grid-template-columns: 1fr; gap: 40px; }
  .order-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .burger { display: block; }
  .nav .btn-primary { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
