/* ============================================================
   Primal Privilege™ — Main Stylesheet
   Design tokens: cream, dark, crimson, bronze
   Fonts: CS Mantis (headings), Neue Helvena (body/UI), Wanoja (accent)
============================================================ */

/* ── CUSTOM FONTS ──────────────────────────────────────────── */
/* CS Mantis – Heading serif */
@font-face {
  font-family: 'CS Mantis';
  src: url('../fonts/CSMantis-Regular.woff2') format('woff2'),
       url('../fonts/CSMantis-Regular.woff')  format('woff'),
       url('../fonts/CSMantis-Regular.ttf')   format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CS Mantis';
  src: url('../fonts/CSMantis-Italic.woff2') format('woff2'),
       url('../fonts/CSMantis-Italic.woff')  format('woff'),
       url('../fonts/CSMantis-Italic.ttf')   format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Neue Helvena – Sub-heading / body sans-serif */
@font-face {
  font-family: 'Neue Helvena';
  src: url('../fonts/NeueHelvena-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Helvena';
  src: url('../fonts/NeueHelvena-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Helvena';
  src: url('../fonts/NeueHelvena-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Helvena';
  src: url('../fonts/NeueHelvena-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Helvena';
  src: url('../fonts/NeueHelvena-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Helvena';
  src: url('../fonts/NeueHelvena-Extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Wanoja – Accent / decorative */
@font-face {
  font-family: 'Wanoja';
  src: url('../fonts/Wanoja.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette */
  --cream:       #f0ece4;
  --cream-dark:  #e8e2d8;
  --white:       #ffffff;
  --dark:        #1a1410;
  --dark-mid:    #2a2018;
  --dark-light:  #3d3226;
  --crimson:     #7a1f1f;
  --crimson-dark:#5c1616;
  --bronze:        #834e18;
  --bronze-light:  #a1602c;
  --bronze-bright: #bf7240;
  --cream-light:   #f7f4ef;

  /* Typography */
  --font-serif:  'CS Mantis', Georgia, serif;
  --font-sans:   'Neue Helvena', system-ui, -apple-system, sans-serif;
  --font-accent: 'Wanoja', cursive;

  /* Layout */
  --max-width: 1280px;
  --gutter: 40px;
  --radius: 4px;
  --radius-lg: 12px;

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.19,1,.22,1);

  /* Z-index */
  --z-header: 100;
  --z-mobile: 200;
  --z-overlay: 150;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1rem; letter-spacing: .04em; }

/* ── Iridescent heading shimmer ───────────────────────────── */
/* Warm metallic gradient animation clipped to text shape.    */
/* Used ONLY on .iridescent-heading (homepage hero h1).       */

@keyframes iridescent-sweep {
  from { background-position: 200% center; }
  to   { background-position:   0% center; }
}

.iridescent-heading {
  background-image: linear-gradient(
    105deg,
    #C9713E   0%,   /* copper      — base   */
    #7A1F2B  20%,   /* oxblood     — depth  */
    #F3D6B8  35%,   /* warm cream  — shimmer peak */
    #C9713E  50%,   /* copper      — return */
    #7A1F2B  68%,   /* oxblood     — depth  */
    #F3D6B8  82%,   /* warm cream  — second peak */
    #C9713E 100%    /* copper      — close  */
  );
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: iridescent-sweep 7s linear infinite;
}

/* Opt-out: footer nav headings, form labels, utility headings */
.site-footer h4,
.site-footer h3,
.site-footer h2,
.site-footer h1,
.no-shimmer {
  background-image: none !important;
  -webkit-text-fill-color: unset !important;
  color: inherit !important;
  animation: none !important;
}


/* Accessibility: honour reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .iridescent-heading {
    animation: none;
    background-position: 40% center; /* static warm copper-crimson blend */
  }
}

p { max-width: 65ch; }

.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px;
}

em { font-style: italic; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 96px 0; }
.section--dark   { background: var(--dark); color: var(--cream); }
.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }
.section--bronze { background: var(--bronze-bright); color: var(--dark); }
.section--warm   { background: var(--cream-dark); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-head p {
  margin: 16px auto 24px;
  color: #6b6055;
  max-width: 480px;
}
.section-head--light .label { color: var(--bronze-light); }
.section-head--light h2 { color: var(--cream); }
.section-head--light p  { color: rgba(240,236,228,.65); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--crimson);
  color: var(--cream);
  border-color: var(--crimson);
}
.btn--primary:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  transform: translateY(-1px);
}


.btn--bronze {
  background: var(--bronze-bright);
  color: var(--dark);
  border-color: var(--bronze-bright);
}
.btn--bronze:hover {
  background: var(--bronze-light);
  border-color: var(--bronze-light);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240,236,228,.4);
}
.btn--ghost:hover {
  background: rgba(240,236,228,.1);
  border-color: var(--cream);
}

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

.btn--lg { padding: 18px 36px; font-size: .875rem; }
.btn--sm { padding: 10px 18px; font-size: .75rem; }

/* ── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  background: rgba(26,20,16,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240,236,228,.08);
  transition: all .3s var(--ease);
}

.site-header--scrolled {
  background: rgba(26,20,16,.98);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

.site-logo { display: flex; align-items: center; }
.site-logo__img { height: 68px; width: auto; }
.site-logo--footer .site-logo__img { height: 160px; width: auto; }
.site-logo__text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--cream);
  letter-spacing: .02em;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav__link {
  display: block;
  padding: 8px 14px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(240,236,228,.75);
  transition: color .2s;
  position: relative;
  z-index: 1;
}
.site-nav__link:hover, .site-nav__link.active { color: var(--cream); }
.site-nav__link--cta {
  color: var(--bronze-bright) !important;
  border: 1px solid rgba(212,168,83,.3);
  border-radius: var(--radius);
  margin-left: 8px;
}
.site-nav__link--cta:hover { background: rgba(212,168,83,.1); }

/* Dropdown */
.site-nav li { position: relative; }
.site-nav li:hover { z-index: 20; } /* Lift hovered item above sibling links */
.site-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  border: 1px solid rgba(240,236,228,.1);
  border-radius: var(--radius);
  min-width: 180px;
  padding: 16px 0 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  z-index: 10;
  /* Fade instead of snap-close — prevents instant hide on micro mouse movements */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .15s ease, visibility .15s ease;
}
/* Transparent bridge fills any sub-pixel gap between <li> and dropdown */
.site-nav__dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0; right: 0;
  height: 10px;
}
.site-nav li:hover .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.site-nav__dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(240,236,228,.7);
  transition: color .15s, background .15s;
}
.site-nav__dropdown a:hover { color: var(--cream); background: rgba(240,236,228,.05); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: rgba(240,236,228,.75);
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.header-icon:hover { color: var(--cream); background: rgba(240,236,228,.08); }

.header-cart { position: relative; }
.header-cart__count {
  position: absolute;
  top: 6px; right: 6px;
  background: var(--crimson);
  color: white;
  font-size: .625rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  color: var(--cream);
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: all .3s var(--ease);
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px; right: 0;
  width: min(360px, 100vw);
  height: calc(100vh - 72px);
  background: var(--dark);
  border-left: 1px solid rgba(240,236,228,.08);
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
  z-index: var(--z-mobile);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__inner { padding: 32px 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__link {
  display: block;
  padding: 12px 8px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(240,236,228,.8);
  border-bottom: 1px solid rgba(240,236,228,.06);
  transition: color .2s;
}
.mobile-menu__link:hover { color: var(--cream); }
.mobile-menu__link--sub { font-size: .75rem; opacity: .7; border: none; padding-left: 24px; }
.mobile-menu__link--highlight { color: var(--bronze-bright) !important; margin-top: 8px; }
.mobile-menu__footer { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(240,236,228,.1); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(2px);
  z-index: var(--z-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,20,16,.85) 0%,
    rgba(26,20,16,.5) 60%,
    rgba(122,31,31,.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero__title {
  color: var(--cream);
  margin: 0 0 24px;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  max-width: 8ch;
}
.hero__title em { color: var(--bronze-bright); }

.hero__sub {
  color: rgba(240,236,228,.8);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 48ch;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(240,236,228,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── MARQUEE ───────────────────────────────────────────────── */
.marquee-strip {
  background: var(--cream-dark);
  border-top: 1px solid rgba(131,78,24,.15);
  border-bottom: 1px solid rgba(131,78,24,.15);
  overflow: hidden;
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bronze);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ── PACK GALLERY ──────────────────────────────────────────── */
.pack-gallery { padding-bottom: 0; }
.pack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 3px;
  margin-top: 48px;
}
.pack-cell {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}
.pack-cell--tall { grid-row: span 2; }
.pack-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.pack-cell:hover img { transform: scale(1.05); }
.pack-cell__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,20,16,.9), transparent);
  padding: 24px 16px 12px;
  color: var(--cream);
}
.pack-cell__caption strong { display: block; font-size: .875rem; font-weight: 600; }
.pack-cell__caption span { font-size: .75rem; opacity: .75; }
.pack-cell--placeholder { cursor: default; }
.pack-cell__inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  font-size: 2rem;
  opacity: .4;
}

/* ── THREE PATHS ───────────────────────────────────────────── */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.path-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(240,236,228,.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: border-color .3s, background .3s;
}
.path-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(240,236,228,.2);
}
.path-card--featured {
  background: rgba(122,31,31,.15);
  border-color: rgba(122,31,31,.4);
  transform: translateY(-8px);
}
.path-card--featured:hover { border-color: rgba(122,31,31,.6); }
.path-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--crimson);
  color: var(--cream);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.path-card__icon { font-size: 2.5rem; margin-bottom: 16px; }
