/* ==========================================================================
   Helios — Design System
   Palette sampled directly from brand label/logo art:
   sage #8FA37F · ink-plum #1C1926 · gold #B8935C
   ========================================================================== */

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

:root {
  --ink: #1C1926;
  --ink-soft: #2B2637;
  --ink-soft-2: #3A3446;

  --sage: #7E9470;
  --sage-light: #B7C6A8;
  --sage-pale: #EEF1E7;
  --sage-dark: #566B49;

  --plum: #3A2E45;
  --plum-light: #5C4A68;

  --gold: #A97F42;
  --gold-light: #D8B98A;
  --gold-dark: #7C5D30;

  --cream: #FAF7EF;
  --cream-dark: #F1E9D8;

  --shadow-soft: 0 10px 40px -12px rgb(28 25 38 / 0.25);
  --shadow-lift: 0 20px 60px -16px rgb(28 25 38 / 0.35);

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur-fast: 180ms;
  --dur-med: 320ms;
  --dur-slow: 600ms;

  --z-nav: 100;
  --z-mobile-menu: 150;
  --z-cart: 200;
  --z-cookie: 260;

  --maxw: 1240px;
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }

p { max-width: 68ch; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-dark);
}

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

section { position: relative; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.9rem 1.4rem;
  border-radius: 8px;
  z-index: 1000;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  min-height: 48px;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--cream);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid currentColor;
}
.btn-outline.on-dark { color: var(--cream); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-outline.on-dark:hover { background: var(--cream); color: var(--ink); }

.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

.btn-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.btn-icon:hover { background: rgb(255 255 255 / 0.12); }

.icon { width: 1.15em; height: 1.15em; flex-shrink: 0; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav-reveal {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: 92px;
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.6rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  background: #000;
  color: var(--cream);
  transform: translateY(-100%);
  transition: transform var(--dur-med) var(--ease);
}
.nav-reveal:hover .nav,
.nav-reveal:focus-within .nav {
  transform: translateY(0);
}

/* Touch devices have no real hover state — iOS Safari fakes "hover" on the
   first tap, which made the hidden nav nearly impossible to open reliably.
   Keep it always visible wherever there's no mouse to trigger the reveal. */
@media (hover: none), (pointer: coarse) {
  .nav { transform: translateY(0); }
}
.nav.is-scrolled {
  background: #000;
}
.nav-brand {
  display: flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav-brand .icon { display: block; width: 2.9rem; height: 1.27rem; object-fit: contain; }

.nav-links {
  display: none;
  align-items: center;
  gap: 2.2rem;
  margin-left: auto;
  margin-right: 2.4rem;
}
.nav-links a {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold-light);
  transition: right var(--dur-med) var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--gold-light); }

.nav-actions { display: flex; align-items: center; gap: 0.35rem; }

.cart-bubble {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 600;
  min-width: 17px; height: 17px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  transform: scale(0);
  transition: transform var(--dur-fast) var(--ease);
}
.cart-bubble.show { transform: scale(1); }

.nav-toggle { display: inline-flex; }

@media (min-width: 900px) {
  .nav { padding-left: 1.6rem; }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-mobile-menu);
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility var(--dur-med);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; }
.mobile-menu-close { position: absolute; top: 1.5rem; right: 1.5rem; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[data-reveal].is-visible { transition-delay: var(--reveal-delay, 0ms); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   SCROLL-DOWN INDICATOR
   ========================================================================== */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2.4rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
  opacity: 0.85;
}
.scroll-cue span {
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, rgb(250 247 239 / 0.9), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: '';
  position: absolute;
  left: 0; top: -40%;
  width: 100%; height: 40%;
  background: var(--gold-light);
  animation: cue-drop 2.2s var(--ease) infinite;
}
@keyframes cue-drop {
  0% { top: -40%; }
  60% { top: 100%; }
  100% { top: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue .line::after { animation: none; top: 60%; }
}

/* ==========================================================================
   HERO (home)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  filter: brightness(1.22) saturate(1.12);
  will-change: transform;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgb(28 25 38 / 0.12) 0%, rgb(28 25 38 / 0.06) 40%, rgb(28 25 38 / 0.35) 82%, #000 100%);
}
.hero-logo-link {
  position: absolute;
  left: calc(6% - 1in);
  top: calc(42% - 1in);
  width: calc(88% + 2in);
  height: calc(42% + 2in);
  z-index: 1;
}
.hero-coming-soon {
  position: absolute;
  left: calc(50% - 0.625in - 0.5cm);
  top: calc(68% + 0.5in);
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  margin: 0;
  text-align: center;
  color: var(--cream);
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
  white-space: nowrap;
}
.hero-footer-spacer {
  height: 4in;
  background: #000;
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--cream);
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content h1 { color: var(--cream); margin-top: 0.9rem; max-width: 15ch; }
.hero-content .lede {
  margin-top: 1.4rem;
  max-width: 46ch;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgb(250 247 239 / 0.86);
}
.hero-ctas {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* smaller page banner hero (about / shop) */
.page-banner {
  position: relative;
  height: 72vh;
  min-height: 460px;
  background: var(--ink);
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--banner-image, none);
  background-size: cover;
  background-position: center;
}
.page-banner > * { position: relative; z-index: 1; }
.page-banner h1 { color: var(--cream); margin-top: 0.7rem; }
.page-banner .eyebrow { color: var(--gold-light); }
.page-banner p { color: rgb(250 247 239 / 0.82); margin-top: 1rem; }

/* ==========================================================================
   SECTIONS — general
   ========================================================================== */
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-cream { background: var(--cream); }
.section-pale { background: var(--sage-pale); }
.section-ink { background: var(--ink); color: var(--cream); }
.section-ink p { color: rgb(250 247 239 / 0.78); }

.section-head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.7rem; }
.section-head p { margin-top: 1.1rem; color: var(--ink-soft-2); }
.section-ink .section-head p { color: rgb(250 247 239 / 0.78); }

