@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ══════════════════════════════════
   VARIABLES
══════════════════════════════════ */
:root {
  --green:        hsl(164, 86%, 16%);
  --green-deep:   hsl(164, 90%, 11%);
  --green-mid:    hsl(164, 50%, 22%);
  --gold:         hsl(40, 76%, 48%);
  --gold-light:   hsl(40, 80%, 65%);
  --gold-soft:    hsl(40, 50%, 88%);
  --cream:        #faf6ed;
  --cream-warm:   #f3ecda;
  --paper:        #fdfaf3;
  --white:        #ffffff;
  --black:        #0a0a0a;
  --ink:          #1a1a1a;
  --muted:        #6e6c66;

  --ff-serif:  'Fraunces', Georgia, serif;
  --ff-sans:   'Inter', -apple-system, sans-serif;

  --max:       1440px;
  --gutter:    clamp(1.25rem, 4vw, 3rem);
  --radius:    2px;
  --t-fast:    180ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-med:     400ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow:    700ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ══════════════════════════════════
   RESET
══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--white); }

/* ══════════════════════════════════
   TYPOGRAPHY UTILITIES
══════════════════════════════════ */
.serif { font-family: var(--ff-serif); font-weight: 400; letter-spacing: -0.02em; }
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.h-display { font-size: clamp(3rem, 9vw, 8rem); font-weight: 300; }
.h-1       { font-size: clamp(2.4rem, 6vw, 5rem);  font-weight: 400; }
.h-2       { font-size: clamp(2rem, 4.2vw, 3.5rem); font-weight: 400; }
.h-3       { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
.italic    { font-style: italic; }

.lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65;
  color: var(--muted);
  font-weight: 400;
}

/* ══════════════════════════════════
   CONTAINER
══════════════════════════════════ */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { width: 100%; max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.btn-arrow { width: 14px; height: 14px; transition: transform var(--t-fast); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--green); border-color: var(--green); color: var(--gold-light); }

.btn-green { background: var(--green); color: var(--cream); border-color: var(--green); }
.btn-green:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.btn-ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-ghost-light:hover { background: var(--gold); border-color: var(--gold); }

