/* ═══════════════════════════════════════════════
   LAVA ROASTS — SHARED STYLESHEET
   Archivo Black (headlines) · Inter (body)
═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --volcanic-black: #0D0D0D;
  --earth-charcoal: #1E1E1E;
  --soil-brown: #5B3A22;
  --lava-orange: #FF4500;
  --ash-cream: #F3E9D8;
  --ash-dim: #B8AA95;
  --ash-muted: #7A6E60;
  --border: rgba(91, 58, 34, 0.3);
  --border-dim: rgba(243, 233, 216, 0.08);
  --orange-glow: rgba(255, 69, 0, 0.18);
  --header-h: 72px;
  --serif: 'Archivo Black', sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--volcanic-black);
  color: var(--ash-cream);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--sans); }
input, button { outline: none; }

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.038;
  pointer-events: none;
  z-index: 9900;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.0;
}
.label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lava-orange);
  display: block;
  margin-bottom: 1rem;
}

/* ── Layout ── */
.container {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 0 5vw;
}
.section-pad { padding: 8rem 0; }
.section-pad-sm { padding: 5rem 0; }

/* ── Topo pattern ── */
.topo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.topo-svg {
  width: 110%;
  height: 100%;
  min-height: 300px;
  animation: topoDrift 90s linear infinite;
}
@keyframes topoDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(-5%); }
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn-orange {
  background: var(--lava-orange);
  color: #fff;
}
.btn-orange:hover {
  background: #ff6020;
  box-shadow: 0 6px 28px rgba(255,69,0,0.4);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ash-cream);
  border: 1px solid rgba(243,233,216,0.3);
}
.btn-ghost:hover {
  border-color: var(--ash-cream);
  transform: translateY(-2px);
}
.btn-outline-orange {
  background: transparent;
  color: var(--lava-orange);
  border: 1px solid var(--lava-orange);
}
.btn-outline-orange:hover {
  background: var(--lava-orange);
  color: #fff;
}
.btn-full { width: 100%; text-align: center; }

/* ── Image placeholders ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--earth-charcoal) 0%, #2A1A0E 60%, #1A0E06 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,69,0,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.img-placeholder .ph-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soil-brown);
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}
.img-placeholder .ph-icon {
  color: rgba(91,58,34,0.5);
  font-size: 2rem;
  position: relative;
  z-index: 1;
}

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.10s; }
.reveal.d2 { transition-delay: 0.22s; }
.reveal.d3 { transition-delay: 0.36s; }
.reveal.d4 { transition-delay: 0.52s; }

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-wordmark {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: var(--ash-cream);
  line-height: 1;
}
.logo-wordmark span { color: var(--lava-orange); }
/* Responsive logo swap */
.logo-mobile { display: none; }
.logo-desktop { display: block; }
@media (max-width: 768px) {
  .logo-desktop { display: none; }
  .logo-mobile  { display: block; }
}
.header-nav {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.header-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash-muted);
  transition: color 0.25s;
}
.header-nav a:hover,
.header-nav a.active { color: var(--ash-cream); }
.header-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6px;
  color: var(--ash-cream);
  transition: color 0.25s;
}
.cart-btn:hover { color: var(--lava-orange); }
.cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--lava-orange);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 600;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out);
}
.cart-count.hidden { display: none; }
.cart-count.pulse { animation: cartPulse 0.45s var(--ease-out); }
@keyframes cartPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.6); }
  100% { transform: scale(1); }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ash-cream);
  transition: all 0.3s;
}

/* Mobile nav overlay */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: var(--serif);
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash-cream);
  transition: color 0.25s;
}
#mobile-menu a:hover { color: var(--lava-orange); }
.mobile-close {
  position: absolute;
  top: 1.4rem;
  right: 5vw;
  background: none;
  border: none;
  color: var(--ash-muted);
  font-size: 2rem;
  line-height: 1;
  transition: color 0.25s;
}
.mobile-close:hover { color: var(--ash-cream); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
#site-footer {
  background: var(--earth-charcoal);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.footer-topo {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  overflow: hidden;
  opacity: 0.4;
  pointer-events: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 5vw 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dim);
}
.footer-logo-text {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--ash-cream);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--lava-orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--ash-muted);
  line-height: 1.7;
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash-dim);
  margin-bottom: 1.2rem;
}
.email-signup-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
}
.email-signup-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
  color: var(--ash-cream);
  font-family: var(--sans);
  min-width: 0;
}
.email-signup-form input::placeholder { color: var(--ash-muted); }
.email-signup-form button {
  background: var(--lava-orange);
  border: none;
  color: #fff;
  padding: 0 1rem;
  font-size: 1rem;
  transition: background 0.25s;
}
.email-signup-form button:hover { background: #ff6020; }
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-nav-links a {
  font-size: 0.82rem;
  color: var(--ash-muted);
  transition: color 0.25s;
}
.footer-nav-links a:hover { color: var(--ash-cream); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(122,110,96,0.6);
  letter-spacing: 0.05em;
}
.social-icons {
  display: flex;
  gap: 0.8rem;
}
.social-icons a {
  width: 34px; height: 34px;
  border: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash-muted);
  transition: all 0.25s;
}
.social-icons a:hover {
  border-color: var(--lava-orange);
  color: var(--lava-orange);
}