/* ---- Values grid ---- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .values-grid { grid-template-columns: repeat(5, 1fr); gap: 1.6rem; } }

.value-card { text-align: left; }
.value-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sage-pale);
  color: var(--sage-dark);
  margin-bottom: 1.4rem;
  transition: transform var(--dur-med) var(--ease);
}
.section-ink .value-card .icon-wrap { background: rgb(255 255 255 / 0.08); color: var(--gold-light); }
.value-card:hover .icon-wrap { transform: translateY(-4px) rotate(-4deg); }
.value-card h3 { margin-bottom: 0.6rem; }
.value-card p { font-size: 0.92rem; color: var(--ink-soft-2); }
.section-ink .value-card p { color: rgb(250 247 239 / 0.72); }

/* ---- Origin teaser / editorial split ---- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 5vw; } }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.media-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lift);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease); }
.media-frame:hover img { transform: scale(1.05); }
.media-frame::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.15);
  border-radius: inherit;
}

.editorial p { margin-top: 1.1rem; color: var(--ink-soft-2); }
.editorial .lead { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.15rem,1.6vw,1.4rem); font-style: italic; color: var(--ink); }

/* ---- Community band ---- */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.tag-pill {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgb(28 25 38 / 0.14);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft-2);
}
.section-ink .tag-pill { border-color: rgb(255 255 255 / 0.2); color: rgb(250 247 239 / 0.85); }

/* ---- Product teaser (home) ---- */
.product-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--cream-dark);
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 900px) { .product-teaser { grid-template-columns: 0.8fr 1fr; gap: 4vw; } }
.product-teaser .bottle-shot { max-width: 260px; margin-inline: auto; filter: drop-shadow(0 30px 40px rgb(28 25 38 / 0.22)); }
.product-teaser .price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold-dark); margin-top: 1rem; }
.product-teaser .btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.product-teaser .stars { color: var(--gold); display:flex; gap:2px; margin-top: 0.6rem; }
.product-teaser .stars svg { width: 15px; height: 15px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #000;
  color: rgb(250 247 239 / 0.75);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr 1fr; gap: 2rem; } }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--cream); margin-bottom: 0.9rem; }
