/* ---------- Base & tokens ---------- */

:root {
  --cream: #f7f4ec;
  --cream-deep: #efe9db;
  --paper: #fffdf8;
  --ink: #211f16;
  --ink-soft: #5c5847;
  --ink-faint: #8a8571;

  --forest: #1e3b2c;
  --forest-deep: #0f2318;
  --forest-soft: #e2e8de;

  --amber: #bf8b3a;
  --amber-dark: #94691f;
  --amber-soft: #f1e2c2;

  --line: #e2dbc8;
  --line-deep: rgba(15, 35, 24, 0.14);

  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.55rem;

  --shadow-sm: 0 1px 3px rgba(15, 35, 24, 0.1);
  --shadow-md: 0 16px 32px -14px rgba(15, 35, 24, 0.28);
  --shadow-lg: 0 32px 64px -20px rgba(15, 35, 24, 0.38);
  --shadow-amber: 0 14px 28px -10px rgba(148, 105, 31, 0.4);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* subtle grain overlay for tactile, non-flat surfaces */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
svg.icon { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* jumping to an anchor shouldn't park the section title under the sticky header */
section[id] { scroll-margin-top: 92px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--forest); color: #fff;
  padding: 12px 20px; border-radius: 0 0 var(--radius-sm) 0; z-index: 1000;
}
.skip-link:focus { left: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 600; line-height: 1.08;
  margin: 0 0 0.5em; color: var(--forest-deep); letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.2rem); font-weight: 560; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.25rem; margin-bottom: 0.4em; }

p { margin: 0 0 1em; color: var(--ink-soft); max-width: 62ch; text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-body); font-weight: 600; font-size: 0.76rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--amber-dark); margin: 0 0 0.9em; display: flex; align-items: center; gap: 0.6em;
}
.eyebrow::before { content: ""; width: 1.6em; height: 1px; background: var(--amber-dark); display: inline-block; }

a { color: inherit; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--font-body); font-weight: 700; font-size: 0.98rem; text-decoration: none;
  padding: 0.95em 1.9em; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--amber); color: #241a05; box-shadow: var(--shadow-amber); }
.btn-primary:hover { background: var(--amber-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 20px 36px -12px rgba(148,105,31,0.5); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-ghost { background: transparent; color: var(--forest-deep); border-color: var(--line-deep); }
.btn-ghost:hover { border-color: var(--forest); background: var(--forest-soft); }
.btn-ghost:active { transform: scale(0.98); }
.btn-small { padding: 0.62em 1.35em; font-size: 0.88rem; }
.btn-outline-light { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.32); backdrop-filter: blur(6px); }
.btn-outline-light:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.btn-outline-light:active { transform: scale(0.98); }
.btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(247, 244, 236, 0.72);
  backdrop-filter: blur(14px) saturate(1.4); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.4rem; padding: 16px 0; }
.logo { display: inline-flex; align-items: center; gap: 0.7em; text-decoration: none; margin-right: auto; }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center; width: 2.2em; height: 2.2em;
  border-radius: 50%; background: var(--forest); color: var(--amber-soft); font-size: 0.95rem;
  font-family: var(--font-display); font-weight: 700;
}
.logo-text { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; color: var(--forest-deep); line-height: 1.15; }
.logo-text span { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.09em; }

.header-contact { display: flex; align-items: center; gap: 0.5em; font-size: 0.92rem; color: var(--ink-soft); text-decoration: none; transition: color 0.2s var(--ease); }
.header-contact:hover { color: var(--forest); }

.lang-switch { display: flex; align-items: center; gap: 0.3em; font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; }
.lang-switch a, .lang-switch span { padding: 0.3em 0.55em; border-radius: var(--radius-sm); text-decoration: none; color: var(--ink-faint); letter-spacing: 0.02em; }
.lang-switch span { color: var(--forest); background: var(--forest-soft); }
.lang-switch a { transition: color 0.2s var(--ease), background 0.2s var(--ease); }
.lang-switch a:hover { color: var(--forest); background: var(--cream-deep); }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */

.hero { position: relative; overflow: hidden; background: var(--forest-deep); padding: 0; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(191,139,58,0.16), transparent 45%),
    linear-gradient(100deg, rgba(15,35,24,0.96) 6%, rgba(15,35,24,0.7) 48%, rgba(15,35,24,0.28) 100%);
}

.hero-inner { position: relative; z-index: 1; padding: 108px 0 116px; max-width: 640px; }
.hero .eyebrow { color: var(--amber-soft); }
.hero .eyebrow::before { background: var(--amber-soft); }
.hero h1 { color: #fdfaf2; }
.hero-lead { color: rgba(253,250,242,0.78); font-size: 1.08rem; max-width: 44ch; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 1.8rem; margin: 1.8rem 0 2rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.16); }
.hero-stat { display: flex; align-items: center; gap: 0.6em; color: rgba(253,250,242,0.88); font-size: 0.92rem; }
.hero-stat svg { color: var(--amber-soft); width: 1.2em; height: 1.2em; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Section head ---------- */

.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-lead { font-size: 1.02rem; margin: 0 auto; }

/* ---------- Editorial benefits (replaces 3-card grid) ---------- */

.benefits { padding: 100px 0 90px; }
.benefits-list { display: flex; flex-direction: column; }
.benefit-row {
  display: grid; grid-template-columns: 5rem 3rem 1fr; gap: 0 1.6rem; align-items: start;
  padding: 2.2rem 0; border-top: 1px solid var(--line);
  opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.benefit-row.is-visible { opacity: 1; transform: translateY(0); }
.benefit-row:last-child { border-bottom: 1px solid var(--line); }
.benefit-num { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink-faint); padding-top: 0.2em; }
.benefit-icon-wrap {
  width: 3rem; height: 3rem; border-radius: 50%; background: var(--forest-soft);
  display: flex; align-items: center; justify-content: center; color: var(--forest);
}
.benefit-icon-wrap svg { width: 1.4rem; height: 1.4rem; }
.benefit-text h3 { margin-bottom: 0.3em; }
.benefit-text p { margin: 0; max-width: 48ch; }

@media (min-width: 700px) {
  .benefit-row:nth-child(2) .benefit-text { max-width: 90%; margin-left: 8%; }
  .benefit-row:nth-child(3) .benefit-text { max-width: 90%; }
}

/* ---------- Product / ingredients ---------- */

.product-section { padding: 20px 0 100px; background: var(--cream-deep); position: relative; }
.product-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.4rem; align-items: center; }
.product-visual { position: relative; }
.product-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.product-visual::after {
  content: ""; position: absolute; inset: -18px; border: 1px solid var(--line-deep);
  border-radius: calc(var(--radius-lg) + 18px); z-index: -1;
}

.ingredients-scroll { margin: 1.8rem -6px 0; padding: 6px; display: flex; gap: 0.9rem; overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.ingredients-scroll::-webkit-scrollbar { height: 6px; }
.ingredients-scroll::-webkit-scrollbar-thumb { background: var(--line-deep); border-radius: 999px; }
.ingredient-chip {
  scroll-snap-align: start; flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 0.7em;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.3em 1.4em; width: 120px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.ingredient-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--amber); }
.ingredient-chip .ico { width: 2.1rem; height: 2.1rem; color: var(--forest); }
.ingredient-chip span { font-size: 0.84rem; font-weight: 600; color: var(--ink); line-height: 1.3; }

/* ---------- Gallery strip ---------- */
/* Desktop: even 3-up triptych, each image close to its own natural portrait
   ratio so object-fit:cover barely has to crop anything. Mobile: full-width
   stack with a slightly shorter ratio so nothing feels like a mugshot. */

.gallery-strip { padding: 0 0 100px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gallery-grid img {
  border-radius: var(--radius-lg); width: 100%; display: block;
  object-fit: cover; box-shadow: var(--shadow-md); aspect-ratio: 3/4;
}
.gallery-grid img.tall { object-position: center 15%; }
.gallery-grid img.mid { object-position: center 30%; }
.gallery-grid img.low { object-position: center 42%; }

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 1rem; }
  .gallery-grid img { aspect-ratio: 4/3; }
  .gallery-grid img.tall { aspect-ratio: 3/4; object-position: center 12%; }
}

