/* ==========================================================================
   Il Peso dell'Amore — Weight of Love
   Matte black · metallic copper · rose-red
   ========================================================================== */

:root {
  --black: #000;
  --surface: #0d0b0a;
  --surface-2: #151210;
  --line: rgba(184, 115, 51, .26);
  --line-strong: rgba(184, 115, 51, .6);

  --copper: #B87333;
  --copper-light: #E2A676;
  --copper-dark: #7E4A22;
  --gold: #D6B06A;
  --rose: #9E2A2B;
  --rose-text: #CF5053; /* lifted rose for legible text on black */

  --cream: #F3EADB;
  --cream-2: #E7D9C2;
  --ink: #15100d;
  --ink-soft: #4d4038;

  --text: #EEE6DA;
  --muted: #A69B8F;

  --copper-grad: linear-gradient(100deg, #7E4A22 0%, #C98548 20%, #F3C9A1 36%, #B87333 52%, #E8B083 70%, #8A5226 100%);
  --btn-grad: linear-gradient(135deg, #D69159 0%, #B87333 45%, #8A5226 100%);

  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --section-y: clamp(80px, 12vw, 150px);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 76px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font: 300 1.0625rem/1.75 var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--copper-light); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--cream); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--copper-light); outline-offset: 3px; }
::selection { background: var(--copper); color: var(--black); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; margin: 0; }
p { margin: 0 0 1em; }
[hidden] { display: none !important; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--copper); color: var(--black); padding: 10px 16px;
}
.skip:focus { top: 12px; }

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

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* Film grain for a tactile, printed-paper feel */
.grain {
  position: fixed; inset: -50%; z-index: 90; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Type helpers ---------- */
.copper-text {
  background: var(--copper-grad);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: sheen 9s var(--ease) infinite alternate;
}
@keyframes sheen { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font: 500 .75rem/1 var(--sans); letter-spacing: .32em; text-transform: uppercase;
  color: var(--copper); margin: 0 0 22px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .7; }
.center .eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .7; }

.h-section { font-size: clamp(2.3rem, 5.2vw, 3.9rem); font-weight: 500; letter-spacing: .005em; color: var(--cream); }
.h-section em { font-style: italic; color: var(--copper-light); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 60ch; }

.stars { display: flex; gap: 18px; color: var(--copper); font-size: 1.05rem; letter-spacing: 0; margin: 26px 0; }
.center .stars { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 1.05rem; --pad-x: 2rem;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  padding: var(--pad-y) var(--pad-x);
  font: 500 .78rem/1 var(--sans); letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 2px; overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .35s, color .35s, border-color .35s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn-primary { background: var(--btn-grad); color: #120a05; box-shadow: 0 10px 30px -12px rgba(184, 115, 51, .7); }
.btn-primary::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 236, 214, .55) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .9s var(--ease);
}
.btn-primary:hover { color: #120a05; transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(184, 115, 51, .85); }
.btn-primary:hover::after { transform: translateX(120%); }
.btn-ghost { border-color: var(--line-strong); color: var(--copper-light); background: rgba(0, 0, 0, .35); }
.btn-ghost:hover { border-color: var(--copper-light); color: var(--cream); background: rgba(184, 115, 51, .1); }
.btn-block { width: 100%; }
.btn[aria-disabled="true"], .btn:disabled { opacity: .45; pointer-events: none; box-shadow: none; }
.btn .spinner {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, .25); border-top-color: #120a05;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Announcement ---------- */
.announce {
  position: relative; z-index: 60;
  background: linear-gradient(90deg, #120c08, #1d130c 50%, #120c08);
  border-bottom: 1px solid var(--line);
  color: var(--cream-2); text-align: center;
  font: 400 .72rem/1.4 var(--sans); letter-spacing: .18em; text-transform: uppercase;
  padding: 10px var(--gutter);
}
.announce p { margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 14px; }
.announce strong { color: var(--copper-light); font-weight: 500; }
.announce .sep { color: var(--copper); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  transition: background-color .4s var(--ease), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, .78);
  -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); margin-right: auto; }