.footer-brand .icon { color: var(--gold-light); }
.footer-col h4 { font-family: 'Jost', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.1rem; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.9rem; transition: color var(--dur-fast) var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgb(255 255 255 / 0.18); display: flex; align-items: center; justify-content: center; transition: background-color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.newsletter-form { display: flex; gap: 0.6rem; margin-top: 1rem; max-width: 340px; }
.newsletter-form input {
  flex: 1;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  color: var(--cream);
  font-size: 0.85rem;
  min-height: 44px;
}
.newsletter-form input::placeholder { color: rgb(250 247 239 / 0.5); }
.newsletter-form button {
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--dur-fast) var(--ease);
}
.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
  padding-block: 1.6rem;
  font-size: 0.78rem;
  color: rgb(250 247 239 / 0.5);
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ==========================================================================
   SHOP PAGE
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media (min-width: 720px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

.product-card {
  background: var(--cream);
  border: 1px solid rgb(28 25 38 / 0.08);
  border-radius: 24px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-6px); }

.product-card .badge {
  align-self: flex-start;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--sage-pale);
  color: var(--sage-dark);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.product-card .shot-wrap {
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.6rem;
  border-radius: 16px;
  background: radial-gradient(ellipse at center, var(--sage-pale) 0%, var(--cream-dark) 75%);
  overflow: hidden;
}
.product-card .shot-wrap img { max-height: 92%; width: auto; transition: transform var(--dur-slow) var(--ease); }
.product-card:hover .shot-wrap img { transform: scale(1.045) translateY(-4px); }

.product-card h3 { margin-bottom: 0.3rem; }
.product-card .sub { font-size: 0.82rem; color: var(--ink-soft-2); margin-bottom: 0.9rem; }
.product-card .desc { font-size: 0.92rem; color: var(--ink-soft-2); margin-bottom: 1.4rem; }
.product-card .price-row { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 1.4rem; }
.product-card .price { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: var(--gold-dark); }
.product-card .price-note { font-size: 0.78rem; color: var(--ink-soft-2); }

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgb(28 25 38 / 0.16);
  border-radius: 999px;
  overflow: hidden;
}
.qty-stepper button { width: 42px; height: 42px; font-size: 1.1rem; transition: background-color var(--dur-fast) var(--ease); }
.qty-stepper button:hover { background: var(--sage-pale); }
.qty-stepper span { width: 2.4rem; text-align: center; font-size: 0.9rem; }