.btn-ghost-dark {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn-ghost-dark:hover { background: var(--green); color: var(--cream); }

/* Underline link */
.link-underline {
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.link-underline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform var(--t-med);
}
.link-underline:hover::after { transform-origin: left; transform: scaleX(0.4); }

/* ══════════════════════════════════
   PROGRESS BAR
══════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 200;
  transition: width 50ms linear;
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: transparent;
  transition: background var(--t-med), padding var(--t-med), backdrop-filter var(--t-med);
}
.site-header.scrolled {
  background: rgba(7, 50, 36, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 0.75rem 0;
}
.site-header.solid {
  background: var(--green);
  padding: 1rem 0;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--gutter);
  gap: 1rem;
}
.header-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.header-nav.right { justify-content: flex-end; }
.header-nav a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 237, 0.85);
  padding: 0.5rem 0;
  transition: color var(--t-fast);
}
.header-nav a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t-fast), left var(--t-fast);
}
.header-nav a:hover { color: var(--gold); }
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; left: 0; }
.header-nav a.active { color: var(--gold); }

.header-logo {
  display: flex;
  justify-content: center;
}
.header-logo img {
  height: 60px;
  width: auto;
  transition: height var(--t-med);
}
.scrolled .header-logo img { height: 48px; }

.header-burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.header-burger span {
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--t-fast);
}

/* ── Mobile drawer ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--green-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med), visibility var(--t-med);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.01em;
  transition: color var(--t-fast), transform var(--t-fast);
  transform: translateY(20px);
  opacity: 0;
}
.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
  transition: transform 600ms cubic-bezier(0.22,1,0.36,1), opacity 600ms ease;
}
.mobile-nav.open a:nth-child(2) { transition-delay: 100ms; }
.mobile-nav.open a:nth-child(3) { transition-delay: 160ms; }
.mobile-nav.open a:nth-child(4) { transition-delay: 220ms; }
.mobile-nav.open a:nth-child(5) { transition-delay: 280ms; }
.mobile-nav.open a:nth-child(6) { transition-delay: 340ms; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: var(--gutter);
  width: 44px; height: 44px;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
}

/* ══════════════════════════════════
   HERO (homepage)
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--green-deep);
  color: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, var(--green-deep) 0%, rgba(7,50,36,0.85) 40%, rgba(7,50,36,0.4) 70%, rgba(7,50,36,0.85) 100%),
    radial-gradient(circle at 80% 50%, rgba(217,153,32,0.15), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 4rem;
  align-items: center;
}
.hero-headline {
  color: var(--cream);
  font-weight: 300;
  margin: 1.5rem 0 2rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero-body {
  font-size: 1.05rem;
  color: rgba(250, 246, 237, 0.78);
  max-width: 480px;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.hero-tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin: 1.25rem 0 1rem;
}
.hero-sub {
  font-size: 0.95rem;
  color: rgba(250, 246, 237, 0.6);
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-side {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.hero-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
}
.hero-side:hover img { transform: scale(1.04); }
.hero-side::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(217,153,32,0.4);
  z-index: 2;
  pointer-events: none;
  margin: 12px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(250, 246, 237, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.scroll-indicator-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  background-size: 100% 200%;
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 100%; }
}

/* ══════════════════════════════════
   MARQUEE
══════════════════════════════════ */
.marquee {
  background: var(--gold);
  color: var(--green-deep);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-track > span {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  font-weight: 400;
}
.marquee-track > span::after {
  content: '✦';
  color: var(--green);
  font-style: normal;
  font-size: 1rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   SECTIONS — PRODUCTS
══════════════════════════════════ */
.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-warm  { background: var(--cream-warm); }
.section-green { background: var(--green); color: var(--cream); }
.section-deep  { background: var(--green-deep); color: var(--cream); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-head h2 { max-width: 700px; }

/* Product grid */
.products-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.product-card {
  background: transparent;
  position: relative;
  cursor: pointer;
}
.product-card-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-warm);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-card-media img { transform: scale(1.06); }
.product-card-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 50, 36, 0.55), transparent 50%);
  opacity: 0;
  transition: opacity var(--t-med);
  z-index: 1;
}
.product-card:hover .product-card-media::before { opacity: 1; }

.product-card-overlay {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--t-med), transform var(--t-med);
  display: flex;
  justify-content: center;
}
.product-card:hover .product-card-overlay { opacity: 1; transform: translateY(0); }
.product-card-overlay .btn { padding: 0.7rem 1.5rem; font-size: 0.7rem; }