.brand:hover { color: var(--cream); }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px var(--line-strong), 0 0 24px -4px rgba(184, 115, 51, .5); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font: 500 1.35rem/1 var(--serif); letter-spacing: .03em; }
.brand-sub { font: 400 .62rem/1.6 var(--sans); letter-spacing: .34em; text-transform: uppercase; color: var(--copper); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  position: relative; color: var(--text);
  font: 400 .78rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase;
  padding: 8px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--copper); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease);
}
.nav a:hover { color: var(--copper-light); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav .nav-cta { border: 1px solid var(--line-strong); padding: 11px 20px; color: var(--copper-light); }
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--copper); color: var(--black); border-color: var(--copper); }

.bag {
  position: relative; display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%; color: var(--cream);
  border: 1px solid var(--line); transition: border-color .3s, color .3s, background-color .3s;
}
.bag:hover { border-color: var(--copper); color: var(--copper-light); }
.bag svg { width: 20px; height: 20px; }
.bag-count {
  position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 10px; background: var(--rose); color: #fff;
  font: 500 .68rem/20px var(--sans); text-align: center; letter-spacing: 0;
  transform: scale(0); transition: transform .35s var(--ease);
}
.bag-count.has { transform: scale(1); }
.bag.bump { animation: bump .5s var(--ease); }
@keyframes bump { 40% { transform: scale(1.15); } }

.menu-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%;
  background: transparent; position: relative;
}
.menu-toggle span {
  position: absolute; left: 14px; right: 14px; height: 1px; background: var(--cream);
  transition: transform .4s var(--ease), top .4s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 19px; }
.menu-toggle span:nth-child(2) { top: 26px; }
.menu-open .menu-toggle span:nth-child(1) { top: 22.5px; transform: rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { top: 22.5px; transform: rotate(-45deg); }

.secure-badge { display: inline-flex; align-items: center; gap: 8px; font: 400 .72rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.secure-badge svg { width: 15px; height: 15px; color: var(--copper); }

/* ---------- Parallax layer ---------- */
main { position: relative; overflow-x: clip; }
.parallax { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.floaty { position: absolute; will-change: transform; }
.floaty svg { width: 100%; height: 100%; overflow: visible; animation: bob var(--bob, 9s) ease-in-out infinite alternate; }
.floaty.d0 { opacity: .28; filter: blur(3px); }
.floaty.d1 { opacity: .55; filter: blur(1px); }
.floaty.d2 { opacity: .92; filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .7)); }
@keyframes bob { from { transform: translateY(-8px) rotate(-4deg); } to { transform: translateY(8px) rotate(5deg); } }
main > section, main > .ticker { position: relative; z-index: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h) - 38px);
  display: flex; align-items: center;
  padding: clamp(40px, 7vw, 90px) 0 clamp(70px, 9vw, 120px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 75% 45%, rgba(184, 115, 51, .16), transparent 70%),
    radial-gradient(ellipse 40% 50% at 12% 80%, rgba(158, 42, 43, .12), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.hero-title {
  font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  font-weight: 500; letter-spacing: .05em; line-height: 1.02; text-transform: uppercase;
  margin: 0;
  text-shadow: 0 0 1px rgba(0, 0, 0, .1);
}
.hero-title .line { display: block; }
.hero-sub {
  margin: 14px 0 0;
  font: italic 400 clamp(1.3rem, 2.2vw, 1.75rem)/1.2 var(--serif);
  color: var(--gold); letter-spacing: .02em;
}
.hero-slogan {
  margin: 28px 0 0;
  font: italic 500 clamp(1.45rem, 2.6vw, 2.05rem)/1.3 var(--serif);
  color: var(--rose-text);
}
.hero-slogan span { display: block; }
.hero-copy .lede { margin: 26px 0 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 34px 0 0; padding: 0; list-style: none;
  font: 400 .76rem/1.4 var(--sans); letter-spacing: .1em; color: var(--muted);
}
.trust li { display: flex; align-items: center; gap: 9px; }
.trust svg { width: 16px; height: 16px; color: var(--copper); flex: none; }

.hero-visual { position: relative; }
.hero-visual .frame { transform: rotate(1.2deg); }
.price-seal {
  position: absolute; left: -26px; bottom: 34px; z-index: 3;
  width: 118px; height: 118px; border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  background: radial-gradient(circle at 35% 30%, #1e1510, #050302);
  border: 1px solid var(--copper);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, .8), 0 0 0 6px var(--line-strong), 0 20px 40px -10px #000;
}
.price-seal small { font: 400 .6rem/1 var(--sans); letter-spacing: .28em; text-transform: uppercase; color: var(--muted); }
.price-seal strong { font: 500 2rem/1.05 var(--serif); color: var(--copper-light); }
.price-seal em { font: italic .82rem/1 var(--serif); color: var(--gold); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font: 400 .62rem/1 var(--sans); letter-spacing: .34em; text-transform: uppercase; color: var(--muted);
}
.scroll-cue::after { content: ""; width: 1px; height: 38px; background: linear-gradient(var(--copper), transparent); animation: drip 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes drip { 0% { transform: scaleY(0); opacity: 1; } 70% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }

/* ---------- Framed image (echoes the pouch label) ---------- */
.frame { position: relative; margin: 0; padding: 12px; border: 1px solid var(--line-strong); background: linear-gradient(150deg, rgba(184, 115, 51, .14), rgba(0, 0, 0, 0) 45%); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .9), 0 0 80px -30px rgba(184, 115, 51, .35); }
.frame::before { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(184, 115, 51, .22); pointer-events: none; z-index: 2; }
.frame img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: 41% 50%; }
.frame .corner { position: absolute; width: 9px; height: 9px; background: var(--copper); transform: rotate(45deg); z-index: 3; }
.frame .c1 { top: -5px; left: -5px; } .frame .c2 { top: -5px; right: -5px; }
.frame .c3 { bottom: -5px; left: -5px; } .frame .c4 { bottom: -5px; right: -5px; }