.path-card__tag { display: block; font-size: .6875rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--bronze-light); margin-bottom: 8px; }
.path-card h3 { color: var(--cream); font-size: 1.625rem; margin-bottom: 16px; }
.path-card p { color: rgba(240,236,228,.7); font-size: .9375rem; line-height: 1.7; margin-bottom: 24px; }
.path-card__list { margin-bottom: 32px; }
.path-card__list li { color: rgba(240,236,228,.65); font-size: .875rem; padding: 5px 0 5px 20px; position: relative; }
.path-card__list li::before { content: '✓'; position: absolute; left: 0; color: var(--bronze-light); font-size: .75rem; }

/* ── PRODUCTS ──────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(26,20,16,.12); }

.product-card__img-wrap {
  display: block;
  position: relative;
  padding-top: 75%;
  background: var(--cream-dark);
  overflow: hidden;
}
.product-card__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease-out);
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.04); }
.product-card__img-wrap--placeholder { cursor: default; }
.product-card__img-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--cream-dark);
  opacity: .5;
}
.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--crimson);
  color: white;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
}
.product-card__body { padding: 20px; }
.product-card__category { font-size: .6875rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--bronze); display: block; margin-bottom: 6px; }
.product-card__name { font-size: 1.0625rem; font-weight: 700; font-family: var(--font-serif); margin-bottom: 8px; }
.product-card__name a { color: var(--dark); transition: color .2s; }
.product-card__name a:hover { color: var(--crimson); }
.product-card__desc { font-size: .8125rem; color: #7a6e64; line-height: 1.6; margin-bottom: 16px; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-card__price { font-size: .875rem; font-weight: 700; color: var(--dark); }

/* ── BUILD THE BOWL SECTION ────────────────────────────────── */
.btb-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.btb-intro { font-size: 1.0625rem; line-height: 1.8; color: #5a5048; margin-bottom: 32px; }
.btb-articles { display: flex; flex-direction: column; gap: 1px; }
.btb-article {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 12px 20px 0;
  border-bottom: 1px solid rgba(26,20,16,.1);
  transition: all .2s;
}
.btb-article:hover { padding-left: 8px; }
.btb-article__num { font-family: var(--font-serif); font-size: 2rem; font-weight: 900; color: rgba(26,20,16,.12); min-width: 48px; line-height: 1; }
.btb-article__text { flex: 1; }
.btb-article__text strong { display: block; font-size: .9375rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.btb-article__text span { font-size: .8125rem; color: #7a6e64; }
.btb-article__arrow { color: var(--bronze); font-size: 1.25rem; transition: transform .2s; }
.btb-article:hover .btb-article__arrow { transform: translateX(6px); }

.btb-img-stack { position: relative; height: 480px; }
.btb-img-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
}
.btb-img-card img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.btb-img-card--1 {
  width: 72%; height: 70%;
  top: 0; right: 0;
}
.btb-img-card--2 {
  width: 56%; height: 56%;
  bottom: 0; left: 0;
  z-index: 2;
}
.btb-badge {
  position: absolute;
  top: 40%; right: -16px;
  background: var(--crimson);
  color: var(--cream);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 3;
  transform: rotate(-2deg);
  box-shadow: 0 8px 24px rgba(122,31,31,.4);
}

/* ── STORY SECTION ─────────────────────────────────────────── */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--dark-mid);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; opacity: .75; }
.story-img__label {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(26,20,16,.85);
  color: var(--cream);
  font-size: .75rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius);
  letter-spacing: .06em;
  backdrop-filter: blur(8px);
}
.story-content h2 { color: var(--cream); margin-bottom: 16px; }
.story-content h2 em { color: var(--bronze-light); }
.story-content > p { color: rgba(240,236,228,.7); margin-bottom: 36px; line-height: 1.8; }
.story-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.story-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.story-feature__icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.story-feature strong { display: block; color: var(--cream); font-size: .9375rem; margin-bottom: 2px; }
.story-feature span { color: rgba(240,236,228,.6); font-size: .8125rem; line-height: 1.6; }