/* Touch devices — overlay always visible (no hover available) */
@media (hover: none) {
  .product-card-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.product-card-tag.muted { background: var(--cream); color: var(--green); }

.product-card-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.product-card-name {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.product-card-price {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
}
.product-card-origin {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ══════════════════════════════════
   STORY / ABOUT STRIP
══════════════════════════════════ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 80vh;
}
.story-image {
  position: relative;
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-image::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(217, 153, 32, 0.5);
  pointer-events: none;
}
.story-text {
  padding: clamp(3rem, 8vw, 7rem) clamp(2rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--green-deep);
  color: var(--cream);
}
.story-text h2 {
  color: var(--cream);
  margin: 1.25rem 0 1.75rem;
}
.story-text h2 em { color: var(--gold-light); font-style: italic; }
.story-text p {
  color: rgba(250,246,237,0.78);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.story-text strong { color: var(--gold-light); font-weight: 500; }
.story-text .btn { margin-top: 1.5rem; align-self: flex-start; }

/* Pull quote */
.pullquote {
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.pullquote-mark {
  font-family: var(--ff-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1rem;
}
.pullquote blockquote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.4;
  max-width: 880px;
  margin: 0 auto 2rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pullquote-cite {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════
   VALUES (4 pillars)
══════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value-card {
  padding: 2.25rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  position: relative;
  transition: padding-top var(--t-med);
}
.value-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-slow);
}
.value-card:hover::before { width: 100%; }
.value-card-num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  color: var(--ink);
}
.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* On dark */
.section-deep .value-card { border-color: rgba(255,255,255,0.12); }
.section-deep .value-card h3 { color: var(--cream); }
.section-deep .value-card p { color: rgba(250,246,237,0.65); }

/* ══════════════════════════════════
   GALLERY
══════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 1.5vw, 1rem);
}
.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-deep);
  opacity: 0;
  z-index: 1;
  transition: opacity var(--t-med);
}
.gallery-item::after {
  content: '⤢';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  z-index: 2;
  opacity: 0;
  transition: opacity var(--t-med);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::before { opacity: 0.4; }
.gallery-item:hover::after { opacity: 1; }

/* ══════════════════════════════════
   CTA STRIP
══════════════════════════════════ */
.cta-strip {
  position: relative;
  text-align: center;
  padding: clamp(5rem, 12vw, 9rem) var(--gutter);
  background: var(--green-deep);
  color: var(--cream);
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(217,153,32,0.12), transparent 60%);
}
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip h2 {
  color: var(--cream);
  margin: 1.25rem 0 1.25rem;
}
.cta-strip h2 em { color: var(--gold-light); font-style: italic; }
.cta-strip p {
  color: rgba(250, 246, 237, 0.72);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 56px;
  margin-bottom: 1.25rem;
  filter: brightness(1.1);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.footer-social-row a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--t-fast);
}
.footer-social-row a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--green-deep);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════
   PAGE HERO (interior pages)
══════════════════════════════════ */
.page-hero {
  position: relative;
  background: var(--green-deep);
  color: var(--cream);
  padding: 12rem 0 6rem;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(217,153,32,0.15), transparent 60%);
}
.page-hero > * { position: relative; }
.page-hero h1 {
  color: var(--cream);
  margin: 1.25rem 0 1rem;
  font-weight: 300;
}
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero p {
  color: rgba(250,246,237,0.7);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,246,237,0.5);
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.breadcrumb a { color: var(--gold); transition: color var(--t-fast); }

/* ══════════════════════════════════
   ABOUT PAGE
══════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.3);
}
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px; right: 30px; bottom: 30px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text h2 em { font-style: italic; color: var(--gold); }
.about-text p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.about-text strong { color: var(--ink); font-weight: 600; }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════
   SHOP
══════════════════════════════════ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.shop-notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.75rem;
  margin-bottom: 3rem;
  font-size: 0.9rem;
}
.shop-notice strong { color: var(--green); }
.shop-notice a { color: var(--gold); font-weight: 600; }

/* ══════════════════════════════════
   WHOLESALE
══════════════════════════════════ */
.wholesale-text {
  max-width: 760px;
  margin: 0 auto;
}
.wholesale-text p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 3rem 0;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.12);
}
.benefit-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
}
.benefit-card h4 {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.benefit-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.partner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  margin: 2rem 0 3rem;
}
.partner-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.partner-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.8rem;
}

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info h2 em { color: var(--gold); font-style: italic; }
.contact-info > p { color: var(--muted); margin-bottom: 2.5rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.contact-detail-value {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--ink);
}
.contact-detail a.contact-detail-value:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.15);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  position: relative;
  margin-bottom: 1.25rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 1.1rem 1rem 0.6rem;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-bottom: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 0;
  outline: none;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-bottom-color: var(--gold);
  background: var(--paper);
}
.form-field label {
  position: absolute;
  top: 1.05rem; left: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  pointer-events: none;
  transition: top var(--t-fast), font-size var(--t-fast), color var(--t-fast);
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: 0.3rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-field .required { color: var(--gold); }
.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form-success svg {
  width: 56px; height: 56px;
  margin: 0 auto 1.25rem;
  display: block;
}
.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--muted); }