/* ---------- Ticker ---------- */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(10, 7, 5, .85); overflow: hidden; padding: 20px 0;
}
.ticker-track { display: flex; width: max-content; animation: marquee 45s linear infinite; }
.ticker-track span {
  display: inline-flex; align-items: center; gap: 36px; padding-right: 36px;
  font: italic 400 clamp(1.15rem, 2vw, 1.5rem)/1 var(--serif); color: var(--cream-2); white-space: nowrap;
}
.ticker-track span::after { content: "✦"; font-style: normal; font-size: .75rem; color: var(--copper); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: var(--section-y) 0; scroll-margin-top: calc(var(--header-h) - 10px); }
.section-head { max-width: 760px; margin: 0 0 clamp(48px, 7vw, 76px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }
.section-head .h-section { margin-bottom: 22px; }

/* ---------- Sensory profile ---------- */
.notes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.note-card {
  position: relative; background: var(--cream); color: var(--ink);
  padding: 38px 28px 32px; border-radius: 2px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .9);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.note-card::before { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(184, 115, 51, .45); pointer-events: none; }
.note-card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -30px rgba(184, 115, 51, .45); }
.note-icon { width: 56px; height: 56px; color: var(--copper); margin-bottom: 26px; }
.note-card h3 { font-size: 1.6rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.note-card p { font-size: .96rem; line-height: 1.65; color: var(--ink-soft); margin: 0; }
.note-card .num { position: absolute; top: 22px; right: 26px; font: italic 500 1rem/1 var(--serif); color: var(--copper); }

.profile-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; margin-top: 20px; }
.panel {
  background: linear-gradient(160deg, rgba(28, 20, 15, .92), rgba(8, 6, 5, .92));
  border: 1px solid var(--line); padding: clamp(28px, 4vw, 44px); border-radius: 2px;
}
.panel h3 { font-size: 1.75rem; color: var(--cream); margin-bottom: 26px; }
.meter { display: grid; grid-template-columns: 7.5rem 1fr auto; align-items: center; gap: 10px 18px; margin: 0; }
.meter dt { font: 400 .78rem/1.3 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--cream-2); }
.meter dd { margin: 0; }
.meter .bar { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; }
.meter .bar i { height: 8px; border-radius: 1px; background: rgba(184, 115, 51, .14); border: 1px solid rgba(184, 115, 51, .2); }
.meter .bar i.on { background: var(--btn-grad); border-color: transparent; transform-origin: left; }
.js .meter .bar i.on { transform: scaleX(0); transition: transform .6s var(--ease); }
.js .in .meter .bar i.on { transform: scaleX(1); }
.meter .val { font: italic 1.05rem/1 var(--serif); color: var(--gold); min-width: 5.5rem; text-align: right; }

