:root {
  --bg: #f0ece4;
  --bg-alt: #e4ddd2;
  --surface: #fffcf7;
  --ink: #141820;
  --ink-soft: #3a4150;
  --muted: #6d7585;
  --accent: #e04f2f;
  --accent-hover: #c43d20;
  --accent-soft: #fdeee9;
  --brand: #1e2a4a;
  --brand-mid: #2d3f6e;
  --brand-light: #e8edf7;
  --teal: #0d9488;
  --teal-soft: #d5f5f0;
  --border: rgba(20, 24, 32, 0.1);
  --shadow: 0 8px 32px rgba(20, 24, 32, 0.08);
  --shadow-lg: 0 24px 64px rgba(20, 24, 32, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --max: 1180px;
  --error: #c53030;
  --success: #0d7a55;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-display: "Libre Baskerville", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--brand-mid);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

/* —— Top bars —— */
.advertorial-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.promo-pill {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 3px solid var(--accent);
}

/* —— Header —— */
.site-header {
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--ink);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 10px 10px 10px 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  font-weight: 800;
  font-family: var(--font-body);
  letter-spacing: -0.05em;
}

.logo span {
  color: var(--accent);
}

.nav-inline {
  display: none;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}

.nav-inline a {
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
}

.nav-inline a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s;
}

.nav-inline a:hover {
  color: var(--ink);
  text-decoration: none;
}

.nav-inline a:hover::after {
  width: 100%;
}

@media (min-width: 768px) {
  .nav-inline {
    display: flex;
  }
}

/* —— Buttons —— */
.btn-primary,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-decoration: none !important;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--accent-hover);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  text-decoration: none;
}

.btn-primary--lg {
  padding: 17px 36px;
  font-size: 15px;
}

.header-cta {
  padding: 10px 20px;
  font-size: 13px;
}

/* —— Story hero —— */
.story-hero {
  padding: 48px 0 64px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}

.story-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--teal-soft) 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.story-hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  position: relative;
}

@media (min-width: 900px) {
  .story-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}

.story-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--muted);
}

.story-byline .tag {
  background: var(--ink);
  color: #fff;
  padding: 5px 14px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.story-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  line-height: 1.18;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.story-lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 0 0 28px;
  line-height: 1.75;
  max-width: 54ch;
}

.story-note {
  font-size: 12px;
  color: var(--muted);
  margin: 20px 0 0;
  padding: 14px 18px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent);
}

.story-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--ink);
  transform: rotate(1.5deg);
  background: var(--surface);
}

.story-hero-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.story-hero-img figcaption {
  background: var(--brand);
  padding: 14px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  border-top: 2px solid var(--ink);
}

/* —— Features strip —— */
.features-strip {
  background: transparent;
  padding: 0;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  gap: 0;
  background: var(--ink);
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 720px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  text-align: left;
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

@media (min-width: 720px) {
  .feature-item {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .feature-item:last-child {
    border-right: none;
  }
}

.feature-item .icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 0 14px;
}

.feature-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
}

.feature-item p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

/* —— Chapters —— */
.story-chapter {
  padding: 72px 0;
  position: relative;
}

.story-chapter:nth-child(even) {
  background: var(--surface);
}

.chapter-split {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 860px) {
  .chapter-split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .chapter-split--reverse .chapter-text {
    order: 2;
  }

  .chapter-split--reverse .chapter-media {
    order: 1;
  }
}

.chapter-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.chapter-label::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--accent);
}

.story-chapter h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}

.story-chapter p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.78;
  margin: 0 0 16px;
}

.chapter-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--ink);
}

.story-chapter .container--narrow {
  max-width: 740px;
}

.story-quote {
  background: var(--brand-light);
  border-left: 4px solid var(--brand);
  padding: 22px 26px;
  margin: 28px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
}

.story-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* —— Product block —— */
.product-block {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.product-block--alt {
  background: var(--surface);
  border-bottom: none;
}

.product-block-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .product-block-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto auto;
  gap: 10px;
}

.product-gallery img:first-child {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
  border-radius: var(--radius);
}

.product-gallery img:nth-child(2) {
  grid-column: 5 / 7;
  grid-row: 1;
}

.product-gallery img:nth-child(3) {
  grid-column: 5 / 7;
  grid-row: 2;
}

.product-gallery img:nth-child(4) {
  grid-column: 1 / 3;
  grid-row: 3;
}

.product-gallery img:nth-child(5) {
  grid-column: 3 / 5;
  grid-row: 3;
}

.product-gallery img:nth-child(6) {
  grid-column: 5 / 7;
  grid-row: 3;
}

.product-gallery img {
  border-radius: var(--radius-sm);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .product-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .product-gallery img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .product-gallery img:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  padding: 12px 0 12px 28px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--border);
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0 0 12px;
  color: var(--ink);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 16px;
  color: var(--ink);
}

/* —— Specs —— */
.specs-wrap {
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 900px) {
  .specs-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.specs-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.specs-card h2 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: var(--ink);
}

