/* =============================================
   TONOVA — css/style.css
   Section-scoped semantic CSS
   Palette: Green pastel + soft white + saturated accents
   Fonts: Playfair Display + DM Sans
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Root tokens ─────────────────────────────── */
:root {
  --brand:        #2d7a4f;
  --brand-mid:    #47a572;
  --brand-light:  #82c9a0;
  --brand-soft:   #c5e8d5;
  --brand-ultra:  #edf8f2;
  --highlight:    #e0f5e9;
  --cta:          #2d7a4f;
  --cta-hover:    #1f5c3a;
  --cta-text:     #ffffff;
  --tone-dark:    #1b2e24;
  --tone-body:    #374f42;
  --tone-muted:   #7a9688;
  --tone-border:  #d0e9da;
  --white:        #ffffff;
  --off-white:    #f8fdf9;
  --card-bg:      #f4faf6;

  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-pill:  999px;

  --shadow-xs:    0 2px 8px rgba(45, 122, 79, .07);
  --shadow-sm:    0 4px 16px rgba(45, 122, 79, .10);
  --shadow-md:    0 8px 32px rgba(45, 122, 79, .13);

  --max-w:        1160px;
  --gutter:       clamp(20px, 4vw, 48px);
  --section-gap:  clamp(60px, 8vw, 100px);
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--tone-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography helpers ──────────────────────── */
.t-display {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--tone-dark);
}
.t-subhead {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.3;
  color: var(--tone-dark);
}
.t-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
}
.t-body { font-size: 1rem; line-height: 1.7; }
.t-small { font-size: .875rem; color: var(--tone-muted); }

/* ── Layout helpers ──────────────────────────── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section-gap { padding: var(--section-gap) 0; }

/* ── Cookie Banner ───────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--tone-dark);
  color: #e8f0eb;
  padding: 20px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  transform: translateY(100%);
  transition: transform .4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text { flex: 1; font-size: .9rem; line-height: 1.55; min-width: 240px; }
.cookie-banner__text a { color: var(--brand-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: .88rem;
  font-weight: 600;
  transition: opacity .2s;
}
.cookie-btn:hover { opacity: .85; }
.cookie-btn--accept { background: var(--brand); color: #fff; }
.cookie-btn--decline { background: transparent; color: #e8f0eb; border: 1.5px solid rgba(255,255,255,.3); }

/* ── Header ──────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tone-border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header-logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -.01em;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--tone-body);
  transition: color .2s;
}
.header-nav a:hover { color: var(--brand); }
.header-cta {
  padding: 10px 24px;
  background: var(--cta);
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .88rem;
  transition: background .2s, transform .15s;
}
.header-cta:hover { background: var(--cta-hover) !important; transform: translateY(-1px); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tone-dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Hero ────────────────────────────────────── */
.hero-wrap {
  background: linear-gradient(135deg, var(--brand-ultra) 0%, #f5fdf8 60%, var(--highlight) 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 580px;
  padding: 60px 0 50px;
}
.hero-content { max-width: 520px; }
.hero-content .t-label { margin-bottom: 16px; }
.hero-content .t-display { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 20px; }
.hero-content .hero-intro {
  font-size: 1.08rem;
  color: var(--tone-body);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-note {
  font-size: .82rem;
  color: var(--tone-muted);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-note::before { content: '✓'; color: var(--brand); font-weight: 700; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,.96);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge__icon { font-size: 1.6rem; }
.hero-badge__text { font-size: .8rem; font-weight: 600; color: var(--tone-dark); line-height: 1.3; }
.hero-badge__sub { font-size: .72rem; color: var(--tone-muted); font-weight: 400; }

/* ── Pill button ─────────────────────────────── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s;
  white-space: nowrap;
}
.btn-pill--solid {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 4px 16px rgba(45, 122, 79, .28);
}
.btn-pill--solid:hover { background: var(--cta-hover); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(45, 122, 79, .35); }
.btn-pill--outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand-soft);
}
.btn-pill--outline:hover { border-color: var(--brand); background: var(--highlight); }

/* ── Trust strip ─────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--tone-border);
  border-bottom: 1px solid var(--tone-border);
  padding: 28px 0;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 60px);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--tone-body);
}
.trust-item__icon {
  width: 40px;
  height: 40px;
  background: var(--highlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* ── Lifestyle intro ─────────────────────────── */
.lifestyle-intro {
  background: var(--off-white);
}
.lifestyle-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.lifestyle-intro__media img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.lifestyle-intro__content .t-label { margin-bottom: 12px; }
.lifestyle-intro__content .t-subhead { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 18px; }
.lifestyle-intro__content p { margin-bottom: 14px; font-size: 1rem; }
.lifestyle-intro__points { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.lifestyle-intro__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .94rem;
}
.lifestyle-intro__point-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: .7rem;
  color: var(--brand);
  font-weight: 700;
}

/* ── Care cards ──────────────────────────────── */
.care-cards { background: var(--brand-ultra); }
.care-cards__header { text-align: center; margin-bottom: 44px; }
.care-cards__header .t-subhead { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-top: 10px; }
.care-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.care-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform .25s, box-shadow .25s;
}
.care-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.care-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.care-card__body { padding: 20px 18px 22px; }
.care-card__icon { font-size: 1.5rem; margin-bottom: 10px; }
.care-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--tone-dark);
  margin-bottom: 8px;
}
.care-card__text { font-size: .875rem; line-height: 1.6; color: var(--tone-body); }