.product-card .card-actions { display: flex; gap: 0.8rem; margin-top: auto; align-items: center; }
.product-card .btn-primary { flex: 1; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.6rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 780px) { .trust-row { grid-template-columns: repeat(4,1fr); } }
.trust-item { text-align: center; }
.trust-item .icon-wrap {
  width: 52px; height: 52px; margin-inline: auto 1rem;
  border-radius: 999px; background: var(--sage-pale); color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.trust-item p { margin-inline: auto; font-size: 0.82rem; color: var(--ink-soft-2); }
.trust-item h4 { font-size: 0.95rem; margin-bottom: 0.3rem; font-family: 'Jost', sans-serif; font-weight: 500; }

/* ---- Cart drawer ---- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgb(20 18 28 / 0.5);
  z-index: calc(var(--z-cart) - 1);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility var(--dur-med);
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--cream);
  z-index: var(--z-cart);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease);
  box-shadow: -20px 0 60px rgb(20 18 28 / 0.25);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.6rem;
  border-bottom: 1px solid rgb(28 25 38 / 0.1);
}
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.6rem; display: flex; flex-direction: column; gap: 1.2rem; }
.cart-item { display: flex; gap: 1rem; align-items: center; }
.cart-item img { width: 56px; height: 78px; object-fit: contain; background: var(--sage-pale); border-radius: 8px; padding: 4px; }
.cart-item .info { flex: 1; }
.cart-item .info h5 { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 0.9rem; }
.cart-item .info span { font-size: 0.78rem; color: var(--ink-soft-2); }
.cart-item .remove { font-size: 0.72rem; text-decoration: underline; color: var(--ink-soft-2); margin-top: 0.3rem; }
.cart-item .qty-stepper button { width: 32px; height: 32px; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--ink-soft-2); }
.cart-empty .icon { width: 2.4rem; height: 2.4rem; margin-inline: auto; margin-bottom: 1rem; color: var(--sage); }
.cart-footer { padding: 1.5rem 1.6rem 1.8rem; border-top: 1px solid rgb(28 25 38 / 0.1); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 0.95rem; margin-bottom: 1.1rem; }
.cart-subtotal strong { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; }
.cart-footer .btn { width: 100%; }
.cart-footer .ship-note { font-size: 0.74rem; color: var(--ink-soft-2); text-align: center; margin-top: 0.8rem; }


/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.story-copy {
  max-width: 66ch;
  margin-inline: auto;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  color: var(--ink-soft-2);
}
.story-copy p { max-width: none; margin-bottom: 1.4rem; }
.story-copy .drop-cap::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.2rem;
  font-weight: 600;
  float: left;
  line-height: 0.8;
  padding-right: 0.6rem;
  padding-top: 0.4rem;
  color: var(--gold-dark);
}
.story-copy .signoff { font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--ink); margin-top: 2rem; }

.region-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 940px) { .region-wrap { grid-template-columns: 1fr 1fr; gap: 5vw; } }
.map-frame {
  background: var(--sage-pale);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 3rem);
  position: relative;
}
.map-frame svg { width: 100%; height: auto; }
.map-pin-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}
.map-fact-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.map-fact { text-align: center; }
.map-fact .num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold-dark); }
.map-fact .lbl { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft-2); }

.farmer-card {
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .farmer-card { grid-template-columns: 0.85fr 1fr; } }
.farmer-visual {
  position: relative;
  min-height: 280px;
  background-image: var(--texture, none);
  background-size: cover;
  background-position: center;
  display: flex; align-items: flex-end;
  padding: 2rem;
}
.farmer-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(28 25 38 / 0.15), rgb(28 25 38 / 0.75)); }
.farmer-visual .mark { position: relative; display: flex; align-items: center; gap: 0.6rem; color: var(--gold-light); }
.farmer-visual .mark .icon { width: 2rem; height: 2rem; }
.farmer-body { padding: clamp(2rem, 4vw, 3.2rem); }
.farmer-body p { color: rgb(250 247 239 / 0.78); margin-top: 1rem; }
.farmer-body .role { color: var(--gold-light); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.4rem; }

/* ---- Values list (about, larger variant) ---- */
.values-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
}
@media (min-width: 720px) { .values-list { grid-template-columns: repeat(2, 1fr); gap: 2.6rem 3rem; } }
.values-list .value-row { display: flex; gap: 1.2rem; }
.values-list .num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold-light); opacity: 0.7; flex-shrink: 0; }
.section-cream .values-list .num, .section-pale .values-list .num { color: var(--gold); }
.values-list h3 { margin-bottom: 0.4rem; }
.values-list p { font-size: 0.92rem; color: var(--ink-soft-2); }
.section-ink .values-list p { color: rgb(250 247 239 / 0.75); }

/* Utility */
.text-center { text-align: center; }
.mt-lg { margin-top: clamp(2rem, 4vw, 3rem); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   LEGAL PAGES (Privacy, Terms)
   ========================================================================== */
.legal-meta {
  color: var(--ink-soft-2);
  font-size: 0.85rem;
  margin-top: 0.6rem;
}
.legal-content { max-width: 72ch; margin-inline: auto; color: var(--ink-soft-2); }
.legal-content h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--ink);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(28 25 38 / 0.1);
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 {
  font-size: 1.05rem;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  color: var(--ink);
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
}
.legal-content p { margin-bottom: 1.1rem; max-width: none; }
.legal-content ul {
  list-style: disc;
  margin: 0 0 1.1rem 1.4em;
  display: block;
}
.legal-content li { margin-bottom: 0.6rem; }
.legal-content li::marker { color: var(--gold-dark); }
.legal-content strong { color: var(--ink); font-weight: 600; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }
.legal-notice-box {
  background: var(--sage-pale);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft-2);
}
.legal-notice-box p:last-child { margin-bottom: 0; }
.legal-notice-box strong { color: var(--ink); }

