/* ============================================================
   Cash on Delivery — V1 (Warm Editorial)
   Editorial · warm cream + terracotta + forest green
   ============================================================ */

:root {
  /* palette */
  --bg: #f5efe6;
  --bg-deep: #efe6d6;
  --surface: #fffaf2;
  --ink: #1c1a17;
  --ink-soft: #5a534b;
  --line: #e2d8c6;
  --line-strong: #c8baa1;

  --accent: #ab401c;        /* darker terracotta */
  --accent-deep: #8a3416;
  --accent-soft: #e8b89a;
  --forest: #1f3a2e;        /* deep green */
  --forest-soft: #38614e;
  --gold: #c89b3c;

  /* type */
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Sora', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* radii / shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(28, 26, 23, 0.06);
  --shadow-md: 0 8px 24px -8px rgba(28, 26, 23, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(28, 26, 23, 0.35);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 280ms var(--ease);

  /* layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

* { box-sizing: border-box; }
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ====================== NAV ====================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--gutter);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo__mark {
  color: var(--accent);
  font-size: 0.9em;
  transform: translateY(-0.05em);
}
.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.nav__links a {
  position: relative;
  transition: color var(--t);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--accent);
  transition: right var(--t);
}
.nav__links a:hover::after { right: 0; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-pill);
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform var(--t), background var(--t);
}
.nav__cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  border-radius: 8px;
  position: relative;
  z-index: 51;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.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); }

/* ====================== HERO ====================== */
.hero {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter) clamp(4rem, 10vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  grid-template-rows: auto auto auto auto;
  column-gap: clamp(2rem, 5vw, 5rem);
  row-gap: 1.75rem;
  align-items: start;
}
.hero__eyebrow {
  grid-column: 1 / 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  width: fit-content;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 25%, transparent);
  animation: pulse 1.8s var(--ease) infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--accent) 0%, transparent); }
}

.hero__title {
  grid-column: 1 / 2;
  font-family: var(--serif);
  font-size: clamp(2.75rem, 7.5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 900ms var(--ease) forwards;
}
.hero__title .line:nth-child(1) { animation-delay: 100ms; }
.hero__title .line:nth-child(2) { animation-delay: 250ms; }
.hero__title .line:nth-child(3) { animation-delay: 400ms; }
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero__lede {
  grid-column: 1 / 2;
  max-width: 32rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  opacity: 0;
  animation: rise 900ms var(--ease) 600ms forwards;
}

.hero__actions {
  grid-column: 1 / 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: rise 900ms var(--ease) 750ms forwards;
}

.hero__stats {
  grid-column: 1 / 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: rise 900ms var(--ease) 900ms forwards;
}
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--forest);
}
.stat__label {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

/* hero media collage */
.hero__media {
  position: relative;
  grid-column: 2 / 3;
  grid-row: 1 / 5;
  margin: 0;
  align-self: center;
  height: clamp(420px, 56vw, 640px);
  opacity: 0;
  animation: fade-in 1.2s var(--ease) 400ms forwards;
}
@keyframes fade-in {
  to { opacity: 1; }
}
.hero__card {
  position: absolute;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface);
  transition: transform 600ms var(--ease);
}
.hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.7rem;
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero__card--a {
  width: 62%;
  height: 64%;
  top: 4%;
  right: 4%;
  transform: rotate(2.5deg);
  z-index: 2;
}
.hero__card--b {
  width: 50%;
  height: 56%;
  bottom: 6%;
  left: 0;
  transform: rotate(-4deg);
  z-index: 3;
}
.hero__card--c {
  width: 42%;
  height: 42%;
  bottom: 12%;
  right: 12%;
  transform: rotate(6deg);
  z-index: 1;
}
.hero__media:hover .hero__card--a { transform: rotate(0) translateY(-6px); }
.hero__media:hover .hero__card--b { transform: rotate(-2deg) translateY(-6px); }
.hero__media:hover .hero__card--c { transform: rotate(3deg) translateY(-6px); }

.hero__seal {
  position: absolute;
  width: 130px;
  height: 130px;
  bottom: -6%;
  left: 30%;
  z-index: 4;
  background: var(--forest);
  color: var(--bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__seal-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: var(--bg);
  animation: spin 22s linear infinite;
  transform-origin: center;
}
.hero__seal-cedi {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--accent-soft);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--sans);
  transition: transform var(--t), background var(--t), color var(--t), border-color var(--t);
  cursor: pointer;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--surface);
}
.btn--block { width: 100%; padding: 1.1rem; }

