@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --espresso: #1a1613;
  --espresso-soft: #28211c;
  --ink: #120f0d;
  --cream: #f2ede3;
  --paper: #faf7f1;
  --gold: #c6a86b;
  --gold-soft: #ddc99f;
  --teal: #2f7c7a;
  --latte: #d7c3a8;
  --carmine: #6e1e2a;
  --muted-dark: #8f8378;
  --muted-light: #6e655c;
  --line-dark: rgba(242, 237, 227, 0.14);
  --line-gold: rgba(198, 168, 107, 0.34);
  --shadow: 0 24px 70px rgba(18, 15, 13, 0.18);
  --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 17px; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--espresso);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
body.nav-open { overflow: hidden; }
* { cursor: none !important; }
a { color: inherit; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--teal); color: white; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 2000;
  transform: translateY(-150%);
  background: var(--cream);
  color: var(--espresso);
  padding: .75rem 1rem;
}
.skip-link:focus { transform: translateY(0); }

.cursor {
  position: fixed;
  z-index: 3000;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cursor img { width: 32px; height: 32px; }
.cursor .cursor-hover, .cursor.hover-active .cursor-normal { display: none; }
.cursor.hover-active .cursor-hover { display: block; }

.announcement {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem 1rem;
  background: var(--teal);
  color: white;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
}

.site-nav {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 1.35rem;
  padding: 1.4rem 4rem;
  background: linear-gradient(to bottom, rgba(26, 22, 19, .94), rgba(26, 22, 19, .58), transparent);
  transition: background .25s, padding .25s, box-shadow .25s;
}
.site-nav.scrolled {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(26, 22, 19, .96);
  box-shadow: 0 1px 0 var(--line-dark);
  backdrop-filter: blur(16px);
}
.brand {
  flex: 0 0 auto;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: .22em;
  line-height: .9;
  text-decoration: none;
  text-transform: uppercase;
}
.brand small {
  display: block;
  margin-top: .35rem;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: .42rem;
  font-weight: 400;
  letter-spacing: .34em;
  opacity: .65;
}
.nav-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  color: var(--cream);
  font-size: .61rem;
  font-weight: 400;
  letter-spacing: .2em;
  opacity: .72;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s, opacity .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-soft); opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.icon-button, .nav-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(26, 22, 19, .54);
  border: 1px solid var(--line-gold);
  color: var(--gold);
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.icon-button:hover, .nav-toggle:hover { background: rgba(198, 168, 107, .12); border-color: var(--gold); }
.icon-button svg { width: 17px; height: 17px; }
.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--carmine);
  color: white;
  font-size: .56rem;
  font-weight: 600;
}
.nav-toggle { display: none; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  position: relative;
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .25s, opacity .25s;
}
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .82rem 1.45rem;
  border: 1px solid transparent;
  background: transparent;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--gold); color: var(--espresso); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn-secondary { color: var(--gold-soft); border-color: var(--line-gold); }
.btn-secondary:hover { background: rgba(198, 168, 107, .1); border-color: var(--gold); }
.btn-dark { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.btn-dark:hover { background: var(--teal); border-color: var(--teal); }
.btn[disabled], button[disabled] { opacity: .45; pointer-events: none; }
.button-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 11rem 4rem 6rem;
}
.hero-video, .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image { background-size: cover; background-position: center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26, 22, 19, .93) 0%, rgba(26, 22, 19, .3) 55%, rgba(26, 22, 19, .68) 100%),
    radial-gradient(circle at 70% 40%, transparent 0%, rgba(26, 22, 19, .25) 70%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(220px, 1fr);
  gap: 4rem;
  align-items: end;
}
.hero-copy { max-width: 820px; }
.eyebrow, .section-kicker, .card-kicker, .fine-label {
  color: var(--gold);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.eyebrow { display: block; margin-bottom: 1.2rem; }
.hero h1, .page-hero h1, .display, .section-title, .product-detail h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0;
}
.hero h1 { max-width: 860px; font-size: clamp(3.5rem, 8vw, 7.8rem); line-height: .84; }
.hero h1 em, .page-hero h1 em, .section-title em, .display em { color: var(--gold); font-weight: 400; }
.hero-lead {
  max-width: 600px;
  margin: 1.5rem 0 0;
  color: rgba(242, 237, 227, .78);
  font-size: .88rem;
  line-height: 1.9;
}
.hero .button-row { margin-top: 2rem; }
.hero-aside {
  border-left: 1px solid var(--line-gold);
  padding-left: 1.5rem;
  color: rgba(242, 237, 227, .68);
  font-size: .7rem;
  line-height: 1.8;
}
.hero-aside strong { display: block; margin-bottom: .55rem; color: var(--cream); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.scroll-mark {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 3;
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--gold), transparent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: .35; transform: scaleY(.65); } 50% { opacity: 1; transform: scaleY(1); } }