/* ══════════════════════════════════════════════
   HOME — HERO
══════════════════════════════════════════════ */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 4rem) 5vw 6rem;
  background: var(--volcanic-black);
}
.hero-glow-base {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60%;
  background: radial-gradient(ellipse 65% 100% at 50% 100%,
    rgba(255,69,0,0.22) 0%,
    rgba(91,58,34,0.10) 40%,
    transparent 70%);
  pointer-events: none;
  animation: glowBreath 6s ease-in-out infinite alternate;
}
@keyframes glowBreath {
  from { opacity: 0.8; }
  to   { opacity: 1.0; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.hero-text { text-align: left; }
.hero-image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-product-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  opacity: 0;
  animation: heroReveal 1.2s 0.6s var(--ease-out) forwards, heroFloat 8s 1.8s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-14px); }
}
.hero-eyebrow {
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--lava-orange);
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroReveal 1s 0.2s var(--ease-out) forwards;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-transform: none;
  color: var(--ash-cream);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: heroReveal 1.1s 0.4s var(--ease-out) forwards;
}
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  letter-spacing: 0.02em;
  color: var(--ash-dim);
  line-height: 1.8;
  text-transform: none;
  margin-bottom: 3rem;
  opacity: 0;
  animation: heroReveal 1.1s 0.7s var(--ease-out) forwards;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroReveal 1.1s 1s var(--ease-out) forwards;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ash-muted);
  opacity: 0;
  animation: heroReveal 1s 1.4s ease forwards;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--lava-orange), transparent);
  animation: scrollDrop 2.2s 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Home: topo divider ── */
.topo-divider {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: var(--volcanic-black);
}

/* ── Home: Brand Story ── */
#story {
  background: var(--earth-charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.story-headline {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  margin-bottom: 1.5rem;
}
.story-body p {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--ash-dim);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.story-pullquote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--lava-orange) !important;
  letter-spacing: 0.06em;
  border-left: 2px solid var(--lava-orange);
  padding-left: 1.2rem;
  margin-top: 2rem;
  text-transform: uppercase;
}
.story-visual {
  aspect-ratio: 4/5;
  border-radius: 0;
  position: relative;
}

/* ── Home: Featured Product ── */
#featured {
  background: var(--volcanic-black);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.featured-img { aspect-ratio: 3/4; }
.featured-name {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 0.8rem;
}
.featured-sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash-muted);
  margin-bottom: 1.8rem;
}
.featured-desc {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--ash-dim);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}
.featured-price {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--ash-cream);
  margin-bottom: 1.8rem;
}
.featured-price span {
  font-size: 1rem;
  color: var(--ash-muted);
  font-family: var(--sans);
  letter-spacing: 0.1em;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.badge {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border: 1px solid var(--border);
  color: var(--ash-dim);
}

/* ── Home: Why ── */
#why { background: var(--earth-charcoal); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}
.why-item {
  background: var(--earth-charcoal);
  padding: 3rem 2.8rem;
  transition: background 0.35s, box-shadow 0.35s;
}
.why-item:hover {
  background: rgba(255,69,0,0.04);
  box-shadow: inset 0 0 0 1px rgba(255,69,0,0.5);
}
.why-icon {
  width: 40px; height: 40px;
  color: var(--lava-orange);
  margin-bottom: 1.5rem;
}
.why-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 0.8rem;
}
.why-body {
  font-size: 0.88rem;
  color: var(--ash-dim);
  line-height: 1.8;
}