/* ── Product focus ───────────────────────────── */
.product-focus { background: var(--white); }
.product-focus__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-focus__visual { position: relative; }
.product-focus__visual img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--card-bg);
}
.product-focus__bg {
  position: absolute;
  inset: -30px -20px;
  background: radial-gradient(ellipse at center, var(--highlight) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
}
.product-focus__content .t-label { margin-bottom: 14px; }
.product-focus__content .t-subhead { font-size: clamp(1.5rem, 2.5vw, 1.9rem); margin-bottom: 16px; }
.product-focus__content p { margin-bottom: 16px; }
.product-specs {
  margin-top: 26px;
  background: var(--card-bg);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--tone-border);
}
.spec-row:last-child { border-bottom: none; padding-bottom: 0; }
.spec-row__label { color: var(--tone-muted); }
.spec-row__value { font-weight: 600; color: var(--tone-dark); }

/* ── Benefits list ───────────────────────────── */
.benefits-list { background: var(--highlight); }
.benefits-list__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.benefits-list__media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.benefits-list__content .t-label { margin-bottom: 12px; }
.benefits-list__content .t-subhead { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-bottom: 24px; }
.checklist { display: flex; flex-direction: column; gap: 14px; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .95rem;
  line-height: 1.55;
}
.checklist-item__mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Voices / Testimonials ───────────────────── */
.voices-block { background: var(--off-white); }
.voices-block__header { text-align: center; margin-bottom: 44px; }
.voices-block__header .t-subhead { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-top: 10px; }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.voice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--tone-border);
  position: relative;
}
.voice-card__stars { color: #e8a635; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.voice-card__quote {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--tone-body);
  margin-bottom: 18px;
  font-style: italic;
}
.voice-card__author { display: flex; align-items: center; gap: 12px; }
.voice-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand);
  flex-shrink: 0;
}
.voice-card__name { font-weight: 600; font-size: .88rem; color: var(--tone-dark); }
.voice-card__meta { font-size: .78rem; color: var(--tone-muted); margin-top: 2px; }