/* ── MEET THE PACK ─────────────────────────────────────────── */
.pack-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pack-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.pack-member__avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(26,20,16,.1);
  background: var(--cream-dark);
}
.pack-member__avatar img { width: 100%; height: 100%; object-fit: cover; }
.pack-member__avatar--ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--cream-dark);
  opacity: .5;
}
.pack-member__info strong { display: block; font-size: .875rem; font-weight: 600; color: var(--dark); }
.pack-member__info span  { font-size: .75rem; color: #8b7355; }

/* ── DOG OF THE MONTH ──────────────────────────────────────── */
.dotm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dotm-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark-mid);
}
.dotm-image img { width: 100%; height: 100%; object-fit: cover; }
.dotm-image__ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: .3;
}
.dotm-badge {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  background: var(--bronze-bright);
  color: var(--dark);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  white-space: nowrap;
}
.dotm-content h2 { color: var(--cream); margin-bottom: 4px; }
.dotm-breed { color: var(--bronze-light); font-size: .875rem; margin-bottom: 16px; letter-spacing: .04em; }
.dotm-content > p { color: rgba(240,236,228,.7); line-height: 1.8; margin-bottom: 24px; }
.dotm-stats { display: flex; gap: 32px; margin-top: 24px; }
.dotm-stat { text-align: center; }
.dotm-stat strong { display: block; font-family: var(--font-serif); font-size: 2rem; color: var(--bronze-bright); }
.dotm-stat span { font-size: .75rem; color: rgba(240,236,228,.55); letter-spacing: .06em; text-transform: uppercase; }