.absent { position: relative; overflow: hidden; }
.absent::after {
  content: ""; position: absolute; right: -60px; bottom: -60px; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 42, 43, .28), transparent 70%);
}
.absent ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 14px; }
.absent li { display: flex; align-items: center; gap: 14px; font: 500 1.35rem/1.2 var(--serif); color: var(--cream); }
.absent li .x { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--rose-text); position: relative; }
.absent li .x::before, .absent li .x::after { content: ""; position: absolute; left: 6px; right: 6px; top: 12px; height: 1px; background: var(--rose-text); transform: rotate(45deg); }
.absent li .x::after { transform: rotate(-45deg); }
.absent li s { text-decoration-color: var(--rose-text); text-decoration-thickness: 1px; }
.absent p { color: var(--muted); margin: 0; position: relative; z-index: 1; }

/* ---------- Story ---------- */
.story { overflow: hidden; }
.story::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 50% 60% at 20% 50%, rgba(158, 42, 43, .16), transparent 70%);
}
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.seal-wrap { position: relative; max-width: 460px; margin: 0 auto; }
.seal-wrap::before {
  content: ""; position: absolute; inset: -14%; border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 115, 51, .32), transparent 62%);
  filter: blur(10px);
}
.seal-ring { position: absolute; inset: -5%; border-radius: 50%; border: 1px dashed rgba(184, 115, 51, .4); animation: turn 80s linear infinite; }
.seal-ring.r2 { inset: -10%; border-style: solid; border-color: rgba(184, 115, 51, .14); animation-duration: 120s; animation-direction: reverse; }
@keyframes turn { to { transform: rotate(360deg); } }
.seal { position: relative; width: 100%; aspect-ratio: 1; border-radius: 50%; object-fit: cover; box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .95), 0 0 0 1px var(--line-strong); }
.seal-caption { margin: 34px 0 0; text-align: center; font: italic 1.05rem/1.5 var(--serif); color: var(--muted); }
.seal-caption strong { color: var(--gold); font-weight: 500; }

.story-copy .h-section { margin-bottom: 16px; }
.story-slogan { font: italic 500 clamp(1.25rem, 2vw, 1.55rem)/1.4 var(--serif); color: var(--rose-text); margin-bottom: 30px; }
.story-copy p { color: #d3c9bd; }
.story-copy .dropcap::first-letter {
  float: left; font: 500 4.4rem/.8 var(--serif); padding: 8px 12px 0 0; color: var(--copper);
}
.pull {
  margin: 36px 0 0; padding: 26px 0 0 30px; border-left: 1px solid var(--copper); position: relative;
  font: italic 500 clamp(1.5rem, 2.6vw, 2.1rem)/1.3 var(--serif); color: var(--cream);
}
.pull::before { content: "“"; position: absolute; left: 22px; top: -14px; font-size: 4.5rem; line-height: 1; color: var(--copper); opacity: .6; }
.pull cite { display: block; margin-top: 12px; font: normal 400 .72rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--copper); }

/* ---------- Ritual ---------- */
.ritual-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ritual-step { padding: clamp(34px, 4vw, 54px) clamp(22px, 3vw, 40px); text-align: center; position: relative; }
.ritual-step + .ritual-step { border-left: 1px solid var(--line); }
.ritual-step .roman { font: 400 1rem/1 var(--serif); letter-spacing: .3em; color: var(--copper); margin-bottom: 20px; display: block; }
.ritual-step h3 { font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 500; font-style: italic; color: var(--cream); margin-bottom: 16px; }
.ritual-step p { color: var(--muted); margin: 0 auto; max-width: 30ch; }