/* ================== SECTION SHARED ================== */
section { position: relative; }
.section__head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 3rem;
}
.section__head--center {
  text-align: center;
  max-width: 720px;
}
.section__kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.35rem 0.7rem;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: var(--r-pill);
  margin-bottom: 1.25rem;
}
.section__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
}
.section__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.section__lede {
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ================== HOW IT WORKS ================== */
.how {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.75rem 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.step__num {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ===================== REVIEWS ===================== */
.reviews {
  background: var(--bg-deep);
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

/* live ticker */
.ticker {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.85rem 0;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  background: var(--ink);
  color: var(--bg);
  border-block: 1px solid color-mix(in srgb, var(--bg) 10%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: tick 60s linear infinite;
}
.reviews:hover .ticker__track { animation-play-state: paused; }
@keyframes tick {
  to { transform: translateX(-50%); }
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  white-space: nowrap;
  font-weight: 400;
  color: color-mix(in srgb, var(--bg) 85%, transparent);
}
.ticker__item strong {
  color: var(--accent-soft);
  font-weight: 500;
}
.ticker__item .ticker__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4cc28b;
  box-shadow: 0 0 0 4px color-mix(in srgb, #4cc28b 30%, transparent);
  flex-shrink: 0;
}
.ticker__item .ticker__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--bg) 40%, transparent);
  flex-shrink: 0;
}

/* rating summary chip */
.rating-summary {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}
.rating-summary__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}
.rating-summary__num {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.rating-summary__meta {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* review grid */
.reviews__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.review {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  grid-column: span 6;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.review:nth-child(1) { grid-column: span 7; }
.review:nth-child(2) { grid-column: span 5; }
.review:nth-child(3) { grid-column: span 4; }
.review:nth-child(4) { grid-column: span 4; }
.review:nth-child(5) { grid-column: span 4; }

.review__quote-mark {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-soft);
  opacity: 0.5;
  pointer-events: none;
  font-style: italic;
}
.review__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}
.review__quote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.review--featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.review--featured .review__quote { color: var(--bg); }
.review--featured .review__person-name { color: var(--bg); }
.review--featured .review__person-meta { color: color-mix(in srgb, var(--bg) 65%, transparent); }
.review--featured .review__quote-mark { color: var(--accent); opacity: 0.5; }
.review--featured .review__product { background: color-mix(in srgb, var(--bg) 12%, transparent); color: var(--bg); border-color: color-mix(in srgb, var(--bg) 20%, transparent); }

.review__person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}
.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review__person-info { display: flex; flex-direction: column; min-width: 0; }
.review__person-name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
}
.review__person-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.review__product {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  color: var(--ink-soft);
  width: fit-content;
}
.review__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--forest-soft);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.review--featured .review__verified { color: #6fbf94; }

/* ===================== SHOP ===================== */
.shop {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter {
  min-height: 44px;
  padding: 0.6rem 1.15rem;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  color: var(--ink-soft);
  transition: all var(--t);
}
.filter:hover { color: var(--ink); border-color: var(--ink); }
.filter.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}
.product__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-deep);
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.product:hover .product__media img { transform: scale(1.06); }
.product__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.65rem;
  background: var(--forest);
  color: var(--bg);
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.product__cat {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.3rem 0.65rem;
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.product__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
.product__desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  flex: 1;
}
.product__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.product__price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.product__price del {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-right: 0.4rem;
  font-weight: 400;
}
.product__buy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--t), transform var(--t);
}
.product__buy:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ===================== TRUST STRIP ===================== */
.trust {
  background: var(--forest);
  color: var(--bg);
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
}
.trust__row {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.trust__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--bg) 90%, transparent);
}
.trust__item svg { color: var(--accent-soft); margin-bottom: 0.25rem; }
.trust__item strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--bg);
}
.trust__item span { font-size: 0.9rem; }

/* ===================== ORDER FORM ===================== */
.order {
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  background:
    radial-gradient(circle at 80% 0%, color-mix(in srgb, var(--accent-soft) 25%, transparent) 0%, transparent 50%),
    var(--bg);
}
.order__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.order__aside {
  position: sticky;
  top: 6rem;
}
.order__pitch {
  margin: 1.5rem 0 2rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}