/* ---------- Info tabs (replaces accordion FAQ) ---------- */

.info-section { padding: 20px 0 100px; }
.info-layout { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; max-width: 980px; margin: 0 auto; align-items: start; }
.info-nav { display: flex; flex-direction: column; gap: 0.2rem; position: sticky; top: 100px; }
.info-nav button {
  text-align: left; background: none; border: none; border-left: 2px solid var(--line);
  padding: 0.7em 0 0.7em 1.1em; font-family: var(--font-body); font-size: 0.94rem; font-weight: 600;
  color: var(--ink-faint); cursor: pointer; transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.info-nav button:hover { color: var(--ink); }
.info-nav button.is-active { color: var(--forest); border-left-color: var(--amber); }

.info-panels { position: relative; }
.info-panel { display: none; }
.info-panel.is-active { display: block; animation: fadeUp 0.4s var(--ease); }
.info-panel p { font-size: 0.98rem; }
.info-panel ol, .info-panel ul { margin: 0 0 1em; padding-left: 1.3em; }
.info-panel li { margin-bottom: 0.5em; color: var(--ink-soft); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.info-tabs-mobile { display: none; margin-bottom: 1.6rem; }
.info-tabs-mobile select {
  width: 100%; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; color: var(--ink);
  padding: 0.9em 1.1em; border-radius: var(--radius-sm); border: 1.5px solid var(--line-deep);
  background: var(--paper); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c5847' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1em center; background-size: 1.1em;
}

/* ---------- Pricing / Buy ---------- */

.buy-section { padding: 20px 0 110px; }
.buy-card {
  max-width: 600px; margin: 0 auto; background: var(--forest-deep); color: #fdfaf2;
  border-radius: var(--radius-lg); padding: 3rem; text-align: center; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden; isolation: isolate;
}
.buy-card::before {
  content: ""; position: absolute; top: -100px; right: -100px; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(191,139,58,0.32), transparent 70%); z-index: -1;
}
.buy-card::after {
  content: ""; position: absolute; inset: 0; opacity: 0.06; mix-blend-mode: overlay; z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.buy-card .eyebrow { color: var(--amber-soft); justify-content: center; }
.buy-card .eyebrow::before { background: var(--amber-soft); }
.buy-card h3 { color: #fff; font-size: 1.45rem; }
.buy-card .buy-lead { color: rgba(253,250,242,0.7); font-size: 0.95rem; max-width: 36ch; margin: 0 auto 1.9rem; }

/* Two volumes, each with its own counter — the customer can take both at once. */
.size-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-bottom: 1.7rem; text-align: left; }
.size-option {
  border: 1.5px solid rgba(253,250,242,0.18); border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04); padding: 1.2rem 1.25rem 1.05rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.size-option.is-chosen { border-color: rgba(241,226,194,0.5); background: rgba(191,139,58,0.15); }
.size-head { display: flex; flex-direction: column; margin-bottom: 0.95rem; }
.size-vol { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; color: #fdfaf2; line-height: 1.15; }
.size-unit { font-size: 0.85rem; color: rgba(253,250,242,0.6); }

.qty-selector { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.qty-btn {
  width: 2.3rem; height: 2.3rem; flex-shrink: 0; border-radius: 50%; border: 1.5px solid rgba(253,250,242,0.28);
  background: rgba(255,255,255,0.06); color: #fdfaf2; font-size: 1.3rem; line-height: 1; font-family: var(--font-body);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease);
}
.qty-btn:hover:not(:disabled) { background: rgba(255,255,255,0.16); border-color: rgba(253,250,242,0.5); }
.qty-btn:active:not(:disabled) { transform: scale(0.92); }
.qty-btn:disabled { opacity: 0.32; cursor: not-allowed; }
.qty-value { min-width: 1.6ch; text-align: center; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: #fdfaf2; }

.buy-total {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  border-top: 1px solid rgba(253,250,242,0.16); padding-top: 1.25rem; margin-bottom: 1.5rem;
}
.buy-total-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(253,250,242,0.6); }
.buy-total-sum { font-family: var(--font-display); font-size: 2.3rem; font-weight: 600; color: var(--amber-soft); line-height: 1; }

.buy-form { margin: 0; }
.buy-card .buy-note-vol { color: rgba(253,250,242,0.55); font-size: 0.85rem; margin: 1.4rem auto 0; }
.buy-card .btn-primary { width: 100%; font-size: 1.05rem; padding: 1.1em 1.8em; }
.buy-card .btn-primary:disabled { background: rgba(255,255,255,0.1); color: rgba(253,250,242,0.42); box-shadow: none; transform: none; cursor: not-allowed; }
.buy-secure { margin-top: 1.1rem; font-size: 0.8rem; color: rgba(253,250,242,0.55); display: flex; align-items: center; justify-content: center; gap: 0.5em; }

/* ---------- Manager contact ---------- */

.contact-section { padding: 20px 0 100px; }
.contact-card {
  max-width: 720px; margin: 0 auto; display: flex; align-items: center; gap: 2rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-photo { width: 104px; height: 104px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 3px solid var(--cream-deep); }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-card h3 { margin-bottom: 0.2em; }
.contact-card .role { font-size: 0.82rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.7em; }
.contact-links { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */

.site-footer { background: var(--forest-deep); color: rgba(253,250,242,0.72); padding: 56px 0 30px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-tag { color: rgba(253,250,242,0.55); font-size: 0.92rem; margin-top: 0.6em; max-width: 32ch; }
.site-footer .logo-text { color: #fff; }
.site-footer .logo-text span { color: rgba(253,250,242,0.5); }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; font-size: 0.88rem; }
.footer-links a { text-decoration: none; color: rgba(253,250,242,0.78); transition: color 0.2s var(--ease); }
.footer-links a:hover { color: #fff; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; padding-top: 26px; font-size: 0.8rem; color: rgba(253,250,242,0.5); }
.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Result pages (success / fail) ---------- */

.result-page { min-height: 100dvh; display: flex; align-items: center; justify-content: center; background: var(--forest-deep); padding: 40px 20px; }
.result-card { background: var(--paper); border-radius: var(--radius-lg); padding: 3.2rem 2.8rem; max-width: 540px; text-align: center; box-shadow: var(--shadow-lg); }
.result-icon-wrap {
  width: 4.2rem; height: 4.2rem; border-radius: 50%; background: var(--forest-soft); color: var(--forest);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem;
}
.result-icon-wrap svg { width: 2rem; height: 2rem; }
.result-card h1 { font-size: 1.9rem; }
.result-card .lead { font-size: 1.05rem; color: var(--ink); margin-bottom: 1.6rem; max-width: none; }
.result-card .contact-card { margin-top: 1.8rem; text-align: left; flex-direction: row; padding: 1.4rem; }

/* ---------- 404 ---------- */
.notfound-page { min-height: 100dvh; display: flex; align-items: center; justify-content: center; background: var(--cream); padding: 40px 20px; text-align: center; }
.notfound-num { font-family: var(--font-display); font-size: clamp(5rem, 16vw, 9rem); color: var(--forest); line-height: 1; margin-bottom: 0.1em; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-inner { max-width: 100%; }
  .info-layout { grid-template-columns: 1fr; }
  .info-nav { display: none; }
  .info-tabs-mobile { display: block; }
}

@media (max-width: 700px) {
  .header-contact { display: none; }
  .hero-inner { padding: 68px 0 76px; }
  .hero-stats { flex-direction: column; gap: 0.8rem; }
  .contact-card { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .buy-card { padding: 2.2rem 1.6rem; }
  .size-options { grid-template-columns: 1fr; gap: 0.7rem; }
  .size-option { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; }
  .size-head { margin-bottom: 0; }
  .qty-selector { justify-content: flex-end; gap: 0.9rem; }
  .benefit-row { grid-template-columns: 3.5rem 1fr; }
  .benefit-num { display: none; }
  .benefit-row:nth-child(2) .benefit-text, .benefit-row:nth-child(3) .benefit-text { max-width: 100%; margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .benefit-row { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
