/* Elysora */

/* Design tokens */
:root {
  --cream: #F7F1E8;
  --milk: #FFFDF9;
  --olive: #66724A;
  --olive-dark: #35402B;
  --gold: #B9955B;
  --gold-dark: #9c7c45;
  --terracotta: #B96F4B;
  --text: #27251F;
  --text-soft: #56513f;
  --line: #e6ddcd;
  --shadow-sm: 0 1px 3px rgba(39, 37, 31, 0.08);
  --shadow-md: 0 8px 24px rgba(39, 37, 31, 0.10);
  --shadow-lg: 0 18px 50px rgba(39, 37, 31, 0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --header-h: 64px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Mulish", "Segoe UI", Helvetica, Arial, sans-serif;
  --space: clamp(3rem, 8vw, 6.5rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--milk);
  overflow-x: hidden;
}

@media (min-width: 768px) {
  body { font-size: 18px; }
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--olive-dark);
  margin: 0 0 0.5em;
  letter-spacing: 0.2px;
}

h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1rem; }

a { color: var(--olive); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--olive-dark); }

ul { padding-left: 1.2em; }
li { margin-bottom: 0.4em; }

/* ---------- Accessibility helpers ---------- */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--olive-dark);
  color: var(--milk);
  padding: 12px 18px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
  color: var(--milk);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section {
  padding-block: var(--space);
}
.section--tight { padding-block: clamp(2rem, 5vw, 3.5rem); }
.section--cream { background: var(--cream); }
.section--milk { background: var(--milk); }
.section--olive {
  background: var(--olive-dark);
  color: var(--cream);
}
.section--olive h2,
.section--olive h3 { color: var(--milk); }

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  text-align: center;
}
.section-head .eyebrow { justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.section-head .eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.lead {
  font-size: 1.1rem;
  color: var(--text-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--olive-dark);
  color: var(--milk);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--olive); color: var(--milk); }

.btn--gold {
  background: var(--gold);
  color: #2a2013;
}
.btn--gold:hover { background: var(--gold-dark); color: var(--milk); }

.btn--outline {
  background: transparent;
  color: var(--olive-dark);
  border-color: var(--olive-dark);
}
.btn--outline:hover { background: var(--olive-dark); color: var(--milk); }

.btn--light {
  background: var(--cream);
  color: var(--olive-dark);
}
.btn--light:hover { background: var(--milk); }

.btn--block { width: 100%; }
.btn--lg { min-height: 56px; padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Top service bar ---------- */
.topbar {
  background: var(--olive-dark);
  color: var(--cream);
  font-size: 0.82rem;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  align-items: center;
  justify-content: center;
  padding-block: 8px;
  text-align: center;
}
.topbar a { color: var(--cream); }
@media (min-width: 768px) {
  .topbar__inner { justify-content: space-between; }
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.header--scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--olive-dark);
  text-decoration: none;
  text-transform: uppercase;
}
.brand img { width: 30px; height: 30px; }

.nav { display: none; }
.nav__list {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list a {
  display: inline-block;
  padding: 8px 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 8px;
}
.nav__list a:hover { background: var(--cream); color: var(--olive-dark); }

.header__actions { display: flex; align-items: center; gap: 10px; }
.header__cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--olive-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(84vw, 340px);
  background: var(--milk);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 1200;
  padding: 24px 22px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.mobile-menu a {
  padding: 14px 8px;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover { color: var(--olive-dark); }
.mobile-menu .btn { margin-top: 16px; }
.menu-close {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--olive-dark);
}

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(39, 37, 31, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 1100;
}
.backdrop.show { opacity: 1; visibility: visible; }

@media (min-width: 992px) {
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(185,149,91,0.10), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--milk));
  padding-block: clamp(2.5rem, 7vw, 5rem);
}
.hero__grid {
  display: grid;
  gap: clamp(1.8rem, 5vw, 3rem);
  align-items: center;
}
.hero__title { margin-top: 0.4rem; }
.hero__sub {
  font-size: 1.12rem;
  color: var(--text-soft);
  max-width: 56ch;
}
.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
}
.hero__benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--milk);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--olive-dark);
  box-shadow: var(--shadow-sm);
  margin: 0;
}
.hero__benefits li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1rem;
}
.hero__note {
  font-size: 0.85rem;
  color: var(--text-soft);
  max-width: 52ch;
}
.hero__media {
  position: relative;
}
.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--milk);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--olive-dark);
  box-shadow: var(--shadow-md);
}

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

/* ---------- Trust bar ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.trust-card {
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.trust-card img { width: 46px; height: 46px; margin: 0 auto 10px; }
.trust-card h3 { font-family: var(--font-sans); font-size: 1rem; margin-bottom: 4px; color: var(--olive-dark); }
.trust-card p { font-size: 0.85rem; color: var(--text-soft); margin: 0; }
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Two-column feature ---------- */
.split {
  display: grid;
  gap: clamp(1.6rem, 5vw, 3rem);
  align-items: center;
}
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
}