.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 12rem 4rem 5rem;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 22, 19, .95), rgba(26, 22, 19, .24) 65%, rgba(26, 22, 19, .72));
}
.page-hero-content { position: relative; z-index: 2; width: min(100%, var(--max)); margin: 0 auto; }
.page-hero h1 { max-width: 850px; font-size: clamp(3rem, 7vw, 6.8rem); line-height: .9; }
.page-intro { max-width: 720px; margin: 1.35rem 0 0; color: rgba(242, 237, 227, .75); font-size: .86rem; line-height: 1.9; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1rem; color: var(--muted-dark); font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; }
.breadcrumbs a { color: var(--gold); text-decoration: none; }

.section { position: relative; padding: 8rem 4rem; background: var(--espresso); }
.section::before { content: ''; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(to right, transparent, var(--line-gold), transparent); }
.section-light { background: var(--paper); color: var(--espresso); }
.section-teal { background: var(--teal); color: white; }
.section-carmine { background: var(--carmine); color: white; }
.container { width: min(100%, var(--max)); margin: 0 auto; }
.section-heading { max-width: 760px; margin-bottom: 3.5rem; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-kicker { display: block; margin-bottom: 1rem; }
.section-title { font-size: clamp(2.6rem, 5vw, 5.1rem); line-height: .96; }
.section-copy, .body-copy { color: rgba(242, 237, 227, .72); font-size: .83rem; line-height: 1.9; }
.section-light .section-copy, .section-light .body-copy { color: var(--muted-light); }
.section-heading .section-copy { max-width: 680px; margin: 1.2rem 0 0; }
.section-heading.center .section-copy { margin-left: auto; margin-right: auto; }

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line-gold);
}
.trust-item { min-height: 130px; padding: 1.5rem; border-right: 1px solid var(--line-gold); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--gold-soft); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }
.trust-item span { display: block; margin-top: .55rem; color: rgba(242, 237, 227, .82); font-size: .72rem; font-weight: 400; line-height: 1.7; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.product-card {
  position: relative;
  min-width: 0;
  min-height: 640px;
  overflow: hidden;
  background: #e9e0d1;
  border: 1px solid rgba(26, 22, 19, .12);
  border-radius: 8px;
  color: var(--espresso);
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-visual { height: 435px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(150deg, #f6f0e5, #d7c5ab); }
.product-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.product-card:hover .product-visual img { transform: scale(1.025); }
.product-card-info { padding: 1.6rem; }
.card-kicker { color: var(--teal); }
.product-card.napoli .card-kicker { color: var(--carmine); }
.product-card h3 { margin: .55rem 0 .65rem; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500; line-height: 1; }
.product-card p { margin: 0; color: var(--muted-light); font-size: .72rem; line-height: 1.7; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid rgba(26, 22, 19, .13); }
.price { color: var(--espresso); font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; font-weight: 600; }
.price small { font-family: 'Montserrat', sans-serif; font-size: .55rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; }
.text-link { color: var(--teal); font-size: .6rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }

.spectrum { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-gold); border: 1px solid var(--line-gold); }
.spectrum-item { padding: 2rem; background: var(--espresso); color: var(--cream); }
.spectrum-item h3 { margin: .5rem 0 .75rem; color: inherit; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500; }
.spectrum-item p { margin: 0; color: rgba(242, 237, 227, .66); font-size: .75rem; line-height: 1.8; }
.spectrum-rule { width: 42px; height: 2px; margin-bottom: 1.3rem; background: var(--teal); }
.spectrum-item.milano .spectrum-rule { background: var(--latte); }
.spectrum-item.napoli .spectrum-rule { background: var(--carmine); }

.combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.combo-card { display: flex; flex-direction: column; min-height: 430px; padding: 2rem; border: 1px solid rgba(26, 22, 19, .16); border-radius: 8px; background: white; color: var(--espresso); }
.combo-card.featured { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.combo-number { color: var(--teal); font-family: 'Cormorant Garamond', serif; font-size: 4.8rem; line-height: .8; }
.featured .combo-number { color: var(--gold); }
.combo-card h3 { margin: 1.5rem 0 .75rem; font-family: 'Cormorant Garamond', serif; font-size: 2.35rem; font-weight: 500; line-height: 1; }
.combo-card p { margin: 0; color: var(--muted-light); font-size: .75rem; line-height: 1.8; }
.featured p { color: rgba(242, 237, 227, .66); }
.combo-list { margin: 1.4rem 0 0; padding: 0; list-style: none; }
.combo-list li { padding: .65rem 0; border-top: 1px solid rgba(26, 22, 19, .12); font-size: .7rem; }
.featured .combo-list li { border-color: var(--line-dark); }
.combo-footer { margin-top: auto; padding-top: 2rem; }
.combo-price { display: block; margin-bottom: 1rem; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; }

.story-split, .product-detail, .checkout-layout, .subscription-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 5rem;
  align-items: start;
}
.story-image { min-height: 620px; overflow: hidden; border-radius: 8px; }
.story-image img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.story-copy h2 { margin: 0; font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 400; line-height: .96; }
.story-copy p { color: rgba(242, 237, 227, .7); font-size: .83rem; line-height: 1.9; }
.quote { margin: 2rem 0; padding: 1.5rem 0 1.5rem 1.5rem; border-left: 2px solid var(--teal); font-family: 'Cormorant Garamond', serif; font-size: 1.65rem; line-height: 1.35; }

.product-detail { grid-template-columns: minmax(0, 600px) minmax(360px, 1fr); }
.product-gallery { position: sticky; top: 8.5rem; min-height: 670px; overflow: hidden; border-radius: 8px; background: var(--paper); }
.product-gallery img { width: 100%; height: 670px; object-fit: cover; }
.product-panel h1 { font-size: clamp(3rem, 5vw, 5.5rem); line-height: .9; }
.product-subtitle { margin: 1rem 0; color: var(--gold-soft); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
.rating-row { display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; padding: 1rem 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); color: var(--muted-dark); font-size: .65rem; }
.purchase-box { margin-top: 1.7rem; padding: 1.5rem; border: 1px solid var(--line-gold); border-radius: 8px; }
.purchase-price { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.purchase-price strong { color: var(--gold-soft); font-family: 'Cormorant Garamond', serif; font-size: 2.9rem; line-height: 1; }
.purchase-price span { color: var(--muted-dark); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.purchase-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 1.4rem; background: var(--line-gold); border: 1px solid var(--line-gold); }
.purchase-mode { min-height: 90px; padding: 1rem; background: var(--espresso); text-decoration: none; }
.purchase-mode strong { display: block; color: var(--gold); font-size: .64rem; letter-spacing: .15em; text-transform: uppercase; }
.purchase-mode span { display: block; margin-top: .4rem; color: var(--muted-dark); font-size: .66rem; line-height: 1.6; }
.purchase-actions { display: grid; grid-template-columns: 120px 1fr; gap: .75rem; margin-top: 1rem; }
.quantity { display: grid; grid-template-columns: 34px 1fr 34px; height: 44px; border: 1px solid var(--line-gold); }
.quantity button, .quantity input { width: 100%; border: 0; background: transparent; color: var(--cream); text-align: center; }
.quantity button:hover { background: rgba(198, 168, 107, .1); }
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 2rem; background: var(--line-dark); border: 1px solid var(--line-dark); }
.spec { padding: 1.2rem; background: var(--espresso); }
.spec dt { color: var(--gold); font-size: .55rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.spec dd { margin: .5rem 0 0; color: rgba(242, 237, 227, .7); font-size: .7rem; line-height: 1.7; }

.recipe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-gold); border: 1px solid var(--line-gold); }
.recipe { padding: 1.6rem; background: var(--paper); color: var(--espresso); }
.recipe h3 { margin: 0 0 .7rem; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 500; }
.recipe p { margin: 0; color: var(--muted-light); font-size: .7rem; line-height: 1.75; }

.subscription-band { position: relative; overflow: hidden; }
.subscription-band::after { content: 'ABBONAMENTO'; position: absolute; right: -2rem; bottom: -3rem; color: rgba(255,255,255,.06); font-family: 'Cormorant Garamond', serif; font-size: 9rem; letter-spacing: .08em; }
.subscription-price { margin: 1rem 0; font-family: 'Cormorant Garamond', serif; font-size: clamp(3.2rem, 6vw, 6.2rem); line-height: .9; }
.subscription-price small { display: block; margin-top: .7rem; font-family: 'Montserrat', sans-serif; font-size: .62rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; }
.mock-badge { display: inline-flex; padding: .45rem .65rem; border: 1px solid rgba(255,255,255,.34); font-size: .55rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.subscription-form, .form-panel { padding: 2rem; border: 1px solid rgba(255,255,255,.25); border-radius: 8px; background: rgba(26, 22, 19, .24); backdrop-filter: blur(10px); }
.subscription-form h2, .form-panel h2 { margin: 0 0 1.5rem; font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 500; }
.field { display: grid; gap: .45rem; margin-bottom: 1rem; }
.field label, .field-label { font-size: .56rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.input, .select, .textarea {
  width: 100%;
  min-height: 46px;
  padding: .8rem .9rem;
  border: 1px solid var(--line-gold);
  border-radius: 0;
  background: rgba(26, 22, 19, .76);
  color: var(--cream);
  outline: none;
}
.section-light .input, .section-light .select, .section-light .textarea { background: white; color: var(--espresso); border-color: rgba(26,22,19,.2); }
.textarea { min-height: 130px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(198,168,107,.18); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 1rem; }
.form-full { grid-column: 1 / -1; }
.form-note { color: rgba(255,255,255,.68); font-size: .66rem; line-height: 1.7; }
.section-light .form-note { color: var(--muted-light); }

.checkout-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 2rem; border-bottom: 1px solid var(--line-gold); }
.checkout-step { padding: 1rem .5rem; color: var(--muted-dark); font-size: .58rem; font-weight: 500; letter-spacing: .16em; text-align: center; text-transform: uppercase; }
.checkout-step.active { color: var(--gold); border-bottom: 2px solid var(--gold); }
[data-checkout-panel] { display: none; }
[data-checkout-panel].active { display: block; }
.cart-list { display: grid; gap: .75rem; }
.empty-cart { padding: 3rem 1rem; border: 1px solid var(--line-dark); text-align: center; color: var(--muted-dark); }
.cart-item { display: grid; grid-template-columns: 88px minmax(0,1fr) auto; gap: 1rem; align-items: center; padding: 1rem; border: 1px solid var(--line-dark); color: var(--cream); }
.cart-thumb { width: 88px; height: 88px; object-fit: cover; background: var(--paper); }
.cart-item h3 { margin: 0; font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; }
.cart-item p { margin: .25rem 0 .65rem; color: var(--muted-dark); font-size: .64rem; }
.cart-item-price { color: var(--gold-soft); font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; text-align: right; }
.cart-controls { display: flex; align-items: center; gap: .7rem; }
.cart-controls button { padding: .25rem .5rem; border: 1px solid var(--line-dark); background: transparent; color: var(--muted-dark); }
.cart-summary { position: sticky; top: 8.5rem; padding: 1.5rem; border: 1px solid var(--line-gold); border-radius: 8px; }
.summary-line { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line-dark); color: var(--muted-dark); font-size: .7rem; }
.summary-total { color: var(--cream); font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; }
.checkout-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
.confirmation { padding: 3rem; border: 1px solid var(--line-gold); text-align: center; }
.confirmation h2 { margin: 1rem 0; font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 500; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.article-card { min-height: 390px; display: flex; flex-direction: column; padding: 2rem; border: 1px solid var(--line-dark); border-radius: 8px; color: var(--cream); text-decoration: none; transition: border-color .2s, background .2s; }
.article-card:hover { border-color: var(--gold); background: rgba(198,168,107,.05); }
.article-card h3 { margin: 1.2rem 0 .8rem; font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500; line-height: 1.05; }
.article-card p { margin: 0; color: rgba(242,237,227,.66); font-size: .73rem; line-height: 1.8; }
.article-card .text-link { margin-top: auto; padding-top: 2rem; color: var(--gold); }
.article-body { max-width: 820px; margin: 0 auto; }
.article-body h2 { margin: 2.2rem 0 1rem; font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 500; }
.article-body h3 { margin: 1.8rem 0 .7rem; color: inherit; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 500; }
.article-body p, .article-body li { color: rgba(242,237,227,.7); font-size: .82rem; line-height: 1.9; }
.article-body a { color: var(--gold-soft); }

.faq { display: grid; gap: .6rem; }
.faq details { border: 1px solid var(--line-dark); padding: 1.1rem 1.25rem; }
.faq summary { color: inherit; font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin: .8rem 0 0; color: var(--muted-dark); font-size: .72rem; line-height: 1.8; }
.section-light .faq details { border-color: rgba(26, 22, 19, .16); }
.section-light .faq details p { color: var(--muted-light); }

.toast {
  position: fixed;
  top: 7.5rem;
  right: 1.5rem;
  z-index: 1800;
  max-width: min(360px, calc(100vw - 3rem));
  padding: 1rem 1.2rem;
  border: 1px solid var(--line-gold);
  background: rgba(26,22,19,.97);
  color: var(--cream);
  box-shadow: var(--shadow);
  font-size: .72rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s;
}
.toast.visible { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

.site-footer { padding: 5rem 4rem 2rem; background: #100d0b; border-top: 1px solid var(--line-dark); }
.footer-grid { width: min(100%, var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1.1fr repeat(3, .7fr); gap: 3rem; }
.footer-brand { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 2rem; letter-spacing: .17em; text-transform: uppercase; }
.footer-copy { max-width: 340px; color: var(--muted-dark); font-size: .7rem; line-height: 1.8; }
.footer-column h3 { margin: 0 0 1rem; color: var(--cream); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; }
.footer-column a { display: block; margin: .6rem 0; color: var(--muted-dark); font-size: .67rem; text-decoration: none; }
.footer-column a:hover { color: var(--gold); }
.footer-bottom { width: min(100%, var(--max)); margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); color: var(--muted-dark); font-size: .58rem; letter-spacing: .08em; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 1380px) {
  .site-nav { padding-left: 1.5rem; padding-right: 1.5rem; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-menu {
    position: fixed;
    top: 34px;
    right: 0;
    width: min(420px, 100vw);
    height: calc(100vh - 34px);
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    background: rgba(26,22,19,.985);
    border-left: 1px solid var(--line-dark);
    transform: translateX(100%);
    transition: transform .28s ease;
  }
  body.nav-open .nav-menu { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .nav-links a { font-size: .78rem; }
  .nav-actions { align-items: stretch; }
  .hero, .page-hero, .section { padding-left: 2rem; padding-right: 2rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
  .product-card { min-height: 580px; }
  .product-visual { height: 380px; }
  .story-split, .product-detail, .checkout-layout, .subscription-builder { grid-template-columns: 1fr; }
  .product-gallery, .cart-summary { position: relative; top: auto; }
  .product-gallery { min-height: 560px; }
  .product-gallery img { height: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body, * { cursor: auto !important; }
  .cursor { display: none; }
  .announcement { min-height: 36px; font-size: .52rem; letter-spacing: .11em; }
  .site-nav { top: 36px; padding: 1rem; }
  .brand { font-size: 1.15rem; letter-spacing: .17em; }
  .nav-menu { top: 36px; height: calc(100vh - 36px); }
  .nav-actions .btn { display: none; }
  .hero { min-height: 86vh; padding: 9rem 1.2rem 4rem; }
  .hero h1 { font-size: clamp(3.2rem, 17vw, 5rem); }
  .hero-lead { font-size: .78rem; }
  .page-hero { min-height: 56vh; padding: 9rem 1.2rem 4rem; }
  .page-hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .section { padding: 5.5rem 1.2rem; }
  .section-title { font-size: clamp(2.5rem, 13vw, 4rem); }
  .trust-bar, .product-grid, .spectrum, .combo-grid, .recipe-grid, .article-grid, .footer-grid, .form-grid, .specs { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line-gold); }
  .trust-item:last-child { border-bottom: 0; }
  .product-card { min-height: 600px; }
  .product-visual { height: 420px; }
  .combo-card { min-height: 390px; }
  .story-image, .story-image img { min-height: 440px; }
  .product-gallery, .product-gallery img { min-height: 0; height: 480px; }
  .purchase-modes, .purchase-actions { grid-template-columns: 1fr; }
  .quantity { width: 120px; }
  .cart-item { grid-template-columns: 68px 1fr; }
  .cart-thumb { width: 68px; height: 68px; }
  .cart-item-price { grid-column: 2; text-align: left; }
  .checkout-actions { flex-direction: column-reverse; }
  .checkout-actions .btn { width: 100%; }
  .confirmation { padding: 2rem 1rem; }
  .footer-grid { gap: 2rem; }
  .site-footer { padding: 4rem 1.2rem 2rem; }
  .subscription-band::after { display: none; }
}

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

/* Session access gate */
html.auth-checking body { visibility: hidden; }
html.auth-locked,
html.auth-locked body { min-height: 100%; overflow: hidden; }
html.auth-locked body > :not(.auth-gate) { display: none !important; }

.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 3rem;
  overflow: auto;
  isolation: isolate;
  background: #171310;
  color: var(--cream);
}
.auth-gate,
.auth-gate * { cursor: auto !important; }
.auth-gate button { cursor: pointer !important; }
.auth-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('frames/frame0120.jpg') center 42% / cover no-repeat;
  filter: saturate(.72) contrast(1.08);
}
.auth-gate::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(18,15,13,.92) 0%, rgba(18,15,13,.72) 48%, rgba(18,15,13,.88) 100%);
}
.auth-shell {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: end;
}
.auth-brand { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; min-height: 560px; }
.auth-kicker,
.auth-step,
.auth-form label,
.auth-status {
  margin: 0;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.auth-kicker { color: var(--gold-soft); }
.auth-wordmark {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.9rem, 8vw, 8.8rem);
  font-weight: 400;
  line-height: .72;
}
.auth-tagline {
  margin: 0;
  color: var(--gold-soft);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.15;
}
.auth-panel {
  padding: 1rem 0 1rem 2.5rem;
  border-left: 1px solid rgba(221,201,159,.42);
}
.auth-step { display: block; margin-bottom: 4rem; color: var(--gold-soft); }
.auth-panel h1 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 5vw, 5.1rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .92;
}
.auth-panel h1 em { color: var(--gold-soft); font-weight: 400; }
.auth-intro { max-width: 34rem; margin: 1.7rem 0 3.2rem; color: rgba(242,237,227,.72); font-size: .82rem; }
.auth-form label { display: block; margin-bottom: .75rem; color: var(--gold-soft); }
.auth-input-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; border-bottom: 1px solid rgba(242,237,227,.38); }
.auth-input-row:focus-within { border-color: var(--gold); }
.auth-input-row input {
  width: 100%;
  min-width: 0;
  height: 60px;
  padding: 0 .4rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  font-size: 1.35rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .55em;
}
.auth-input-row button {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 132px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cream);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.auth-input-row button span:last-child { color: var(--gold-soft); font-size: 1.1rem; }
.auth-input-row button:disabled { opacity: .55; }
.auth-status { min-height: 2.6em; margin-top: .9rem; color: rgba(242,237,227,.5); letter-spacing: .08em; line-height: 1.4; }
.auth-form.has-error .auth-input-row { border-color: #c76973; }
.auth-form.has-error .auth-status { color: #df9098; }

@media (max-width: 760px) {
  .auth-gate { place-items: start stretch; padding: 2rem 1.25rem; }
  .auth-gate::after { background: rgba(18,15,13,.82); }
  .auth-shell { grid-template-columns: 1fr; gap: 3rem; margin: auto 0; }
  .auth-brand { min-height: 230px; }
  .auth-wordmark { font-size: clamp(4.4rem, 23vw, 6.2rem); line-height: .74; }
  .auth-tagline { font-size: 1.2rem; }
  .auth-panel { padding: 2rem 0 0; border-top: 1px solid rgba(221,201,159,.42); border-left: 0; }
  .auth-step { margin-bottom: 2.2rem; }
  .auth-panel h1 { font-size: clamp(3.2rem, 15vw, 4.4rem); }
  .auth-intro { margin: 1.3rem 0 2.2rem; }
}

@media (max-width: 430px) {
  .auth-input-row { grid-template-columns: 1fr; }
  .auth-input-row button { min-height: 50px; border-top: 1px solid rgba(242,237,227,.14); }
}