/* ── FAQ ─────────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-section__header { text-align: center; margin-bottom: 44px; }
.faq-section__header .t-subhead { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-top: 10px; }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card-bg);
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--tone-dark);
  text-align: left;
  gap: 12px;
  transition: color .2s;
}
.faq-question:hover { color: var(--brand); }
.faq-chevron {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
  font-size: .65rem;
  color: var(--brand);
  font-weight: 700;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--brand); color: white; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
}
.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: .93rem;
  line-height: 1.7;
  color: var(--tone-body);
}

/* ── Order block ─────────────────────────────── */
.order-block {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  position: relative;
  overflow: hidden;
}
.order-block::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.order-block::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.order-block__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.order-block__info .t-label { color: var(--brand-soft); margin-bottom: 14px; }
.order-block__info .t-subhead { color: white; font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 16px; }
.order-block__info p { color: rgba(255,255,255,.82); font-size: .97rem; line-height: 1.7; margin-bottom: 14px; }
.order-block__points { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.order-block__point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.88);
}
.order-block__point::before { content: '✓'; color: var(--brand-light); font-weight: 700; font-size: 1rem; }
.order-price {
  margin-top: 28px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.order-price__label { font-size: .8rem; color: rgba(255,255,255,.65); }
.order-price__amount { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: white; }

.order-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
}
.order-form__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--tone-dark);
  margin-bottom: 6px;
}
.order-form__subtitle { font-size: .85rem; color: var(--tone-muted); margin-bottom: 24px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--tone-body);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--tone-border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem;
  color: var(--tone-dark);
  background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(45, 122, 79, .12);
  background: white;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--cta);
  color: white;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-top: 6px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(45, 122, 79, .3);
}
.form-submit:hover { background: var(--cta-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(45, 122, 79, .4); }
.form-legal { font-size: .74rem; color: var(--tone-muted); text-align: center; margin-top: 12px; line-height: 1.5; }
.form-legal a { color: var(--brand); }

/* ── Contact strip ───────────────────────────── */
.contact-strip { background: var(--off-white); padding: 44px 0; border-top: 1px solid var(--tone-border); }
.contact-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.contact-strip__heading { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--tone-dark); margin-bottom: 6px; }
.contact-strip__sub { font-size: .88rem; color: var(--tone-muted); }
.contact-items { display: flex; gap: 28px; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--tone-body); }
.contact-item__icon { font-size: 1.2rem; }

/* ── Footer ──────────────────────────────────── */
.site-footer { background: var(--tone-dark); color: rgba(255,255,255,.70); }
.footer-main { padding: 52px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .header-logo__text { color: var(--brand-light); }
.footer-brand p { font-size: .88rem; line-height: 1.65; margin-top: 14px; color: rgba(255,255,255,.55); max-width: 300px; }
.footer-col h4 { color: rgba(255,255,255,.85); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: var(--brand-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-disclaimer { background: rgba(0,0,0,.15); padding: 16px var(--gutter); font-size: .78rem; line-height: 1.6; color: rgba(255,255,255,.35); text-align: center; }

/* ── Legal pages ─────────────────────────────── */
.legal-page { padding: 80px 0; }
.legal-page h1 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--tone-dark); margin-bottom: 8px; }
.legal-page .legal-date { font-size: .85rem; color: var(--tone-muted); margin-bottom: 40px; }
.legal-page h2 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--tone-dark); margin: 32px 0 12px; }
.legal-page p, .legal-page li { font-size: .95rem; line-height: 1.75; margin-bottom: 14px; color: var(--tone-body); }
.legal-page ul { padding-left: 20px; }
.legal-page ul li { list-style: disc; }
.legal-max { max-width: 740px; margin: 0 auto; }

/* ── Success page ────────────────────────────── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-ultra);
  padding: 40px var(--gutter);
}
.success-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  max-width: 520px;
  box-shadow: var(--shadow-md);
}
.success-icon { font-size: 3.5rem; margin-bottom: 20px; }
.success-card h1 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--tone-dark); margin-bottom: 12px; }
.success-card p { font-size: .97rem; color: var(--tone-body); line-height: 1.7; margin-bottom: 8px; }
.success-back { margin-top: 28px; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .care-cards__grid { grid-template-columns: repeat(2, 1fr); }
  .voices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-inner,
  .lifestyle-intro__grid,
  .product-focus__inner,
  .benefits-list__inner,
  .order-block__inner { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; }
  .hero-content { max-width: 100%; }
  .hero-visual img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .order-block__info { order: 2; }
  .order-form { order: 1; }
  .product-focus__inner { text-align: center; }
}

@media (max-width: 640px) {
  .care-cards__grid { grid-template-columns: 1fr; }
  .voices-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-strip__inner { flex-direction: column; align-items: flex-start; }
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: white;
    padding: 20px var(--gutter);
    border-bottom: 1px solid var(--tone-border);
    box-shadow: var(--shadow-sm);
    gap: 16px;
  }
  .nav-toggle { display: flex; }
  .order-form { padding: 26px 22px; }
  .trust-strip__inner { gap: 16px; }
  .success-card { padding: 40px 24px; }
}

/* ── Scroll animations ───────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