/* ---------- Shop ---------- */
.shop::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 50% 50% at 25% 50%, rgba(184, 115, 51, .12), transparent 70%);
}
.shop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.shop-visual { position: sticky; top: calc(var(--header-h) + 30px); }
.shop-panel .h-section { font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin-bottom: 4px; }
.shop-kind { font: italic 1.35rem/1.4 var(--serif); color: var(--gold); margin-bottom: 20px; }
.shop-panel > p { color: #cfc4b7; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 22px 0 32px; }
.chips li { border: 1px solid var(--line); padding: 7px 14px; font: 400 .72rem/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--cream-2); border-radius: 30px; }

.options { display: grid; gap: 12px; }
.option {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 18px;
  padding: 20px 22px; border: 1px solid var(--line); background: rgba(12, 9, 7, .85);
  transition: border-color .35s, background-color .35s;
}
.option.active { border-color: var(--copper); background: linear-gradient(120deg, rgba(184, 115, 51, .14), rgba(12, 9, 7, .85) 60%); }
.option-size { display: block; font: 500 1.7rem/1 var(--serif); color: var(--cream); }
.option-desc { display: block; margin-top: 6px; font-size: .86rem; color: var(--muted); line-height: 1.4; }
.option-save { display: inline-block; margin-top: 8px; font: 500 .66rem/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(214, 176, 106, .45); padding: 5px 8px; }
.option-price { font: 500 1.6rem/1 var(--serif); color: var(--copper-light); }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 2px; }
.qty button {
  width: 40px; height: 44px; border: 0; background: transparent; color: var(--copper-light);
  font-size: 1.2rem; line-height: 1; transition: background-color .25s, color .25s;
}
.qty button:hover { background: var(--copper); color: var(--black); }
.qty input {
  width: 42px; height: 44px; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  background: transparent; text-align: center; font: 500 1rem/1 var(--sans); color: var(--cream);
  -moz-appearance: textfield; appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty.sm button { width: 32px; height: 34px; font-size: 1rem; }
.qty.sm input { width: 34px; height: 34px; font-size: .9rem; }

.shop-summary { margin: 26px 0 22px; padding: 22px 0 0; border-top: 1px solid var(--line); }
.sum-row { display: flex; justify-content: space-between; align-items: baseline; }
.sum-row span { font: 400 .8rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.sum-row strong { font: 500 2rem/1 var(--serif); color: var(--cream); }

.free-meter { margin-top: 18px; }
.free-meter .track { height: 3px; background: rgba(184, 115, 51, .16); border-radius: 3px; overflow: hidden; }
.free-meter .fill { height: 100%; width: 0; background: var(--btn-grad); transition: width .6s var(--ease); }
.free-meter p { margin: 10px 0 0; font-size: .88rem; color: var(--cream-2); }
.free-meter p strong { color: var(--copper-light); font-weight: 500; }
.free-meter.done p { color: var(--gold); }

.pay-note { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0 0; font-size: .84rem; color: var(--muted); line-height: 1.55; }
.pay-note svg { width: 16px; height: 16px; color: var(--copper); flex: none; margin-top: 3px; }
.pay-methods { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pay-methods span { font: 500 .66rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--cream-2); border: 1px solid var(--line); padding: 7px 10px; border-radius: 2px; }

/* ---------- Delivery ---------- */
.delivery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.d-card { border: 1px solid var(--line); background: rgba(10, 8, 6, .88); padding: 36px 30px; text-align: center; transition: border-color .4s, transform .5s var(--ease); }
.d-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.d-card .d-icon { width: 60px; height: 60px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-strong); color: var(--copper-light); }
.d-card .d-icon svg { width: 26px; height: 26px; }
.d-card .big { display: block; font: 500 2.6rem/1 var(--serif); color: var(--copper-light); margin-bottom: 8px; }
.d-card h3 { font-size: 1.45rem; color: var(--cream); margin-bottom: 12px; }
.d-card p { font-size: .95rem; color: var(--muted); margin: 0; }
.d-note { text-align: center; margin: 40px auto 0; max-width: 64ch; color: var(--muted); font-size: .95rem; }
.apps { margin: 44px auto 0; max-width: 720px; text-align: center; padding: 30px; border: 1px dashed var(--line-strong); }
.apps p { margin-bottom: 18px; font: italic 1.3rem/1.4 var(--serif); color: var(--cream); }
.apps .btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 4px; font: 500 clamp(1.25rem, 2.2vw, 1.55rem)/1.3 var(--serif); color: var(--cream);
  transition: color .25s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--copper-light); }