/* ── Home: Coming Soon ── */
#coming-soon {
  background: var(--volcanic-black);
  border-top: 1px solid var(--border);
}
.coming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.coming-card {
  background: var(--earth-charcoal);
  border: 1px solid var(--border);
  padding: 2.8rem 2.5rem;
  opacity: 0.5;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s;
}
.coming-card:hover { opacity: 0.65; }
.coming-badge {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash-muted);
  border: 1px solid rgba(122,110,96,0.3);
  padding: 0.25rem 0.6rem;
  display: inline-block;
  margin-bottom: 1.2rem;
}
.coming-name {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.0;
  margin-bottom: 0.5rem;
}
.coming-sub {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash-muted);
  margin-bottom: 1.2rem;
}
.coming-desc { font-size: 0.9rem; color: var(--ash-muted); }
.notify-form {
  display: flex;
  gap: 0;
  margin-top: 1.8rem;
  border: 1px solid var(--border);
  max-width: 340px;
}
.notify-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.6rem 0.8rem;
  font-size: 0.8rem;
  color: var(--ash-cream);
  font-family: var(--sans);
  min-width: 0;
}
.notify-form input::placeholder { color: var(--ash-muted); }
.notify-form button {
  background: transparent;
  border: none;
  border-left: 1px solid var(--border);
  color: var(--lava-orange);
  padding: 0 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s;
}
.notify-form button:hover { background: rgba(255,69,0,0.1); }

/* ── Home: Gifting ── */
#gifting {
  background: var(--earth-charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gifting-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.gifting-headline {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.0;
  margin-bottom: 1.5rem;
}
.gifting-body {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--ash-dim);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.gifting-note {
  font-size: 0.78rem;
  color: var(--ash-muted);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}
.gifting-visual { aspect-ratio: 1/1; }

/* ── Home: About ── */
#about { background: var(--volcanic-black); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.about-sticky { position: sticky; top: 6rem; }
.about-headline {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  margin-bottom: 1rem;
}
.about-rule {
  width: 32px;
  height: 1px;
  background: var(--lava-orange);
  margin-top: 1.5rem;
}
.about-body p {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--ash-dim);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.about-meta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dim);
}
.about-meta span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ash-muted);
  margin-bottom: 0.3rem;
}
.about-meta strong { color: var(--ash-dim); font-weight: 400; }

/* ── Home: Footer CTA ── */
#footer-cta {
  background: var(--earth-charcoal);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 10rem 5vw;
}
.fcta-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 100%,
    rgba(255,69,0,0.20) 0%,
    rgba(91,58,34,0.08) 45%,
    transparent 70%);
  pointer-events: none;
}
.fcta-inner { position: relative; z-index: 1; }
.fcta-headline {
  font-size: clamp(2.5rem, 7vw, 7.5rem);
  line-height: 1.0;
  max-width: 1000px;
  margin: 0 auto 3rem;
}
.fcta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.fcta-email {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash-muted);
  transition: color 0.25s;
}
.fcta-email:hover { color: var(--ash-cream); }

/* ══════════════════════════════════════════════
   SHOP PAGE
══════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 5vw 3rem;
  background: var(--earth-charcoal);
  border-bottom: 1px solid var(--border);
}
.page-hero-headline {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.95;
}
.page-hero-sub {
  font-size: 0.88rem;
  color: var(--ash-muted);
  margin-top: 1rem;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 4rem 0;
}
.product-card {
  background: var(--earth-charcoal);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.product-card-img { aspect-ratio: 1/1; }
.product-card-body { padding: 1.8rem 1.8rem 2rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.product-card-name {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.1;
}
.product-card-desc {
  font-size: 0.84rem;
  color: var(--ash-muted);
  line-height: 1.7;
  flex: 1;
}
.product-card-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ash-cream);
  margin-top: 0.5rem;
}
.product-card-footer {
  padding: 0 1.8rem 1.8rem;
}
.product-card.coming-soon {
  opacity: 0.55;
}
.product-card.coming-soon:hover {
  transform: none;
  box-shadow: none;
  opacity: 0.65;
}

/* ══════════════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════════════ */
.product-detail-wrap {
  padding-top: var(--header-h);
  background: var(--volcanic-black);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 4rem 5vw 6rem;
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}
.product-gallery { position: sticky; top: calc(var(--header-h) + 2rem); }
.product-main-img { aspect-ratio: 1/1; margin-bottom: 1rem; transition: opacity 0.18s ease; }
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.product-thumb { aspect-ratio: 1/1; cursor: pointer; border: 1px solid transparent; transition: border-color 0.2s; }
.product-thumb.active { border-color: var(--lava-orange); }
.product-info { padding-top: 1rem; }
.product-detail-name {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 0.6rem;
}
.product-detail-sub {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash-muted);
  margin-bottom: 1.5rem;
}
.product-detail-price {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--ash-cream);
  margin-bottom: 2rem;
}
.product-detail-price small {
  font-size: 1rem;
  font-family: var(--sans);
  color: var(--ash-muted);
  letter-spacing: 0.1em;
}
.variant-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash-dim);
  margin-bottom: 0.7rem;
}
.variant-options {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}
.variant-btn {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ash-dim);
  cursor: pointer;
  transition: all 0.25s;
}
.variant-btn.active,
.variant-btn:hover {
  border-color: var(--lava-orange);
  color: var(--ash-cream);
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
}
.qty-btn {
  width: 40px; height: 42px;
  background: transparent;
  border: none;
  color: var(--ash-cream);
  font-size: 1.2rem;
  transition: background 0.2s;
}
.qty-btn:hover { background: rgba(255,69,0,0.1); }
.qty-num {
  width: 48px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ash-cream);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Accordion */