/* ══════════════════════════════════
   FLOATING WHATSAPP / CONTACT
══════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(217, 153, 32, 0.5);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
}
.floating-cta.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 16px 40px -8px rgba(217, 153, 32, 0.6);
}

/* ══════════════════════════════════
   REVEAL ON SCROLL
══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 100ms; }
.reveal.delay-2 { transition-delay: 200ms; }
.reveal.delay-3 { transition-delay: 300ms; }
.reveal.delay-4 { transition-delay: 400ms; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .products-row, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-burger { display: flex; }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .header-logo { justify-content: flex-start; }
  .scrolled .header-logo img { height: 42px; }
  .header-logo img { height: 48px; }

  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-side { aspect-ratio: 4/5; max-height: 60vh; }
  .scroll-indicator { display: none; }

  .marquee-track > span { font-size: 1.1rem; }

  .story { grid-template-columns: 1fr; }
  .story-image { aspect-ratio: 4/3; min-height: 320px; }

  .gallery { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .partner-list { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .floating-cta { bottom: 1rem; right: 1rem; width: 50px; height: 50px; }
}
@media (max-width: 520px) {
  .products-row, .shop-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   PRODUCT CARD DESC + CART ICON IN HEADER
══════════════════════════════════ */
.product-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.55;
}

.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  margin-left: 1rem;
  color: rgba(250,246,237,0.85);
  transition: color var(--t-fast);
}
.header-cart:hover { color: var(--gold); }
.header-cart svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.header-cart-badge {
  position: absolute;
  top: 0; right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform var(--t-fast);
}
.header-cart-badge.show { transform: scale(1); }

/* ══════════════════════════════════
   CATEGORY FILTERS (shop page)
══════════════════════════════════ */
.category-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.category-filters button {
  padding: 0.6rem 1.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  transition: all var(--t-fast);
  font-weight: 500;
}
.category-filters button:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.category-filters button.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--gold);
}

/* ══════════════════════════════════
   CART DRAWER
══════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 50, 36, 0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med), visibility var(--t-med);
}
.cart-overlay.show { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  background: var(--cream);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -20px 0 60px -10px rgba(0,0,0,0.2);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.cart-drawer-head h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.cart-close {
  font-size: 2rem;
  color: var(--muted);
  line-height: 1;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--t-fast);
}
.cart-close:hover { color: var(--gold); }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.75rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.cart-empty h4 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.cart-empty p { color: var(--muted); margin-bottom: 1.5rem; }

.cart-line {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cart-line-img {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-warm);
}
.cart-line-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-img-empty { width: 100%; height: 100%; background: var(--cream-warm); }

.cart-line-name {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.cart-line-meta {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.cart-line-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  overflow: hidden;
}
.qty-stepper button {
  width: 28px; height: 28px;
  font-size: 1rem;
  color: var(--ink);
  transition: background var(--t-fast);
}
.qty-stepper button:hover { background: var(--gold); color: var(--white); }
.qty-stepper span {
  min-width: 28px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
}
.cart-line-remove {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: underline;
}
.cart-line-remove:hover { color: #c84141; }
.cart-line-price {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--gold);
  align-self: flex-start;
  white-space: nowrap;
}

.cart-drawer-foot {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: var(--paper);
  flex-shrink: 0;
}
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cart-row strong {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  color: var(--ink);
}
.cart-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.cart-checkout-btn { width: 100%; }
.cart-continue {
  width: 100%;
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem;
  transition: color var(--t-fast);
}
.cart-continue:hover { color: var(--gold); }

/* Add-to-cart added state */
.btn[data-add-to-cart].added {
  background: var(--green) !important;
  border-color: var(--green) !important;
  color: var(--gold-light) !important;
}