.faq-list summary::after { content: "+"; flex: none; font: 300 1.6rem/1 var(--sans); color: var(--copper); transition: transform .4s var(--ease); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list .answer { padding: 0 4px 26px; color: var(--muted); max-width: 70ch; }
.faq-list .answer p:last-child { margin: 0; }

/* ---------- Closing CTA ---------- */
.closing { text-align: center; padding: clamp(90px, 13vw, 170px) 0; overflow: hidden; }
.closing::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 45% 60% at 50% 50%, rgba(184, 115, 51, .2), transparent 70%);
}
.closing .h-section { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 18px; }
.closing .slogan { font: italic 500 clamp(1.3rem, 2.3vw, 1.75rem)/1.4 var(--serif); color: var(--rose-text); margin-bottom: 40px; }

/* ---------- Footer ---------- */
.site-footer { position: relative; z-index: 1; border-top: 1px solid var(--line); background: linear-gradient(#050403, #000); padding: 70px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { width: 84px; height: 84px; border-radius: 50%; margin-bottom: 18px; box-shadow: 0 0 0 1px var(--line-strong); }
.footer-brand .name { font: 500 1.6rem/1.1 var(--serif); color: var(--cream); margin-bottom: 4px; }
.footer-brand .tag { font: italic 1.05rem/1.5 var(--serif); color: var(--rose-text); max-width: 30ch; }
.site-footer h4 { font: 500 .72rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--copper); margin: 10px 0 20px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer li, .site-footer li a { color: var(--muted); font-size: .95rem; }
.site-footer li a:hover { color: var(--copper-light); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--cream-2); }
.socials a:hover { border-color: var(--copper); color: var(--copper-light); }
.socials svg { width: 17px; height: 17px; }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .82rem; color: #7d736a; }
.footer-bottom p { margin: 0; }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: none; }
/* Above the fold: animate straight away rather than waiting for the observer */
.js .hero .reveal { opacity: 1; transform: none; transition: none; animation: rise 1.1s var(--ease) both; animation-delay: calc(var(--i, 0) * .1s + .1s); }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   Checkout
   ========================================================================== */