/* ---------- Lifestyle banner ---------- */
.banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.banner__overlay {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 5vw, 3rem);
  max-width: 640px;
  color: var(--text);
}
.banner--left .banner__overlay {
  background: linear-gradient(90deg, rgba(255,253,249,0.92), rgba(255,253,249,0.75) 70%, transparent);
}
.banner--right { justify-content: flex-end; text-align: right; }
.banner--right .banner__overlay {
  background: linear-gradient(270deg, rgba(255,253,249,0.92), rgba(255,253,249,0.75) 70%, transparent);
}
.banner h2 { margin-bottom: 0.3rem; }

@media (min-width: 768px) {
  .banner { min-height: 420px; }
}

/* ---------- Ingredients grid ---------- */
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.ingredient-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.ingredient-card img {
  width: 62px; height: 62px;
  border-radius: 12px;
  flex-shrink: 0;
}
.ingredient-card h3 { font-family: var(--font-sans); font-size: 1.1rem; margin-bottom: 4px; }
.ingredient-card p { margin: 0; font-size: 0.92rem; color: var(--text-soft); }
@media (min-width: 640px) {
  .ingredients-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .ingredients-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Value / why grid ---------- */
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 26px 22px;
  border-top: 3px solid var(--gold);
}
.value-card .num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-dark);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.value-card h3 { margin-bottom: 6px; }
.value-card p { margin: 0; font-size: 0.95rem; color: var(--text-soft); }
@media (min-width: 640px) { .value-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .value-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Ritual steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: step;
}
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.step__num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--olive-dark);
  color: var(--milk);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
}
.step h3 { font-family: var(--font-sans); font-size: 1.1rem; margin-bottom: 4px; }
.step p { margin: 0; font-size: 0.92rem; color: var(--text-soft); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.notice {
  margin-top: 22px;
  background: var(--cream);
  border-left: 4px solid var(--olive);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.notice--gold { border-left-color: var(--gold); }
.notice--terra { border-left-color: var(--terracotta); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery button:hover img { transform: scale(1.05); }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(5, 1fr); } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(39, 37, 31, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__btn {
  position: absolute;
  background: rgba(255,253,249,0.92);
  border: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--olive-dark);
  display: grid;
  place-items: center;
}
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 14px; top: 50%; transform: translateY(-50%); }
.lightbox__caption {
  position: absolute;
  bottom: 18px;
  left: 0; right: 0;
  text-align: center;
  color: var(--cream);
  font-size: 0.9rem;
}

/* ---------- Models grid ---------- */
.models-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.model-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--milk);
}
.model-card img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; }
.model-card figcaption { padding: 14px 16px; font-size: 0.9rem; color: var(--text-soft); margin: 0; }
@media (min-width: 640px) { .models-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .models-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Audience list ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.audience-grid li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 0;
}
.audience-grid li::before {
  content: "✓";
  color: var(--olive);
  font-weight: 800;
  flex-shrink: 0;
}
.audience-grid { padding-left: 0; }
@media (min-width: 640px) { .audience-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Expectations ---------- */
.expect-list {
  display: grid;
  gap: 14px;
  padding-left: 0;
  max-width: 820px;
  margin-inline: auto;
}
.expect-list li {
  list-style: none;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  margin: 0;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.demo-card {
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.demo-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--olive-dark);
}
.demo-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}
@media (min-width: 768px) { .demo-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Data table (manufacturer / INCI) ---------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--milk);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.data-table th,
.data-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  vertical-align: top;
}
.data-table th { width: 42%; color: var(--olive-dark); font-family: var(--font-sans); }
.inci-box {
  background: var(--cream);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 20px;
  font-family: "Courier New", monospace;
  color: var(--text-soft);
}

/* ---------- Safety list ---------- */
.safety-list {
  display: grid;
  gap: 12px;
  padding-left: 0;
  max-width: 820px;
}
.safety-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: var(--milk);
  border-radius: 10px;
  border: 1px solid var(--line);
  margin: 0;
}
.safety-list li::before { content: "•"; color: var(--terracotta); font-weight: 800; }

/* ---------- Product card ---------- */
.product {
  display: grid;
  gap: clamp(1.6rem, 5vw, 3rem);
  align-items: start;
}
.product__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.product__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.product__thumbs img { border-radius: 10px; aspect-ratio: 1/1; object-fit: cover; box-shadow: var(--shadow-sm); }
.product__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 6px 0 4px;
}
.product__price .now {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--olive-dark);
  font-weight: 700;
}
.product__price .unit { color: var(--text-soft); font-size: 0.9rem; }
.product__meta {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
}
.product__meta li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  font-size: 0.95rem;
}
.product__meta img { width: 24px; height: 24px; }

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--milk);
}
.qty button {
  width: 46px; height: 46px;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--olive-dark);
}
.qty input {
  width: 54px;
  height: 46px;
  text-align: center;
  border: 0;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 16px 0;
}
.product__includes {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 16px;
}
.product__includes h4 { margin-bottom: 8px; }
@media (min-width: 900px) { .product { grid-template-columns: 1fr 1fr; } }

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.col-2 { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.92rem; color: var(--olive-dark); }
.form-field .req { color: var(--terracotta); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--milk);
  color: var(--text);
  min-height: 48px;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--olive);
  outline: 3px solid rgba(102,114,74,0.25);
  outline-offset: 0;
}
.form-field .error-msg {
  color: var(--terracotta);
  font-size: 0.82rem;
  min-height: 1em;
}
.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] { border-color: var(--terracotta); }