/* ── QUIZ CTA ──────────────────────────────────────────────── */
.quiz-cta__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.quiz-cta__paw { font-size: 2rem; margin-bottom: 16px; }
.quiz-cta h2 { margin-bottom: 16px; }
.quiz-cta > .quiz-cta__inner > p { color: #7a6e64; margin: 0 auto 40px; }
.quiz-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.quiz-step { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.quiz-step__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--crimson);
  color: white;
  font-size: .875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quiz-step span { font-size: .8125rem; color: #7a6e64; font-weight: 500; }
.quiz-step__divider { font-size: 1.25rem; color: rgba(26,20,16,.25); }

/* ── FOUNDING CTA ──────────────────────────────────────────── */
.founding-cta {
  position: relative;
  background: var(--dark);
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.founding-cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(122,31,31,.35) 0%, transparent 70%);
}
.founding-cta__content {
  position: relative;
  z-index: 2;
}
.founding-cta h2 { color: var(--cream); margin-bottom: 20px; }
.founding-cta > .founding-cta__content > p { color: rgba(240,236,228,.7); margin: 0 auto 56px; }
.founding-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  text-align: left;
}
.founding-perk {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(240,236,228,.08);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.founding-perk__icon { font-size: 1.5rem; margin-bottom: 12px; display: block; }
.founding-perk strong { display: block; color: var(--cream); font-size: .9375rem; margin-bottom: 4px; }
.founding-perk span { color: rgba(240,236,228,.55); font-size: .8125rem; line-height: 1.6; }
.founding-cta__note { margin-top: 20px; font-size: .8125rem; color: rgba(240,236,228,.45); letter-spacing: .04em; }

/* ── INSTAGRAM STRIP ───────────────────────────────────────── */
.insta-strip { padding: 64px 0 64px; background: var(--cream); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 24px;
}
.insta-cell {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
}
.insta-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease-out); }
.insta-cell:hover img { transform: scale(1.08); }
.insta-cell__hover {
  position: absolute;
  inset: 0;
  background: rgba(122,31,31,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.insta-cell:hover .insta-cell__hover { opacity: 1; }
.insta-cell__hover span { color: white; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.insta-cell--ph { background: var(--cream-dark); }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(240,236,228,.65); }
.site-footer__top { padding: 80px 0 64px; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.site-logo--footer .site-logo__text { font-size: 1.25rem; }
.site-footer__tagline { font-size: .875rem; line-height: 1.7; color: rgba(240,236,228,.5); }
.site-footer__social { display: flex; gap: 8px; margin-top: 8px; }
.site-footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(240,236,228,.15);
  border-radius: var(--radius);
  color: rgba(240,236,228,.55);
  transition: all .2s;
}
.site-footer__social a:hover { border-color: var(--bronze-light); color: var(--bronze-light); }
.site-footer__col h4 {
  font-family: var(--font-sans);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a {
  font-size: .875rem;
  color: rgba(240,236,228,.5);
  transition: color .2s;
}
.site-footer__col a:hover { color: var(--cream); }
.site-footer__bottom {
  border-top: 1px solid rgba(240,236,228,.08);
  padding: 24px 0;
}
.site-footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer__bottom p { font-size: .8125rem; color: rgba(240,236,228,.35); max-width: none; }
.site-footer__legal { display: flex; gap: 24px; }
.site-footer__legal a { font-size: .75rem; color: rgba(240,236,228,.35); transition: color .2s; }
.site-footer__legal a:hover { color: rgba(240,236,228,.7); }

/* ── PAGE UTILITIES ────────────────────────────────────────── */
.page-hero {
  background: var(--cream-dark);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero h1 { color: var(--dark); }
.page-hero p { color: #6a5f55; margin: 16px auto 0; }

.flash-messages { margin: 16px 0; }
.flash-success { background: #d4edda; color: #1a5c2a; padding: 12px 16px; border-radius: var(--radius); font-size: .875rem; }
.flash-error   { background: #f8d7da; color: #721c24; padding: 12px 16px; border-radius: var(--radius); font-size: .875rem; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--bronze); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1.5px solid rgba(26,20,16,.15);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9375rem;
  color: var(--dark);
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(122,31,31,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── MOBILE MENU EXTRAS ─────────────────────────────────────── */
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 14px;
  border-bottom: 1px solid rgba(240,236,228,.08);
  margin-bottom: 4px;
}
.mobile-menu__brand-label {
  font-family: var(--font-serif);
  font-size: .875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(240,236,228,.5);
}
.mobile-menu__close {
  background: none;
  border: none;
  color: rgba(240,236,228,.5);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 8px;
  margin-right: -8px;
  transition: color .2s;
}
.mobile-menu__close:hover,
.mobile-menu__close:focus-visible { color: var(--cream); outline: none; }
.mobile-menu__btn       { width: 100%; text-align: center; }
.mobile-menu__btn--cart { margin-top: 12px; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --gutter: 24px; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .pack-wall { grid-template-columns: repeat(4, 1fr); }
  .founding-perks { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .paths-grid { grid-template-columns: 1fr; }
  .path-card--featured { transform: none; }
  .btb-layout { grid-template-columns: 1fr; }
  .btb-visual { display: none; }
  .story-layout { grid-template-columns: 1fr; }
  .story-img { aspect-ratio: 16/9; }
  .dotm-layout { grid-template-columns: 1fr; }
  .dotm-image { aspect-ratio: 4/3; }
  .pack-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .pack-cell--tall { grid-row: span 1; }
  .products-grid { grid-template-columns: 1fr; }
  .pack-wall { grid-template-columns: repeat(2, 1fr); }
  .founding-perks { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .quiz-steps { flex-direction: column; gap: 8px; }
  .quiz-step__divider { transform: rotate(90deg); }
}

@media (max-width: 480px) {
  .hero__title { font-size: 3rem; }
  .hero__actions { flex-direction: column; }
  .pack-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .pack-wall { grid-template-columns: repeat(2, 1fr); }
}