.order__benefits {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.order__benefits li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.order__benefits span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 600;
}
.order__selected {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.order__selected-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.order__selected-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.order__selected-card img {
  width: 64px;
  height: 64px;
  border-radius: var(--r-sm);
  object-fit: cover;
}
.order__selected-card .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.2;
}
.order__selected-card .price {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.9rem;
}

/* form */
.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  box-shadow: var(--shadow-md);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.field__hint, .field__optional {
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-weight: 400;
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--bg);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 15%, transparent);
}
.field input::placeholder, .field textarea::placeholder {
  color: color-mix(in srgb, var(--ink-soft) 65%, transparent);
}
.field.is-error input,
.field.is-error textarea,
.field.is-error select {
  border-color: #c2502b;
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
}
.field__error {
  font-size: 0.78rem;
  color: var(--accent-deep);
  margin-top: 0.2rem;
  font-family: var(--mono);
}

.field:has(textarea) { grid-column: 1 / -1; }
.field:has(#address) { grid-column: 1 / -1; }
.field:has(#notes) { grid-column: 1 / -1; }
.field:has(#product) { grid-column: 1 / -1; }

.select-wrap {
  position: relative;
}
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
}
.select-wrap svg {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  pointer-events: none;
}

.form__total {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--bg-deep);
  border-radius: var(--r-md);
  font-size: 0.95rem;
}
.form__total strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
}
.form button[type="submit"] {
  grid-column: 1 / -1;
}
.form__fineprint {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
  margin: 0;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem;
}
.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 12%, transparent);
}
.footer__brand {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.footer__tag {
  margin: 0;
  color: color-mix(in srgb, var(--bg) 65%, transparent);
  font-size: 1rem;
  line-height: 1.6;
  text-align: right;
}
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--bg) 55%, transparent);
}
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a:hover { color: var(--accent-soft); }

/* ===================== TOAST ===================== */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  padding: 0.55rem 1rem;
  background: var(--forest);
  color: var(--bg);
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  max-width: calc(100vw - 2rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
  z-index: 200;
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============== PRODUCT FLASH (anchor highlight) ============== */
@keyframes flash {
  0%, 100% { box-shadow: 0 0 0 0 transparent; }
  30% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 50%, transparent); }
}
.form.is-flash {
  animation: flash 1.4s var(--ease);
}