/* ==========================================================================
   COOKIE / TRACKING CONSENT
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: var(--z-cookie);
  max-width: 560px;
  margin-inline: auto;
  background: var(--ink);
  color: var(--cream);
  border-radius: 20px;
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility var(--dur-med);
}
.cookie-banner.show { opacity: 1; visibility: visible; transform: translateY(0); }
.cookie-banner p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgb(250 247 239 / 0.82);
  margin-bottom: 1.2rem;
  max-width: none;
}
.cookie-banner a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.cookie-banner-actions .btn { flex: 1; min-width: 9rem; padding-inline: 1.2rem; }
.cookie-banner-manage {
  display: block;
  margin-top: 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: rgb(250 247 239 / 0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.cookie-banner-manage:hover { color: var(--gold-light); }

/* Preferences panel (category toggles) */
.cookie-panel-body { display: none; margin-bottom: 1.2rem; }
.cookie-banner.manage-open .cookie-panel-body { display: block; }
.cookie-banner.manage-open .cookie-banner-manage { display: none; }
.cookie-banner.manage-open .cookie-banner-actions.cookie-quick { display: none; }
.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgb(255 255 255 / 0.12);
}
.cookie-category:first-child { border-top: none; padding-top: 0; }
.cookie-category h5 { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 0.85rem; color: var(--cream); margin-bottom: 0.25rem; }
.cookie-category p { font-size: 0.76rem; margin-bottom: 0; color: rgb(250 247 239 / 0.6); }

.cookie-toggle { position: relative; flex-shrink: 0; width: 40px; height: 24px; }
.cookie-toggle input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cookie-toggle .track {
  position: absolute; inset: 0;
  background: rgb(255 255 255 / 0.18);
  border-radius: 999px;
  transition: background-color var(--dur-fast) var(--ease);
}
.cookie-toggle .thumb {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: var(--cream);
  border-radius: 999px;
  transition: transform var(--dur-fast) var(--ease);
}
.cookie-toggle input:checked ~ .track { background: var(--sage); }
.cookie-toggle input:checked ~ .thumb { transform: translateX(16px); }
.cookie-toggle input:disabled:not(:checked) ~ .track { background: rgb(255 255 255 / 0.1); }
.cookie-toggle input:disabled ~ .track,
.cookie-toggle input:disabled ~ .thumb { opacity: 0.85; }
.cookie-toggle input:focus-visible ~ .track { outline: 2px solid var(--gold-light); outline-offset: 2px; }
.cookie-toggle input:disabled { cursor: not-allowed; }

.cookie-prefs-link {
  background: none; border: none; padding: 0;
  font: inherit; color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.cookie-prefs-link:hover { color: var(--gold-light); }

@media (max-width: 480px) {
  .cookie-banner-actions { flex-direction: column; }
  .cookie-banner-actions .btn { width: 100%; }
}

/* ==========================================================================
   CHECKOUT INFO (device-local "remember me" for faster checkout)
   ========================================================================== */
.checkout-info {
  border-bottom: 1px solid rgb(28 25 38 / 0.1);
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}
.checkout-info-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft-2);
  margin-bottom: 0.8rem;
}
.checkout-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.checkout-info-grid input {
  grid-column: span 2;
  background: var(--cream-dark);
  border: 1px solid rgb(28 25 38 / 0.14);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
  font-size: 0.85rem;
  color: var(--ink);
  min-height: 40px;
}
.checkout-info-grid input::placeholder { color: var(--ink-soft-2); opacity: 0.7; }
.checkout-info-grid input:nth-child(3),  /* phone */
.checkout-info-grid input:nth-child(6),  /* city */
.checkout-info-grid input:nth-child(7),  /* state */
.checkout-info-grid input:nth-child(8) { grid-column: span 1; } /* zip */
.checkout-info-actions { display: flex; align-items: center; gap: 1rem; margin-top: 0.9rem; }
.checkout-info-actions .btn { flex: 1; min-height: 42px; padding-block: 0.7rem; }
.checkout-info-note { font-size: 0.72rem; color: var(--ink-soft-2); margin-top: 0.7rem; margin-bottom: 0; }

.checkout-info-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.checkout-info-row h5 { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 0.85rem; margin-bottom: 0.3rem; }
.checkout-info-summary { font-size: 0.8rem; color: var(--ink-soft-2); line-height: 1.5; margin-bottom: 0; }
.checkout-info-link {
  background: none; border: none; padding: 0;
  font: inherit; font-size: 0.76rem;
  color: var(--gold-dark);
  text-decoration: underline; text-underline-offset: 2px;
  cursor: pointer;
  white-space: nowrap;
}
.checkout-info-link:hover { color: var(--gold); }
.checkout-info-saved .checkout-info-link[data-info-forget] { display: block; margin-top: 0.6rem; color: var(--ink-soft-2); }
.checkout-info-saved .checkout-info-link[data-info-forget]:hover { color: var(--ink); }