.specs-card .sub {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 14px;
}

.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.swatch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 6px 12px;
  background: var(--surface);
  border-radius: 999px;
  border: 1px solid var(--border);
}

.swatch-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--ink);
}

.swatch-dot.black { background: #1a1a1a; }
.swatch-dot.white { background: #f0f0f0; }

.specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specs li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.specs li:last-child {
  border-bottom: none;
}

.specs span:last-child {
  font-weight: 700;
  text-align: right;
  color: var(--brand-mid);
}

.steps-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 22px;
  color: var(--ink);
}

.steps {
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  margin-bottom: 22px;
  align-items: start;
  padding: 18px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid var(--ink);
}

.step h3 {
  margin: 0 0 4px;
  font-size: 15px;
  color: var(--ink);
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* —— FAQ —— */
.faq-section {
  padding: 80px 0;
  background: var(--brand);
  color: #fff;
}

.faq-section .section-head h2 {
  color: #fff;
}

.faq-section .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #fff;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .answer {
  padding: 0 22px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.68;
}

.faq-item .answer a {
  color: #ffb4a2;
}

/* —— Order form —— */
.order-section {
  padding: 80px 0;
  background: var(--surface);
  scroll-margin-top: 80px;
}

.order-layout {
  display: grid;
  gap: 32px;
}

@media (min-width: 960px) {
  .order-layout {
    grid-template-columns: 320px 1fr;
    align-items: start;
  }
}

.order-summary {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--accent);
  position: sticky;
  top: 88px;
}

.order-summary img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.order-summary .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 4px;
}

.order-summary .price-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 16px;
}

.order-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.order-summary ul li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-summary ul li:last-child {
  border-bottom: none;
}

.order-form-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-lg);
}

.order-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 6px;
  color: var(--ink);
}

.order-form-card > p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 26px;
}

.form-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 600px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.form-field label .req {
  color: var(--accent);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 15px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 3px rgba(45, 63, 110, 0.15);
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
  border-color: var(--error);
  background: #fff5f5;
}

.form-field input.is-valid,
.form-field select.is-valid {
  border-color: var(--success);
}

.field-hint {
  font-size: 12px;
  color: var(--muted);
}

.field-error {
  font-size: 12px;
  color: var(--error);
  font-weight: 600;
  min-height: 0;
  display: none;
}

.field-error.is-visible {
  display: block;
}

.form-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.form-checkbox input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
  flex-shrink: 0;
}

.form-checkbox label {
  flex: 1;
  min-width: 200px;
}

.form-checkbox .field-error {
  flex-basis: 100%;
  margin-left: 28px;
}

.form-checkbox.is-invalid label {
  color: var(--error);
}

.btn-submit {
  width: 100%;
  padding: 17px 24px;
  font-size: 16px;
  margin-top: 8px;
}

.btn-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.is-visible {
  display: block;
}

.form-success .icon {
  width: 64px;
  height: 64px;
  background: var(--teal-soft);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  font-weight: 800;
  border: 2px solid var(--ink);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 10px;
}

.form-success p {
  color: var(--ink-soft);
  margin: 0 0 8px;
  font-size: 15px;
}

#order-form-body.is-hidden {
  display: none;
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.footer-top {
  padding: 56px 0 40px;
  border-top: 4px solid var(--accent);
}

.footer-grid {
  display: grid;
  gap: 36px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
  }
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}

.footer-brand .footer-logo span {
  color: var(--accent);
}

.footer-tagline {
  margin: 0 0 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  max-width: 28ch;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-col p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col p a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom .copyright {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom .legal-mini {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* Legacy footer classes (fallback) */
.footer-links,
.footer-company,
.legal-block {
  display: none;
}

.health-disclaimer {
  background: var(--accent-soft);
  border-top: 2px solid var(--accent);
  padding: 28px 0;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.68;
}

.health-disclaimer .container {
  max-width: 860px;
}

/* —— Inner pages —— */
.page-hero {
  background: var(--brand);
  padding: 48px 0 40px;
  border-bottom: 2px solid var(--ink);
  color: #fff;
}

.page-hero h1 {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  color: #fff;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65) !important;
}

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0 64px;
}

.prose h2 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
  color: var(--ink);
  font-family: var(--font-display);
}

.prose p,
.prose li {
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.prose ul {
  padding-left: 1.2rem;
}

/* —— Sticky CTA —— */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 100;
  box-shadow: 0 -4px 28px rgba(0, 0, 0, 0.2);
  border-top: 3px solid var(--accent);
  color: #fff;
}

.sticky-cta .muted,
.sticky-cta span:not(.btn-primary) {
  color: rgba(255, 255, 255, 0.55);
}

.sticky-cta .btn-primary {
  padding: 11px 22px;
  font-size: 13px;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
}

body.has-sticky {
  padding-bottom: 72px;
}

@media (min-width: 900px) {
  body.has-sticky {
    padding-bottom: 0;
  }
}

/* —— Scroll reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