/* ===================== MODAL ===================== */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  animation: modal-fade 220ms var(--ease);
}
@keyframes modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 23, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal__card {
  position: relative;
  width: min(440px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: modal-rise 280ms var(--ease);
}
@keyframes modal-rise {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.modal__close:hover {
  background: var(--bg-deep);
  color: var(--ink);
}
.modal__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--bg);
  display: grid;
  place-items: center;
  animation: modal-pop 500ms var(--ease) 100ms backwards;
}
@keyframes modal-pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.modal__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}
.modal__lede {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 1rem;
}
.modal__summary {
  margin: 0 0 1.5rem;
  padding: 1rem 1.1rem;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--mono);
  font-size: 0.82rem;
  text-align: left;
  color: var(--ink-soft);
  line-height: 1.7;
  display: none;
}
.modal__summary:not(:empty) { display: block; }
.modal__summary strong { color: var(--ink); font-weight: 500; }
.modal__btn { width: 100%; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero__media {
    grid-column: 1 / -1;
    grid-row: auto;
    height: clamp(360px, 80vw, 520px);
    margin-top: 1rem;
  }
  .hero__seal { width: 100px; height: 100px; }
  .hero__seal-cedi { font-size: 2rem; }

  .order__inner { grid-template-columns: 1fr; }
  .order__aside { position: static; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__tag { text-align: left; }

  .steps { grid-template-columns: 1fr; }

  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .review,
  .review:nth-child(1),
  .review:nth-child(2),
  .review:nth-child(3),
  .review:nth-child(4),
  .review:nth-child(5) { grid-column: span 1; }
  .review:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 720px) {
  .nav {
    padding: 0.75rem var(--gutter);
    grid-template-columns: 1fr auto;
    display: grid;
    align-items: center;
    gap: 0.5rem;
  }
  .nav__toggle { display: flex; }
  .nav__cta { padding: 0.55rem 0.95rem; font-size: 0.85rem; }
  .logo { font-size: 1.25rem; }

  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 80%;
    max-width: 320px;
    background: var(--surface);
    padding: 4rem 2rem;
    transform: translateX(100%);
    transition: transform var(--t);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    z-index: 49;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .nav__links a::after { display: none; }

  .hero { padding-top: 2rem; row-gap: 1.25rem; }
  .hero__title { font-size: clamp(2.5rem, 11vw, 4rem); line-height: 1.15; }
  .hero__stats { grid-template-columns: 1fr; gap: 0.75rem; padding-top: 1rem; }
  .stat { display: flex; align-items: baseline; gap: 0.65rem; }
  .stat__num { font-size: 1.5rem; }
  .stat__label { margin: 0; }

  .hero__card--a { width: 70%; height: 60%; }
  .hero__card--b { width: 55%; height: 50%; }
  .hero__card--c { width: 45%; height: 40%; }
  .hero__seal { left: 50%; transform: translateX(-50%); bottom: -8%; width: 110px; height: 110px; }
  .hero__seal-cedi { font-size: 2rem; }

  .form { grid-template-columns: 1fr; padding: 1.25rem; }

  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__brand { font-size: 2rem; }

  .reviews__grid { grid-template-columns: 1fr; }
  .review:nth-child(1) { grid-column: span 1; }
  .review { padding: 1.4rem; }
  .ticker__track { animation-duration: 40s; }
  .rating-summary { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }

  .products { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }

  .trust__row { gap: 1.25rem; }
  .order { padding-block: clamp(3rem, 8vw, 5rem); }
  .nav__cta { display: none; }

  .logo { font-size: 1.05rem; gap: 0.35rem; }
  .logo__word { white-space: nowrap; }
}

@media (max-width: 480px) {
  :root { --gutter: 1rem; }

  .hero { padding-top: 1.5rem; }
  .hero__title { font-size: clamp(2.25rem, 12vw, 3.25rem); line-height: 1.15; }
  .hero__lede { font-size: 0.98rem; }
  .hero__media { height: clamp(300px, 70vw, 380px); }
  .hero__seal { width: 92px; height: 92px; bottom: -10%; }
  .hero__seal-cedi { font-size: 1.6rem; }
  .hero__tag { font-size: 0.65rem; padding: 0.25rem 0.55rem; }

  .btn { padding: 0.85rem 1.25rem; font-size: 0.9rem; }
  .nav { grid-template-columns: 1fr auto; }
  .logo { font-size: 0.95rem; }

  .section__title { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .section__kicker { font-size: 0.7rem; padding: 0.3rem 0.6rem; }

  .step { padding: 1.5rem 1.25rem; }
  .step h3 { font-size: 1.2rem; }

  .ticker__item { font-size: 0.82rem; gap: 0.5rem; }
  .ticker__track { gap: 1.5rem; animation-duration: 30s; }

  .review { padding: 1.25rem; }
  .review__quote { font-size: 1rem; }
  .review__quote-mark { font-size: 3.5rem; }

  .products { grid-template-columns: 1fr; }
  .product__media { aspect-ratio: 16 / 11; }
  .product__buy { min-height: 44px; padding: 0.6rem 1rem; font-size: 0.8rem; }
  .product__price { font-size: 1.4rem; }

  .trust { padding-block: 2.5rem; }
  .trust__row { grid-template-columns: 1fr; gap: 1.5rem; text-align: left; }

  .form { padding: 1rem; gap: 1rem; }
  .form__total strong { font-size: 1.25rem; }

  .footer__brand { font-size: 1.75rem; }
  .footer__links { gap: 1rem; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__title .line { opacity: 1; transform: none; }
  .hero__lede, .hero__actions, .hero__stats, .hero__media { opacity: 1; }
}

.form__warning {
  margin-bottom: 2rem;
  text-align: center;
  color: #d32f2f; /* A strong red */
  padding: 1.5rem;
  border: 1px solid rgba(211, 47, 47, 0.2);
  border-radius: var(--r-sm);
  background-color: rgba(211, 47, 47, 0.05);
}

.form__warning-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.form__warning p {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.form__warning p:last-child {
  margin-bottom: 0;
}