/* ══════════════════════════════════
   CHECKOUT PAGE
══════════════════════════════════ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.checkout-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 40px -20px rgba(0,0,0,0.1);
}
.checkout-section-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.checkout-step-num {
  width: 30px; height: 30px;
  background: var(--green);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.checkout-section h2 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0;
}

/* Fulfillment radio cards */
.fulfillment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.fulfillment-card {
  position: relative;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.fulfillment-card input { position: absolute; opacity: 0; pointer-events: none; }
.fulfillment-card:hover { border-color: var(--gold); }
.fulfillment-card.selected {
  border-color: var(--gold);
  background: var(--paper);
}
.fulfillment-card-icon {
  width: 36px; height: 36px;
  background: var(--green);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.fulfillment-card h4 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
}
.fulfillment-card p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}
.fulfillment-card-tag {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.fulfillment-detail {
  background: var(--paper);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  border-radius: 4px;
}
.fulfillment-detail strong { color: var(--green); display: block; margin-bottom: 0.4rem; }
.fulfillment-detail p { color: var(--muted); margin: 0; line-height: 1.6; }

/* Shipping/pickup form fields */
.checkout-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Payment options */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.payment-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.payment-option input { position: absolute; opacity: 0; pointer-events: none; }
.payment-option:hover { border-color: var(--gold); }
.payment-option.selected {
  border-color: var(--gold);
  background: var(--paper);
}
.payment-option-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.payment-option-text { flex: 1; }
.payment-option-text strong {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.2rem;
}
.payment-option-text span {
  font-size: 0.82rem;
  color: var(--muted);
}
.payment-option-check {
  width: 22px; height: 22px;
  border: 2px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  position: relative;
}
.payment-option.selected .payment-option-check {
  border-color: var(--gold);
  background: var(--gold);
}
.payment-option.selected .payment-option-check::after {
  content: '';
  position: absolute;
  top: 4px; left: 7px;
  width: 4px; height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Order summary panel */
.order-summary {
  background: var(--green-deep);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: sticky;
  top: 100px;
}
.order-summary h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 1.5rem;
  color: var(--cream);
}
.order-summary-line {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.order-summary-line-img {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.order-summary-line-img img { width: 100%; height: 100%; object-fit: cover; }
.order-summary-line-name {
  font-family: var(--ff-serif);
  font-size: 0.92rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.order-summary-line-qty {
  font-size: 0.72rem;
  color: rgba(250,246,237,0.6);
  letter-spacing: 0.1em;
}
.order-summary-line-price {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  color: var(--gold-light);
  align-self: flex-start;
}
.order-summary-totals {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.order-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: rgba(250,246,237,0.78);
}
.order-summary-row.total {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.order-summary-row.total span:last-child { color: var(--gold); }

.order-summary-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: rgba(250,246,237,0.6);
}

.checkout-submit {
  width: 100%;
  margin-top: 0.75rem;
  padding: 1.1rem 2rem;
  font-size: 0.85rem;
}

/* Confirmation page */
.confirm-card {
  text-align: center;
  background: var(--white);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.15);
  max-width: 720px;
  margin: 0 auto;
}
.confirm-card-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.confirm-card-icon svg { width: 36px; height: 36px; }
.confirm-card h1 { margin-bottom: 0.75rem; }
.confirm-card h1 em { color: var(--gold); font-style: italic; }
.confirm-card .lead { margin-bottom: 2rem; }
.confirm-meta {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: left;
  font-size: 0.92rem;
}
.confirm-meta-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.confirm-meta-row:last-child { border-bottom: none; }
.confirm-meta-row span:first-child {
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
}
.confirm-meta-row span:last-child {
  font-family: var(--ff-serif);
  color: var(--ink);
}
.confirm-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .fulfillment-options { grid-template-columns: 1fr; }
  .checkout-grid-2 { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