.accordion { border-top: 1px solid var(--border); margin-top: 3rem; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  background: none;
  border: none;
  color: var(--ash-cream);
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s;
}
.accordion-trigger:hover { color: var(--lava-orange); }
.accordion-icon {
  font-size: 1.2rem;
  line-height: 1;
  color: var(--lava-orange);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 0 0 1.5rem;
  font-size: 0.88rem;
  color: var(--ash-dim);
  line-height: 1.8;
}
.accordion-item.open .accordion-body { display: block; }
/* Why strip */
.why-strip {
  background: var(--earth-charcoal);
  border-top: 1px solid var(--border);
}
.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.why-strip-item {
  background: var(--earth-charcoal);
  padding: 2rem 1.8rem;
  text-align: center;
}
.why-strip-icon { width: 32px; height: 32px; color: var(--lava-orange); margin: 0 auto 0.8rem; }
.why-strip-title { font-size: 0.78rem; letter-spacing: 0.12em; }
.why-strip-body { font-size: 0.72rem; color: var(--ash-muted); margin-top: 0.3rem; line-height: 1.6; }

/* ══════════════════════════════════════════════
   CART PAGE
══════════════════════════════════════════════ */
.cart-wrap {
  min-height: 100svh;
  padding-top: var(--header-h);
  background: var(--volcanic-black);
}
.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  padding: 4rem 5vw 6rem;
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}
.cart-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 2.5rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-dim);
}
.cart-item-img { width: 80px; height: 80px; }
.cart-item-name {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-item-variant {
  font-size: 0.72rem;
  color: var(--ash-muted);
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.cart-qty-btn {
  width: 28px; height: 28px;
  background: var(--earth-charcoal);
  border: 1px solid var(--border);
  color: var(--ash-cream);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-qty-btn:hover { background: rgba(255,69,0,0.1); }
.cart-qty-num { font-size: 0.88rem; min-width: 24px; text-align: center; }
.cart-item-right { text-align: right; }
.cart-item-price { font-family: var(--serif); font-size: 1.1rem; }
.cart-remove {
  background: none;
  border: none;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ash-muted);
  cursor: pointer;
  margin-top: 0.4rem;
  transition: color 0.2s;
}
.cart-remove:hover { color: var(--lava-orange); }
.cart-empty {
  text-align: center;
  padding: 5rem 0;
}
.cart-empty-title { font-size: 2rem; margin-bottom: 1rem; }
.cart-empty-body { color: var(--ash-muted); margin-bottom: 2rem; }
.order-summary {
  background: var(--earth-charcoal);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.summary-title {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
  color: var(--ash-dim);
}
.summary-row.total {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ash-cream);
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.checkout-note {
  font-size: 0.68rem;
  color: var(--ash-muted);
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .why-strip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 5rem 0; }
  .story-grid,
  .featured-grid,
  .gifting-grid,
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-sticky { position: static; }
  .why-grid { grid-template-columns: 1fr; }
  .coming-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-gallery { position: static; }
  .cart-layout { grid-template-columns: 1fr; gap: 2rem; }
  .order-summary { position: static; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { display: none; }
  .hero-text { text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; justify-content: center; }
  .fcta-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
  .why-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .product-thumbs { grid-template-columns: repeat(3, 1fr); }
}