.page-simple main { padding: clamp(34px, 6vw, 70px) 0 var(--section-y); }
.page-title { font-size: clamp(2.3rem, 5vw, 3.6rem); color: var(--cream); margin-bottom: 10px; }
.page-intro { color: var(--muted); margin-bottom: 44px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font: 400 .74rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.back-link:hover { color: var(--copper-light); }
.back-link svg { width: 14px; height: 14px; }

.checkout-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: start; }
.checkout-form fieldset { border: 0; padding: 0; margin: 0 0 42px; min-width: 0; }
.checkout-form legend { display: flex; align-items: center; gap: 14px; font: 500 1.7rem/1.2 var(--serif); color: var(--cream); margin-bottom: 22px; padding: 0; }
.checkout-form legend .step { font: 500 .7rem/1 var(--sans); letter-spacing: .2em; color: var(--copper); border: 1px solid var(--line-strong); border-radius: 50%; width: 36px; height: 36px; display: grid; place-items: center; }
.field-row { display: grid; gap: 16px; }
.field-row.two { grid-template-columns: 1fr 1fr; }
.field-row.three { grid-template-columns: 1.3fr 1.3fr 1fr; }
.field-row + .field-row { margin-top: 16px; }
.field label { display: block; font: 400 .72rem/1.2 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--cream-2); margin-bottom: 8px; }
.field label .opt { color: var(--muted); letter-spacing: .06em; text-transform: none; font-style: italic; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(18, 14, 11, .9); color: var(--text);
  border: 1px solid rgba(184, 115, 51, .3); border-radius: 2px; padding: 14px 15px;
  font-size: 1rem; font-weight: 400; transition: border-color .25s, box-shadow .25s;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23B87333' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.field select option { background: #111; }
.field textarea { min-height: 96px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #6f665d; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(184, 115, 51, .18); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--rose-text); }
.field-error { margin: 6px 0 0; font-size: .82rem; color: var(--rose-text); min-height: 0; }
.field-error:empty { display: none; }
.hint { font-size: .82rem; color: var(--muted); margin: 6px 0 0; }

.check { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--cream-2); cursor: pointer; }
.check input { flex: none; width: 20px; height: 20px; margin-top: 3px; accent-color: var(--copper); }

.form-alert { border: 1px solid var(--rose-text); background: rgba(158, 42, 43, .14); color: #f1c9c9; padding: 14px 18px; margin-bottom: 20px; font-size: .95rem; }

.summary {
  position: sticky; top: calc(var(--header-h) + 24px);
  background: linear-gradient(160deg, rgba(26, 19, 14, .96), rgba(8, 6, 5, .96));
  border: 1px solid var(--line-strong); padding: clamp(24px, 3vw, 36px);
}
.summary h2 { font-size: 1.8rem; color: var(--cream); margin-bottom: 22px; }
.summary-product { display: flex; gap: 16px; align-items: center; padding-bottom: 20px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
.summary-product img { width: 74px; height: 74px; object-fit: cover; object-position: 41% 50%; border: 1px solid var(--line-strong); }
.summary-product .t { font: 500 1.25rem/1.2 var(--serif); color: var(--cream); }
.summary-product .s { font-size: .85rem; color: var(--muted); }
.line-item { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.line-item .name { font: 500 1.2rem/1.2 var(--serif); color: var(--cream); }
.line-item .unit { display: block; font-size: .8rem; color: var(--muted); }
.line-item .amt { font: 500 1.1rem/1 var(--serif); color: var(--cream-2); min-width: 5.5rem; text-align: right; }
.totals { margin: 20px 0 0; display: grid; gap: 10px; }
.totals div { display: flex; justify-content: space-between; font-size: .95rem; color: var(--cream-2); }
.totals .free { color: var(--gold); }
.totals .grand { margin-top: 10px; padding-top: 16px; border-top: 1px solid var(--line-strong); align-items: baseline; }
.totals .grand span { font: 400 .8rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; }
.totals .grand strong { font: 500 2.1rem/1 var(--serif); color: var(--copper-light); }
.summary .free-meter { margin-top: 22px; }
.summary .btn { margin-top: 26px; }
.summary-empty { text-align: center; padding: 20px 0 6px; }
.summary-empty p { color: var(--muted); }

/* Order result pages */
.result { max-width: 680px; margin: 0 auto; text-align: center; }
.result .seal { width: 150px; margin: 0 auto 34px; }
.result .h-section { margin-bottom: 14px; }
.result .slogan { font: italic 500 1.4rem/1.4 var(--serif); color: var(--rose-text); margin-bottom: 30px; }
.status-pill { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border: 1px solid var(--line-strong); border-radius: 30px; font: 500 .72rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--cream-2); margin-bottom: 26px; }
.status-pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 1.4s ease-in-out infinite; }
.status-pill.ok i { background: #6fbf73; animation: none; }
@keyframes pulse { 50% { opacity: .3; } }
.result .panel { text-align: left; margin: 30px 0; }
.result .actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Policies */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); color: var(--cream); margin: 56px 0 16px; scroll-margin-top: calc(var(--header-h) + 20px); }
.prose h3 { font-size: 1.35rem; color: var(--copper-light); margin: 28px 0 10px; }
.prose p, .prose li { color: #cfc4b7; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 6px; }
.toc { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.toc a { border: 1px solid var(--line); padding: 8px 14px; font: 400 .72rem/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .notes { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  :root { --header-h: 68px; }
  .menu-toggle { display: block; }
  .nav {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; gap: 26px;
    background: rgba(0, 0, 0, .97);
    opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
  }
  .nav a { font: 500 2rem/1.2 var(--serif); letter-spacing: .04em; text-transform: none; }
  .nav .nav-cta { font: 500 .8rem/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; padding: 16px 30px; margin-top: 10px; }
  .menu-open .nav { opacity: 1; visibility: visible; }
  .menu-open { overflow: hidden; }
  .site-header .header-inner { position: relative; z-index: 2; }

  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-left: auto; margin-right: auto; }
  .hero-copy .eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .7; }
  .hero-actions, .trust { justify-content: center; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .price-seal { left: -8px; bottom: -20px; width: 100px; height: 100px; }
  .price-seal strong { font-size: 1.7rem; }
  .scroll-cue { display: none; }

  .profile-row, .story-grid, .shop-grid, .checkout-grid { grid-template-columns: 1fr; }
  .story-grid .seal-wrap { max-width: 340px; }
  .shop-visual { position: relative; top: 0; max-width: 480px; margin: 0 auto; width: 100%; }
  .ritual-grid { grid-template-columns: 1fr; }
  .ritual-step + .ritual-step { border-left: 0; border-top: 1px solid var(--line); }
  .delivery-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .summary { position: relative; top: 0; order: -1; }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }
  .brand-name { font-size: 1.15rem; }
  .brand-sub { letter-spacing: .26em; }
  .brand img { width: 40px; height: 40px; }
  .header-inner { gap: 10px; }
  .bag, .menu-toggle { width: 42px; height: 42px; }
  .menu-toggle span { left: 12px; right: 12px; }
  .menu-toggle span:nth-child(1) { top: 17px; }
  .menu-toggle span:nth-child(2) { top: 24px; }
  .menu-open .menu-toggle span:nth-child(1), .menu-open .menu-toggle span:nth-child(2) { top: 20.5px; }
  .announce { font-size: .64rem; letter-spacing: .12em; }

  .hero-actions .btn { flex: 1 1 100%; }
  .notes { grid-template-columns: 1fr; }
  .meter { grid-template-columns: 6.2rem 1fr; }
  .meter .val { grid-column: 2; text-align: left; margin-top: -4px; font-size: .95rem; }
  .option { grid-template-columns: 1fr auto; padding: 18px; }
  .option .qty { grid-column: 1 / -1; justify-self: start; }
  .option-price { text-align: right; }
  .field-row.two, .field-row.three { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .line-item { grid-template-columns: 1fr auto; }
  .line-item .amt { grid-column: 2; grid-row: 1; }
  .line-item .qty { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* backdrop-filter would trap the fixed mobile menu inside the header */
.menu-open .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: transparent; border-bottom-color: transparent; }
.line-item .qty { justify-self: start; }
.brand-name { white-space: nowrap; }
@media (max-width: 420px) {
  .secure-badge span { display: none; }
  .secure-badge svg { width: 20px; height: 20px; }
}
.brand { min-width: 0; }
.brand-text { min-width: 0; }
.brand-name { overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 380px) {
  .brand { gap: 8px; }
  .brand img { width: 34px; height: 34px; }
  .brand-name { font-size: 1rem; }
  .brand-sub { font-size: .52rem; letter-spacing: .2em; }
  .header-inner { gap: 8px; }
  .bag, .menu-toggle { width: 38px; height: 38px; flex: none; }
  .menu-toggle span { left: 11px; right: 11px; }
  .menu-toggle span:nth-child(1) { top: 15px; }
  .menu-toggle span:nth-child(2) { top: 22px; }
  .menu-open .menu-toggle span:nth-child(1), .menu-open .menu-toggle span:nth-child(2) { top: 18.5px; }
}

/* Sandbox-mode notice (only shown while PayFast:Mode is Sandbox) */
.test-banner { position: relative; z-index: 70; background: var(--rose); color: #fff; text-align: center; font: 500 .78rem/1.4 var(--sans); letter-spacing: .08em; padding: 9px var(--gutter); }