.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  grid-column: 1 / -1;
  font-size: 0.92rem;
}
.checkbox input {
  width: 22px; height: 22px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--olive);
}

.form-card {
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}

.form-success {
  display: none;
  background: #eef2e6;
  border: 1px solid var(--olive);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--olive-dark);
  font-weight: 600;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--milk);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--olive-dark);
  min-height: 48px;
}
.faq-q .chev {
  flex-shrink: 0;
  width: 22px; height: 22px;
  transition: transform 0.25s ease;
  position: relative;
}
.faq-q .chev::before,
.faq-q .chev::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  background: var(--olive);
  transform: translate(-50%, -50%);
}
.faq-q .chev::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.25s ease; }
.faq-q[aria-expanded="true"] .chev::after { transform: translate(-50%, -50%) rotate(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a__inner { padding: 0 20px 18px; color: var(--text-soft); font-size: 0.97rem; }

/* ---------- Contact info ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 5vw, 3rem);
}
.contact-info dl { margin: 0; }
.contact-info dt { font-weight: 700; color: var(--olive-dark); margin-top: 14px; }
.contact-info dd { margin: 2px 0 0; color: var(--text-soft); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--olive-dark);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 5vw, 3rem);
  text-align: center;
}
.cta-strip h2 { color: var(--milk); }
.cta-strip p { color: rgba(247,241,232,0.85); max-width: 60ch; margin-inline: auto; }
.cta-strip .btn { margin-top: 8px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--olive-dark);
  color: rgba(247,241,232,0.85);
  padding-top: clamp(2.5rem, 6vw, 4rem);
}
.footer a { color: var(--cream); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.footer h4 { color: var(--milk); font-family: var(--font-sans); font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer__brand .brand { color: var(--milk); }
.footer__brand p { font-size: 0.9rem; max-width: 34ch; }
.footer__bottom {
  border-top: 1px solid rgba(247,241,232,0.18);
  margin-top: 32px;
  padding-block: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  font-size: 0.82rem;
}
.footer .social { display: none; gap: 12px; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

/* ---------- Sticky mobile bar ---------- */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: var(--milk);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(39,37,31,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  transform: translateY(120%);
  transition: transform 0.3s ease;
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar__info strong { display: block; font-size: 0.95rem; color: var(--olive-dark); }
.sticky-bar__info span { font-size: 0.8rem; color: var(--text-soft); }
.sticky-bar .btn { flex-shrink: 0; }
@media (min-width: 992px) { .sticky-bar { display: none !important; } }

/* Add bottom padding on mobile so sticky bar doesn't cover footer content */
@media (max-width: 991px) {
  body.has-sticky { padding-bottom: 72px; }
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 16px;
  bottom: 84px;
  z-index: 850;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--olive-dark);
  color: var(--milk);
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.to-top.show { opacity: 1; visibility: visible; }
@media (min-width: 992px) { .to-top { bottom: 24px; } }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 1600;
  background: var(--milk);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  max-width: 560px;
  margin-inline: auto;
  display: none;
}
.cookie.show { display: block; }
.cookie h3 { font-family: var(--font-sans); font-size: 1.15rem; margin-bottom: 6px; }
.cookie p { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 14px; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie__actions .btn { flex: 1 1 auto; }
.cookie__settings { margin-top: 16px; display: none; }
.cookie__settings.show { display: block; }
.cookie__cat {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.cookie__cat h4 { margin: 0 0 2px; font-size: 0.95rem; }
.cookie__cat p { margin: 0; font-size: 0.82rem; }

/* Toggle switch */
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
  position: absolute; inset: 0;
  background: #cfc7b6;
  border-radius: 999px;
  transition: background 0.2s ease;
  cursor: pointer;
}
.switch .slider::before {
  content: "";
  position: absolute;
  height: 20px; width: 20px;
  left: 3px; top: 3px;
  background: var(--milk);
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.switch input:checked + .slider { background: var(--olive); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { background: var(--olive); opacity: 0.6; cursor: not-allowed; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-soft);
  padding-block: 14px;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; color: var(--gold); }

/* ---------- Legal page content ---------- */
.legal {
  max-width: 820px;
  margin-inline: auto;
}
.legal h2 { margin-top: 2rem; }
.legal h3 { margin-top: 1.4rem; }
.legal p, .legal li { color: var(--text-soft); }
.legal .updated { font-size: 0.85rem; color: var(--gold-dark); font-weight: 600; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.muted { color: var(--text-soft); }
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--space); }
