:root {
  --black: #1a1a1a;
  --white: #f8f7f4;
  --cream: #eceae4;
  --accent: #5e8a6b;
  --accent-light: #7aa685;
  --accent-pop: #d4654a;
  --sage: #5e8a6b;
  --text-muted: #6b6a66;
  --radius: 16px;
  /* Horizontal inset for main content — one value sitewide; tightens on small screens */
  --page-pad-x: 56px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* NAV (site header only — not breadcrumb <nav>) */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px var(--page-pad-x);
  background: rgba(247,245,240,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
nav.breadcrumb {
  position: static;
  inset: auto;
  z-index: auto;
  display: inline-flex;
  padding: 0;
  margin: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
}
.logo {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  letter-spacing: -0.5px;
}
.logo a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: 1;
}
.logo span { color: var(--accent); }
nav.site-nav .nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
nav.site-nav .nav-links a {
  text-decoration: none; color: var(--black);
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s;
}
nav.site-nav .nav-links a:hover { color: var(--accent); }
nav.site-nav .nav-links a.is-active { color: var(--accent); }
.nav-menu-toggle,
.nav-trailing-spacer {
  display: none;
}
.nav-menu-toggle {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 0 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--black);
  transition: background 0.2s;
}
.nav-menu-toggle:hover { background: rgba(0,0,0,0.05); }
.nav-menu-toggle:focus-visible {
  outline: 2px solid var(--accent-pop);
  outline-offset: 2px;
}
.nav-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
nav.site-nav.is-open .nav-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.site-nav.is-open .nav-menu-toggle span:nth-child(2) {
  opacity: 0;
}
nav.site-nav.is-open .nav-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(26,26,26,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}
body.nav-menu-open {
  overflow: hidden;
  touch-action: none;
}
.nav-cta {
  background: var(--black); color: var(--white) !important;
  padding: 10px 24px; border-radius: 100px;
  font-size: 13px !important; font-weight: 700 !important;
  letter-spacing: 0.5px;
  transition: transform 0.2s, background 0.2s !important;
}
.nav-cta:hover { transform: scale(1.04); background: var(--accent-pop) !important; }

/* Nav: Kits dropdown */
.nav-item-dropdown {
  position: relative;
  list-style: none;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-dropdown-trigger:hover,
.nav-item-dropdown.is-active > .nav-dropdown-trigger {
  color: var(--accent);
}
.nav-dropdown-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
  opacity: 0.75;
  transition: transform 0.2s ease;
}
.nav-dropdown-menu {
  position: absolute;
  /* Flush with trigger so the pointer never crosses a dead gap (li hover would drop). */
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  margin: 0;
  /* Top padding bridges trigger → first row; still one hover target with the <li>. */
  padding: 14px 0 8px;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
  z-index: 120;
}
.nav-dropdown-menu li {
  margin: 0;
  border: none;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover {
  background: rgba(94, 138, 107, 0.1);
  color: var(--accent);
}
.nav-dropdown-menu a[aria-current='page'] {
  color: var(--accent);
  font-weight: 700;
}
.nav-dropdown-trigger:focus-visible {
  outline: 2px solid var(--accent-pop);
  outline-offset: 2px;
  border-radius: 6px;
}

@media (min-width: 901px) {
  /* Hover only (no :focus-within): a click does not leave the menu open after the pointer leaves. */
  .nav-item-dropdown:hover .nav-dropdown-chevron {
    transform: rotate(180deg);
  }
  .nav-item-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* HERO */
.hero {
  min-height: 100dvh;
  box-sizing: border-box;
  padding: clamp(88px, 10dvh, 132px) var(--page-pad-x) clamp(40px, 6dvh, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
  position: relative;
  /* clip x only — hidden+visible would force overflow-y:auto (fake scroll area) */
  overflow: clip visible;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(94,138,107,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream);
  padding: 8px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero p {
  font-size: 18px; line-height: 1.7;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center;
  animation: fadeUp 0.8s 0.3s ease both;
}
.btn-primary {
  background: var(--accent-pop);
  color: white;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,101,74,0.3);
}
.btn-secondary {
  color: var(--black);
  padding: 16px 24px;
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { color: var(--accent); }
.btn-secondary::after { content: '→'; transition: transform 0.2s; }
.btn-secondary:hover::after { transform: translateX(4px); }

/* HERO VISUAL — 4:5 frame; width capped with vw (not dvh) so tall/short window doesn’t resize it */
.hero-visual {
  position: relative;
  animation: fadeUp 0.8s 0.4s ease both;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  container-type: inline-size;
  /* Between “too small” (old dvh cap) and full column: scales with width, max ~500px */
  width: min(100%, clamp(320px, 36vw, 540px));
  aspect-ratio: 4 / 5;
  margin-inline: auto;
  background: var(--cream);
  box-shadow:
    0 28px 60px -24px rgba(26,26,26,0.22),
    0 10px 24px -14px rgba(26,26,26,0.10);
  isolation: isolate;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,26,26,0.38) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-photo img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(0.95);
}
.hero-photo:hover img { transform: scale(1.03); }
.hero-photo-watermark {
  position: absolute;
  bottom: -28px; right: -12px;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(56px, 52cqi, 160px);
  color: rgba(255,255,255,0.18);
  letter-spacing: -4px;
  line-height: 1;
  z-index: 2;
  pointer-events: none;
}
.hero-photo-overlay {
  position: absolute;
  left: clamp(8px, 3.5cqi, 16px);
  right: clamp(8px, 3.5cqi, 16px);
  bottom: clamp(8px, 3.5cqi, 16px);
  z-index: 3;
  box-sizing: border-box;
  /* width = figure minus insets; wrapping keeps pills inside */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: clamp(4px, 2cqi, 8px);
  padding: clamp(8px, 2.5cqi, 12px);
  background: rgba(248,247,244,0.82);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: clamp(12px, 4cqi, 18px);
  border: 1px solid rgba(255,255,255,0.5);
}
.hero-photo-overlay .hero-pill-btn {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  justify-content: center;
}
.hero-pill {
  font-size: clamp(10px, 3.2cqi, 12px);
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  padding: clamp(5px, 1.8cqi, 6px) clamp(7px, 2.8cqi, 12px);
  border-radius: 100px;
  letter-spacing: 0.2px;
  border: 1px solid rgba(0,0,0,0.05);
  display: inline-flex;
  align-items: center;
  gap: clamp(3px, 1.5cqi, 6px);
  line-height: 1;
  box-sizing: border-box;
  max-width: 100%;
}
.hero-pill-btn {
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.hero-pill-btn:hover {
  border-color: rgba(94,138,107,0.45);
  color: var(--accent);
}
.hero-pill-btn:focus-visible {
  outline: 2px solid var(--accent-pop);
  outline-offset: 2px;
}
.hero-pill-btn.is-active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.kit-price-tag {
  position: absolute;
  top: clamp(10px, 3cqi, 20px);
  right: clamp(10px, 3cqi, 20px);
  z-index: 3;
  background: var(--accent-pop);
  color: white;
  padding: clamp(6px, 2cqi, 10px) clamp(10px, 3cqi, 20px);
  border-radius: 100px;
  font-size: clamp(11px, 3.2cqi, 14px);
  font-weight: 700;
  box-shadow: 0 8px 20px -6px rgba(212,101,74,0.45);
  max-width: calc(100% - clamp(20px, 8cqi, 40px));
  box-sizing: border-box;
  text-align: center;
}

/* Narrow hero figure (desktop clamp width): 2×2 pills stay inside frame */
@container (max-width: 420px) {
  .hero-photo-overlay {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
  }
  .hero-photo-overlay .hero-pill-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo:hover img { transform: none; }
}

/* SOCIAL PROOF TICKER — two .ticker-group copies so -50% lands on a perfect seam */
.ticker {
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  animation: ticker-marquee 45s linear infinite;
  will-change: transform;
}
.ticker-group {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-shrink: 0;
  /* same spacing after last item as between items, so loop point matches flex gaps */
  padding-inline-end: 48px;
}
.ticker-item {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}
.ticker-item strong { color: var(--black); }
@keyframes ticker-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 12px;
    width: 100%;
    max-width: 100%;
  }
  .ticker-group {
    padding-inline-end: 0;
  }
  .ticker-group[aria-hidden="true"] {
    display: none;
  }
}

/* HOW IT WORKS */
.how {
  padding: 120px var(--page-pad-x);
}
.section-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 64px;
  max-width: 600px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  position: relative;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(232,85,61,0.08);
}
.step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 64px;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 12px;
}
.step p {
  font-size: 15px; line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* How it works: dot nav (shown on mobile only via media query) */
.how-steps-footer,
.steps-dots {
  display: none;
}

/* KITS SECTION (dark) */
.kits {
  padding: 120px var(--page-pad-x);
  background: var(--black);
  color: var(--white);
  border-radius: 40px 40px 0 0;
  overflow-x: hidden;
}
.kits .section-label { color: var(--accent-light); }

/* KITS HEADER (title + carousel controls) */
.kits-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.kits-header > div:first-child { max-width: 640px; }
.kits-header .section-title { margin-bottom: 0; color: var(--white); }
.carousel-controls {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.carousel-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, opacity 0.2s;
}
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-btn:hover {
  border-color: var(--accent-pop);
  color: var(--accent-pop);
  transform: scale(1.05);
}
.carousel-btn:focus-visible {
  outline: 2px solid var(--accent-pop);
  outline-offset: 3px;
}
.carousel-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  transform: none;
}

/* CAROUSEL TRACK */
.kits-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, calc((100% - 48px) / 3));
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 4px 12px;
  margin: 0 -4px;
}
.kits-carousel::-webkit-scrollbar { display: none; }

.pack-card {
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 36px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  overflow: hidden;
}
.pack-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.04);
}
.pack-card.featured {
  border-color: var(--accent-pop);
  background: rgba(94,138,107,0.06);
}
.pack-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 18px; right: 18px;
  background: var(--accent-pop);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px;
}
.pack-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 28px;
}
.pack-name {
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}
.pack-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.pack-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  line-height: 1.65;
}
.pack-list {
  list-style: none;
  margin-bottom: 28px;
}
.pack-list li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 12px;
}
.pack-list li:last-child { border-bottom: none; }
.pack-list li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  font-size: 13px;
}
.pack-from {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  margin-top: auto;
}
.pack-from strong {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-left: 4px;
  font-family: 'Instrument Serif', serif;
}

.btn-kit {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 100px;
  font-size: 14px; font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
}
.btn-kit-primary {
  background: var(--accent-pop); color: white;
}
.btn-kit-primary:hover { transform: scale(1.02); }
.btn-kit-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-kit-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* TRUST */
.trust {
  background: var(--black);
  color: var(--white);
  padding: 0 var(--page-pad-x) 120px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-card {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}
.trust-card .num {
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 8px;
}
.trust-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* PHOTO GALLERY — flat row; margin-right (not gap) so -50% = one seamless copy */
.gallery {
  padding: 100px var(--page-pad-x);
  overflow: hidden;
}
.gallery-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  width: max-content;
  animation: gallery-marquee 50s linear infinite;
  will-change: transform;
}
.gallery-row + .gallery-row {
  margin-top: 32px;
  animation-direction: reverse;
}
.gallery-img {
  flex-shrink: 0;
  width: 320px;
  height: 220px;
  margin-right: 16px;
  border-radius: 20px;
  object-fit: cover;
  filter: saturate(0.9);
  transition: filter 0.3s, transform 0.3s;
}
.gallery-img:hover {
  filter: saturate(1.1);
  transform: scale(1.03);
}
@keyframes gallery-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-row {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    row-gap: 16px;
  }
  .gallery-row + .gallery-row {
    margin-top: 24px;
  }
  .gallery-row > .gallery-img:nth-child(n + 7) {
    display: none;
  }
  .gallery-img {
    margin-right: 0;
  }
}

/* REVIEWS */
.reviews {
  padding: 120px var(--page-pad-x);
  background: var(--cream);
}
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.reviews-stars {
  display: flex; gap: 4px;
  margin-top: 16px;
}
.reviews-stars span {
  color: #d4a24e;
  font-size: 20px;
}
.review-summary {
  text-align: right;
}
.review-summary .big-num {
  font-family: 'Instrument Serif', serif;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
}
.review-summary p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.review-card::before {
  content: '"';
  font-family: 'Instrument Serif', serif;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: 12px; left: 28px;
  line-height: 1;
}
.review-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--black);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.review-name {
  font-size: 14px; font-weight: 700;
}
.review-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.review-kit-tag {
  display: inline-block;
  background: var(--cream);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

/* UNIVERSITIES */
.unis {
  padding: 100px var(--page-pad-x);
  text-align: center;
}
.uni-logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
  opacity: 0.4;
}
.uni-logo {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* CTA BOTTOM */
.cta-bottom {
  padding: 100px var(--page-pad-x);
  text-align: center;
  position: relative;
  overflow: clip visible;
  max-height: none;
}
.cta-bottom::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(94,138,107,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-bottom h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.cta-bottom h2 em { color: var(--accent); font-style: italic; }
.cta-bottom p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 60px var(--page-pad-x);
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: grid;
  gap: 4px;
}
footer p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-copyright {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.9;
}
.footer-legal {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}
.footer-legal-link {
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  opacity: 0.95;
}
.footer-legal-link:hover {
  color: var(--accent);
  text-decoration: underline;
}
.footer-legal-sep {
  margin: 0 0.4em;
  opacity: 0.45;
  user-select: none;
}

/* Cookie consent modal (GDPR / LSSI-CE) */
html.cookie-banner-is-visible,
body.cookie-banner-is-visible {
  overflow: hidden;
}
.cookie-consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(20px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right))
    max(20px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
  box-sizing: border-box;
  animation: cookieOverlayIn 0.32s ease both;
}
.cookie-consent-overlay.is-leaving {
  animation: cookieOverlayOut 0.26s ease forwards;
  pointer-events: none;
}
.cookie-consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 20, 0.52);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
@keyframes cookieOverlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes cookieOverlayOut {
  to {
    opacity: 0;
  }
}
.cookie-banner {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  margin: 0;
  padding: 26px 28px 24px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.06),
    0 24px 48px -16px rgba(0, 0, 0, 0.22);
  animation: cookieModalIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.cookie-consent-overlay.is-leaving .cookie-banner {
  animation: cookieModalOut 0.26s ease forwards;
}
@keyframes cookieModalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes cookieModalOut {
  to {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
}
.cookie-banner-inner {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.cookie-banner-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: -4px 0 0;
}
.cookie-banner-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--accent);
  opacity: 0.95;
}
.cookie-banner-icon svg {
  display: block;
}
.cookie-banner-brand .logo {
  font-size: clamp(32px, 5vw, 40px);
  line-height: 1;
}
.cookie-banner-brand .logo a:hover {
  color: var(--accent);
}
.cookie-banner-copy {
  flex: none;
  width: 100%;
  min-width: 0;
}
.cookie-banner-heading {
  margin: 0 0 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}
.cookie-banner-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}
.cookie-banner-text a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.cookie-banner-text a:hover {
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: stretch;
  width: 100%;
}
.cookie-banner-btn {
  appearance: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: var(--white);
  color: var(--black);
  transition: border-color 0.2s, color 0.2s, filter 0.2s;
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  box-sizing: border-box;
}
.cookie-banner-btn--reject:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.cookie-banner-btn--accept {
  background: var(--accent);
  color: var(--white);
  border-color: transparent;
}
.cookie-banner-btn--accept:hover {
  filter: brightness(1.06);
}
.cookie-consent-reset {
  margin-top: 4px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
}
.cookie-consent-reset:hover {
  border-color: var(--accent);
  color: var(--accent);
}
footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
}
footer a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 24px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   PACK DETAIL PAGES (pack-*.html)
   =========================================== */
.pack-detail {
  padding: 140px var(--page-pad-x) 80px;
  position: relative;
  overflow: hidden;
}
.pack-detail::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(94,138,107,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current {
  color: var(--black);
  font-weight: 600;
}

/* Pack detail pages — editorial layout (image leads), cream shell, staggered enter */
body.page-pack {
  background: var(--cream);
}
body.page-pack nav.site-nav {
  background: rgba(248, 247, 244, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
body.page-pack .pack-detail {
  padding: 120px var(--page-pad-x) 64px;
  background: transparent;
  overflow: clip visible;
}
body.page-pack .pack-detail::before {
  top: 20%;
  left: -180px;
  right: auto;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(212, 101, 74, 0.14) 0%, transparent 70%);
}
body.page-pack .breadcrumb {
  display: inline-flex;
  padding: 10px 20px;
  margin-bottom: 36px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.07);
  animation: pack-breadcrumb-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
body.page-pack .pack-hero {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 5vw, 72px);
  max-width: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 72px;
}
body.page-pack .pack-hero > :first-child {
  order: 2;
}
body.page-pack .pack-hero-visual {
  order: 1;
  animation: pack-hero-photo-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
body.page-pack .pack-hero .lede {
  max-width: 42ch;
}
body.page-pack .pack-hero-visual .hero-photo {
  border-radius: 32px;
  /* Slightly larger than global .hero-photo (36vw / 540px) for pack detail pages */
  width: min(100%, clamp(320px, 38vw, 580px));
  box-shadow:
    0 36px 90px -36px rgba(26, 26, 26, 0.35),
    0 12px 32px -18px rgba(26, 26, 26, 0.14);
}
body.page-pack .pack-hero > div:first-child {
  animation: pack-hero-text-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
body.page-pack .tiers-section {
  background: var(--white);
  border-radius: 40px 40px 0 0;
  /* Full shorthand so horizontal inset always matches .pack-detail / .includes-section */
  padding: 96px var(--page-pad-x) 120px;
}
body.page-pack .includes-section {
  background: var(--white);
  /* Top inset matches .tiers-section / .pack-tier-compare above “What’s in the pak” */
  padding: 96px var(--page-pad-x) 120px;
}
body.page-pack .cta-bottom {
  padding: 100px var(--page-pad-x);
  animation: pack-section-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

/* Pack tier detail (Essential / Premium deep links) */
body.page-pack-tier-detail {
  background: var(--cream);
}
/* Same horizontal inset as pack listing / home sections */
body.page-pack-tier-detail .pack-tier-detail {
  padding: 120px var(--page-pad-x) 64px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
  --pack-tier-detail-hero-radius: 22px;
}
body.page-pack-tier-detail .pack-tier-detail .breadcrumb {
  margin-bottom: 40px;
}
body.page-pack-tier-detail .pack-tier-detail-grid {
  display: grid;
  /* ~⅔ hero image, ~⅓ copy */
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
body.page-pack-tier-detail .pack-tier-detail-media {
  min-width: 0;
  position: sticky;
  top: 96px;
}
body.page-pack-tier-detail .pack-tier-detail-media .tier-image-disclaimer {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
}
body.page-pack-tier-detail .pack-tier-detail-media .tier-image-disclaimer a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(0, 0, 0, 0.28);
}
body.page-pack-tier-detail .pack-tier-detail-media .tier-image-disclaimer a:hover {
  color: var(--black);
  text-decoration-color: currentColor;
}
body.page-pack-tier-detail .pack-tier-detail-visual {
  min-width: 0;
  position: static;
  top: auto;
  border-radius: var(--pack-tier-detail-hero-radius);
  overflow: hidden;
  box-shadow:
    0 36px 90px -36px rgba(26, 26, 26, 0.3),
    0 12px 32px -18px rgba(26, 26, 26, 0.12);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Single-image tier heroes: full photo visible (no crop), height capped */
body.page-pack-tier-detail .pack-tier-detail-visual:not(.pack-tier-detail-slider) {
  max-height: min(72vh, 820px);
}
body.page-pack-tier-detail .pack-tier-detail-visual:not(.pack-tier-detail-slider) > img {
  display: block;
  max-width: 100%;
  max-height: min(72vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

/* Tier detail: carousel — viewport aspect-ratio set inline from first gallery slide; width-driven height only (no vh) */
body.page-pack-tier-detail .pack-tier-detail-visual.pack-tier-detail-slider {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-height: none;
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
  padding: 0;
  background: var(--black);
}
body.page-pack-tier-detail .pack-tier-detail-slider-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  outline: none;
}
body.page-pack-tier-detail .pack-tier-detail-slider-viewport:focus-visible {
  box-shadow: inset 0 0 0 2px var(--accent-pop);
}
body.page-pack-tier-detail .pack-tier-detail-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
body.page-pack-tier-detail .pack-tier-detail-slider-slide {
  flex-shrink: 0;
  height: 100%;
  min-width: 0;
}
body.page-pack-tier-detail .pack-tier-detail-slider-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
/* Prev/next vertically centered on sides; dots on bottom scrim over the image */
body.page-pack-tier-detail .pack-tier-detail-slider-chrome {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
body.page-pack-tier-detail .pack-tier-detail-slider-chrome-mid {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}
body.page-pack-tier-detail .pack-tier-detail-slider-dots-wrap {
  pointer-events: auto;
  padding: 18px 14px 16px;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.72) 0%,
    rgba(26, 26, 26, 0.35) 45%,
    transparent 100%
  );
  display: flex;
  justify-content: center;
}
body.page-pack-tier-detail .pack-tier-detail-slider-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(26, 26, 26, 0.42);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
}
body.page-pack-tier-detail .pack-tier-detail-slider-btn--edge {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
body.page-pack-tier-detail .pack-tier-detail-slider-btn:hover {
  border-color: var(--accent-pop);
  color: var(--accent-pop);
  background: rgba(26, 26, 26, 0.58);
}
body.page-pack-tier-detail .pack-tier-detail-slider-btn:focus-visible {
  outline: 2px solid var(--accent-pop);
  outline-offset: 2px;
}
body.page-pack-tier-detail .pack-tier-detail-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
body.page-pack-tier-detail .pack-tier-detail-slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.25s, background 0.25s;
}
body.page-pack-tier-detail .pack-tier-detail-slider-dot.is-active {
  width: 22px;
  background: var(--accent-pop);
}
body.page-pack-tier-detail .pack-tier-detail-slider-dot:focus-visible {
  outline: 2px solid var(--accent-pop);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  body.page-pack-tier-detail .pack-tier-detail-slider-track {
    transition: none;
  }
}
body.page-pack-tier-detail .pack-tier-detail-copy .section-label {
  margin-bottom: 0;
}
body.page-pack-tier-detail .pack-tier-detail-copy h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 8px 0 12px;
}
body.page-pack-tier-detail .pack-tier-detail-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
body.page-pack-tier-detail .pack-tier-detail-price .amount {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -1px;
}
body.page-pack-tier-detail .pack-tier-detail-price .unit {
  font-size: 15px;
  color: var(--text-muted);
}
body.page-pack-tier-detail .pack-tier-detail-lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: none;
}
body.page-pack-tier-detail .pack-tier-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 0;
}
body.page-pack-tier-detail .pack-tier-detail-actions .btn-primary {
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Full-width “What's included” below hero */
body.page-pack-tier-detail .pack-tier-detail-includes {
  padding: 56px var(--page-pad-x) 96px;
  margin: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  box-sizing: border-box;
  width: 100%;
}
body.page-pack-tier-detail .pack-tier-detail-includes-heading,
body.page-pack-tier-detail .pack-tier-detail-includes-groups,
body.page-pack-tier-detail .pack-tier-detail-includes-catalog,
body.page-pack-tier-detail .pack-tier-detail-includes > .pack-tier-detail-includes-grid {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
body.page-pack-tier-detail .pack-tier-detail-includes-heading {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 3.2vw, 36px);
  margin: 0 0 28px;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--black);
}
body.page-pack-tier-detail .pack-tier-detail-includes-groups {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.page-pack-tier-detail .pack-tier-detail-includes-groups--supplemental {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}
body.page-pack-tier-detail .pack-tier-detail-includes-catalog {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
body.page-pack-tier-detail .pack-tier-detail-includes-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.05);
  border: 1px solid rgba(26, 26, 26, 0.08);
  width: fit-content;
  max-width: 100%;
}
body.page-pack-tier-detail .pack-tier-detail-includes-tab {
  appearance: none;
  border: none;
  margin: 0;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    box-shadow 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}
body.page-pack-tier-detail .pack-tier-detail-includes-tab:hover {
  color: var(--black);
}
body.page-pack-tier-detail .pack-tier-detail-includes-tab.is-active {
  color: var(--black);
  background: var(--white);
  box-shadow:
    0 1px 2px rgba(26, 26, 26, 0.06),
    0 4px 12px -4px rgba(26, 26, 26, 0.12);
}
body.page-pack-tier-detail .pack-tier-detail-includes-tab:focus-visible {
  outline: 2px solid var(--accent-pop);
  outline-offset: 2px;
}
body.page-pack-tier-detail .pack-tier-detail-includes-panels {
  min-width: 0;
}
body.page-pack-tier-detail .pack-tier-detail-includes-panel {
  display: none;
}
body.page-pack-tier-detail .pack-tier-detail-includes-panel.is-active {
  display: block;
}
body.page-pack-tier-detail .pack-tier-detail-includes-panel .pack-tier-detail-includes-groups {
  gap: 32px;
}
body.page-pack-tier-detail .pack-tier-detail-includes-subheading {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.3;
}
body.page-pack-tier-detail .pack-tier-detail-includes-group .pack-tier-detail-includes-grid {
  margin-bottom: 0;
}
body.page-pack-tier-detail .pack-tier-detail-includes-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 16px;
}
body.page-pack-tier-detail .pack-tier-detail-includes-grid li {
  margin: 0;
  padding: 20px 20px 24px;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--black);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 26px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  position: relative;
  min-height: 3.25rem;
  display: flex;
  align-items: center;
}
body.page-pack-tier-detail .pack-tier-detail-includes-grid li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1.1em;
  border-radius: 2px;
  background: var(--accent);
}
body.page-pack-tier-detail .pack-tier-detail-actions .btn-secondary {
  text-decoration: none;
}

@keyframes pack-breadcrumb-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pack-hero-text-in {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pack-hero-photo-in {
  from { opacity: 0; transform: scale(0.94) translateX(-20px); }
  to { opacity: 1; transform: scale(1) translateX(0); }
}
@keyframes pack-section-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pack-tiers-header-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pack-tier-card-in {
  from { opacity: 0; transform: translateY(36px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes pack-includes-card-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pack-hero-pill-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pack-tier-detail-visual-in {
  from { opacity: 0; transform: scale(0.96) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes pack-tier-detail-copy-in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pack-tier-detail-list-in {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Pack pages — “Choose your quality” + includes: staggered reveals */
body.page-pack .tiers-section .tiers-header {
  animation: pack-tiers-header-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}
body.page-pack .tiers-grid .tier-card:nth-child(1) {
  animation: pack-tier-card-in 0.68s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
body.page-pack .tiers-grid .tier-card:nth-child(2) {
  animation: pack-tier-card-in 0.68s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}
body.page-pack .includes-section .tiers-header {
  animation: pack-tiers-header-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both;
}
body.page-pack .includes-grid .includes-card:nth-child(1) {
  animation: pack-includes-card-in 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
body.page-pack .includes-grid .includes-card:nth-child(2) {
  animation: pack-includes-card-in 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
body.page-pack .includes-grid .includes-card:nth-child(3) {
  animation: pack-includes-card-in 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.26s both;
}
body.page-pack .pack-hero-features .hero-pill:nth-child(1) {
  animation: pack-hero-pill-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
body.page-pack .pack-hero-features .hero-pill:nth-child(2) {
  animation: pack-hero-pill-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}
body.page-pack .pack-hero-features .hero-pill:nth-child(3) {
  animation: pack-hero-pill-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}
body.page-pack .pack-hero-features .hero-pill:nth-child(4) {
  animation: pack-hero-pill-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both;
}
body.page-pack .pack-hero-features .hero-pill:nth-child(5) {
  animation: pack-hero-pill-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
}
body.page-pack .pack-hero-features .hero-pill:nth-child(6) {
  animation: pack-hero-pill-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

/* Tier detail (Essential / Premium URLs): hero + copy column */
body.page-pack-tier-detail .pack-tier-detail .breadcrumb {
  animation: pack-breadcrumb-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
body.page-pack-tier-detail .pack-tier-detail-visual {
  animation: pack-tier-detail-visual-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}
body.page-pack-tier-detail .pack-tier-detail-copy {
  min-width: 0;
  animation: pack-tier-detail-copy-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}
body.page-pack-tier-detail .pack-tier-detail-actions {
  animation: pack-tier-detail-list-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}
body.page-pack-tier-detail .pack-tier-detail-includes-heading {
  animation: pack-tier-detail-copy-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
body.page-pack-tier-detail .pack-tier-detail-includes-grid li:nth-child(1) {
  animation: pack-tier-detail-list-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
body.page-pack-tier-detail .pack-tier-detail-includes-grid li:nth-child(2) {
  animation: pack-tier-detail-list-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}
body.page-pack-tier-detail .pack-tier-detail-includes-grid li:nth-child(3) {
  animation: pack-tier-detail-list-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}
body.page-pack-tier-detail .pack-tier-detail-includes-grid li:nth-child(4) {
  animation: pack-tier-detail-list-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}
body.page-pack-tier-detail .pack-tier-detail-includes-grid li:nth-child(5) {
  animation: pack-tier-detail-list-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.46s both;
}
body.page-pack-tier-detail .pack-tier-detail-includes-grid li:nth-child(6) {
  animation: pack-tier-detail-list-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}
body.page-pack-tier-detail .pack-tier-detail-includes-grid li:nth-child(7) {
  animation: pack-tier-detail-list-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.54s both;
}
body.page-pack-tier-detail .pack-tier-detail-includes-grid li:nth-child(8) {
  animation: pack-tier-detail-list-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}
body.page-pack-tier-detail .pack-tier-detail-includes-grid li:nth-child(n + 9) {
  animation: pack-tier-detail-list-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

@media (prefers-reduced-motion: reduce) {
  body.page-pack .breadcrumb,
  body.page-pack .pack-hero > div:first-child,
  body.page-pack .pack-hero-visual,
  body.page-pack .tiers-section,
  body.page-pack .includes-section,
  body.page-pack .cta-bottom,
  body.page-pack .tiers-section .tiers-header,
  body.page-pack .tiers-grid .tier-card:nth-child(1),
  body.page-pack .tiers-grid .tier-card:nth-child(2),
  body.page-pack .includes-section .tiers-header,
  body.page-pack .includes-grid .includes-card:nth-child(1),
  body.page-pack .includes-grid .includes-card:nth-child(2),
  body.page-pack .includes-grid .includes-card:nth-child(3),
  body.page-pack .pack-hero-features .hero-pill:nth-child(1),
  body.page-pack .pack-hero-features .hero-pill:nth-child(2),
  body.page-pack .pack-hero-features .hero-pill:nth-child(3),
  body.page-pack .pack-hero-features .hero-pill:nth-child(4),
  body.page-pack .pack-hero-features .hero-pill:nth-child(5),
  body.page-pack .pack-hero-features .hero-pill:nth-child(6),
  body.page-pack-tier-detail .pack-tier-detail .breadcrumb,
  body.page-pack-tier-detail .pack-tier-detail-visual,
  body.page-pack-tier-detail .pack-tier-detail-copy,
  body.page-pack-tier-detail .pack-tier-detail-includes-heading,
  body.page-pack-tier-detail .pack-tier-detail-includes-grid li,
  body.page-pack-tier-detail .pack-tier-detail-actions {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

.pack-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.pack-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.pack-hero h1 em { font-style: italic; color: var(--accent); }
.pack-hero .lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 460px;
}
.pack-hero-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pack-hero-features .hero-pill {
  background: var(--cream);
  border-color: rgba(0,0,0,0.04);
}

.pack-hero-visual .hero-photo { aspect-ratio: 1 / 1; }

/* TIERS (Essential vs Premium) */
.tiers-section {
  padding: 0 var(--page-pad-x) 120px;
}
.tiers-header {
  text-align: center;
  margin-bottom: 56px;
}
.tiers-header .section-label {
  text-align: center;
}
.tiers-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  max-width: 640px;
  margin: 0 auto 16px;
}
.tiers-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/*
 * Tier card hero strip — Complete, Bathroom, Kitchen, Bedding.
 * Without a bounded strip, large intrinsic image widths blow up the 2-col grid.
 */
body.page-pack .tiers-section .tier-card-media {
  position: relative;
  margin: -28px -26px 18px;
  width: calc(100% + 52px);
  max-width: none;
  box-sizing: border-box;
  border-radius: var(--pack-tier-card-radius, 22px) var(--pack-tier-card-radius, 22px) 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--white);
  transform: translateZ(0);
  backface-visibility: hidden;
}
body.page-pack .tiers-section .tier-card-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}
body.page-pack .tiers-section .tier-card.is-premium .tier-card-media {
  background: var(--black);
}

/*
 * bedding-hero.jpg includes baked-in black framing around the asset; aggressive
 * zoom + clip pushes that frame outside the clip rect. Bump scale if fringe
 * still shows; ideally replace JPEG with an unframed export.
 */
body.page-pack .tiers-section.tiers-bedding .tier-card-media img {
  inset: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  transform: translateZ(0) scale(1.2);
  transform-origin: center center;
  backface-visibility: hidden;
}

/* One continuous surface on dark tier cards (photo strip meets card edge) */
body.page-pack .tiers-section .tier-card.is-premium {
  border-width: 0;
}

/* Pack pages: tighter quality (Essential / Premium) cards */
body.page-pack .tiers-grid {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.page-pack .tiers-section .tier-card {
  min-width: 0;
  padding: 28px 26px;
  --pack-tier-card-radius: 22px;
  border-radius: var(--pack-tier-card-radius);
  overflow: hidden;
}
body.page-pack .tiers-section .tier-eyebrow {
  font-size: 11px;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
body.page-pack .tiers-section .tier-name {
  font-size: clamp(26px, 2.8vw, 30px);
  margin-bottom: 8px;
}
body.page-pack .tiers-section .tier-price {
  margin-bottom: 6px;
}
body.page-pack .tiers-section .tier-price .amount {
  font-size: clamp(36px, 3.8vw, 44px);
  letter-spacing: -1px;
}
body.page-pack .tiers-section .tier-blurb {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}
body.page-pack .tiers-section .tier-list {
  margin-bottom: 20px;
}
body.page-pack .tiers-section .tier-list li {
  font-size: 13px;
  padding: 7px 0;
  gap: 10px;
}
body.page-pack .tiers-section .tier-cta {
  padding: 12px 14px;
  font-size: 13px;
}
body.page-pack .tiers-section .tier-card.is-premium::before {
  top: 14px;
  right: 14px;
  font-size: 9px;
  padding: 3px 10px;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: none;
  width: 100%;
  margin: 0 auto;
}
.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 28px;
  padding: 40px;
  transform-origin: center center;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease;
}
.tier-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow:
    0 20px 56px -22px rgba(0, 0, 0, 0.18),
    0 8px 24px -12px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.14);
  z-index: 1;
}
.tier-card.is-premium {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.tier-card.is-premium:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 28px 70px -28px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(212, 101, 74, 0.22);
}
.tier-card.is-premium::before {
  content: 'BEST VALUE';
  position: absolute;
  top: 20px; right: 20px;
  z-index: 2;
  background: var(--accent-pop);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px;
}
.tier-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.tier-card.is-premium .tier-eyebrow { color: var(--accent-light); }
.tier-name {
  font-family: 'Instrument Serif', serif;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
}
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.tier-price .amount {
  font-family: 'Instrument Serif', serif;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -1.5px;
}
.tier-price .unit {
  font-size: 14px;
  color: var(--text-muted);
}
.tier-card.is-premium .tier-price .unit { color: rgba(255,255,255,0.5); }
.tier-blurb {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.tier-card.is-premium .tier-blurb { color: rgba(255,255,255,0.6); }
.tier-list {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}
.tier-list li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.tier-card.is-premium .tier-list li {
  border-bottom-color: rgba(255,255,255,0.08);
}
.tier-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.tier-card.is-premium .tier-list li::before { color: var(--accent-light); }
.tier-list li:last-child { border-bottom: none; }

.tier-cta {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.tier-cta:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}
.tier-card.is-premium .tier-cta {
  background: var(--accent-pop);
  border-color: var(--accent-pop);
  color: white;
}
.tier-card.is-premium .tier-cta:hover {
  transform: scale(1.02);
  background: var(--accent-pop);
}

.tier-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}
body.page-pack .tiers-section .tier-list {
  margin-bottom: 0;
}
body.page-pack .tiers-section .tier-card-actions {
  padding-top: 22px;
  align-items: center;
  gap: 10px;
}

/* Text-only checkout link under “See more details” — no second pill */
body.page-pack .tiers-section .tier-card-buy-text {
  display: block;
  width: 100%;
  padding: 4px 0 2px;
  margin: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  color: var(--accent-pop);
  cursor: pointer;
  transition: color 0.2s ease;
}
body.page-pack .tiers-section .tier-card-buy-text:hover {
  color: var(--accent);
}
body.page-pack .tiers-section .tier-card.is-premium .tier-card-buy-text {
  color: rgba(255, 255, 255, 0.88);
}
body.page-pack .tiers-section .tier-card.is-premium .tier-card-buy-text:hover {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .tier-card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .tier-card:hover {
    transform: none;
    z-index: auto;
  }
  .tier-card.is-premium:hover {
    box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.35);
  }
}

/* Screen-reader-only captions / labels (WCAG) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Less empty white under tier cards before comparison table (on cream) — Bedding & Kitchen paks */
body.page-pack-bedding .tiers-section.tiers-bedding,
body.page-pack-kitchen .tiers-section.tiers-kitchen {
  padding-bottom: 72px;
}

/* Pack pages — Essential vs Premium comparison (below tier cards; Bedding, Kitchen, …).
   Top inset matches .tiers-section so “At a glance” clears the seam like “Choose your quality”.
   Column colors: Essential = cool neutral (baseline); Premium = warm gold (elevated). */
body.page-pack .pack-tier-compare {
  --bc-ess-1: rgba(118, 126, 138, 0.2);
  --bc-ess-2: rgba(118, 126, 138, 0.09);
  --bc-ess-cell: rgba(118, 126, 138, 0.065);
  --bc-ess-hover: rgba(118, 126, 138, 0.12);

  --bc-prem-1: rgba(222, 188, 108, 0.42);
  --bc-prem-2: rgba(184, 148, 72, 0.22);
  --bc-prem-cell: rgba(212, 178, 95, 0.16);
  --bc-prem-hover: rgba(212, 178, 95, 0.26);

  --bc-same-1: rgba(118, 126, 138, 0.09);
  --bc-same-2: rgba(200, 168, 88, 0.16);
  --bc-same-hover-1: rgba(118, 126, 138, 0.13);
  --bc-same-hover-2: rgba(200, 168, 88, 0.22);

  --bc-row-hover: rgba(118, 126, 138, 0.08);

  padding: 96px var(--page-pad-x) 88px;
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: clip;
}
body.page-pack .pack-tier-compare-shell {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
}
body.page-pack .pack-tier-compare-header {
  text-align: center;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
body.page-pack .pack-tier-compare-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: -0.4px;
  margin: 8px 0 12px;
  line-height: 1.15;
  color: var(--black);
}
body.page-pack .pack-tier-compare-lede {
  margin: 0;
  font-size: clamp(15px, 2.8vw, 16px);
  line-height: 1.65;
  color: var(--text-muted);
}
body.page-pack .pack-tier-compare-scroll {
  container-type: inline-size;
  container-name: pack-tier-compare;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overscroll-behavior-x: contain;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background: var(--white);
  box-shadow:
    0 4px 24px -8px rgba(0, 0, 0, 0.06),
    0 20px 56px -32px rgba(0, 0, 0, 0.12);
  scroll-padding-inline: 8px;
}
body.page-pack .pack-tier-compare-scroll:focus-visible {
  outline: 2px solid var(--accent-pop);
  outline-offset: 3px;
}
body.page-pack .pack-tier-compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: clamp(14px, 2.4vw, 15px);
  line-height: 1.5;
}
body.page-pack .pack-tier-compare-table thead th {
  padding: 18px 20px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  vertical-align: bottom;
}
body.page-pack .pack-tier-compare-table thead th:first-child {
  width: 26%;
  position: sticky;
  left: 0;
  /* Above scrolling Essential / Premium cells (later DOM paints on top by default) */
  z-index: 20;
  background: var(--white);
  box-shadow: 6px 0 16px -6px rgba(0, 0, 0, 0.18);
}
body.page-pack .pack-tier-compare-table thead th.pack-compare-col-essential {
  position: relative;
  z-index: 0;
  background: linear-gradient(180deg, var(--bc-ess-1) 0%, var(--bc-ess-2) 100%);
  width: 37%;
}
body.page-pack .pack-tier-compare-table thead th.pack-compare-col-premium {
  position: relative;
  z-index: 0;
  background: linear-gradient(180deg, var(--bc-prem-1) 0%, var(--bc-prem-2) 100%);
  width: 37%;
}
body.page-pack .pack-compare-price {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent-pop);
}
body.page-pack .pack-compare-col-essential .pack-compare-price {
  color: #5a6572;
}
body.page-pack .pack-compare-col-premium .pack-compare-price {
  color: #6e5524;
}
body.page-pack .pack-tier-compare-table tbody th,
body.page-pack .pack-tier-compare-table tbody td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
body.page-pack .pack-tier-compare-table tbody th[scope="row"] {
  font-weight: 600;
  color: var(--black);
  background: #fafaf9;
  position: sticky;
  left: 0;
  /* Above following tds so horizontal scroll does not paint values over the label */
  z-index: 10;
  min-width: 8.5rem;
  max-width: 12rem;
  box-shadow: 4px 0 14px -8px rgba(0, 0, 0, 0.14);
}
body.page-pack .pack-tier-compare-table tbody td {
  color: #3d3d3d;
  position: relative;
  z-index: 0;
}
body.page-pack .pack-tier-compare-table tbody tr:not(.pack-tier-compare-section) td:nth-child(2) {
  background: var(--bc-ess-cell);
}
body.page-pack .pack-tier-compare-table tbody tr:not(.pack-tier-compare-section) td:nth-child(3) {
  background: var(--bc-prem-cell);
}
body.page-pack .pack-tier-compare-table tbody tr.pack-tier-compare-pan-premium-extra td {
  background: var(--bc-prem-cell);
}
body.page-pack .pack-tier-compare-table tbody tr:last-child th,
body.page-pack .pack-tier-compare-table tbody tr:last-child td {
  border-bottom: none;
}
body.page-pack .pack-tier-compare-table tbody td.pack-compare-same[colspan="2"] {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  background: linear-gradient(90deg, var(--bc-same-1) 0%, var(--bc-same-2) 100%) !important;
}
body.page-pack .pack-tier-compare-table tbody td.pack-compare-na {
  color: #5c5c5c;
  font-style: italic;
  background: repeating-linear-gradient(
    -12deg,
    rgba(0, 0, 0, 0.02),
    rgba(0, 0, 0, 0.02) 6px,
    transparent 6px,
    transparent 12px
  );
}
body.page-pack .pack-tier-compare-table tbody tr.pack-tier-compare-section td {
  padding: 0;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-left: none;
  background: transparent;
}
body.page-pack .pack-tier-compare-section-bar {
  display: block;
  padding: 14px 20px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(0, 0, 0, 0.045);
  border-left: 3px solid var(--accent);
  box-sizing: border-box;
}
body.page-pack .pack-tier-compare-section + tr th,
body.page-pack .pack-tier-compare-section + tr td {
  padding-top: 18px;
}
@media (prefers-reduced-motion: no-preference) and (min-width: 901px) {
  body.page-pack .pack-tier-compare-table tbody tr:not(.pack-tier-compare-section) {
    transition: background-color 0.18s ease;
  }
  body.page-pack .pack-tier-compare-table tbody tr:not(.pack-tier-compare-section):hover th[scope="row"] {
    background: var(--bc-row-hover);
  }
  body.page-pack .pack-tier-compare-table tbody tr:not(.pack-tier-compare-section):hover td:nth-child(2) {
    background: var(--bc-ess-hover);
  }
  body.page-pack .pack-tier-compare-table tbody tr:not(.pack-tier-compare-section):hover td:nth-child(3) {
    background: var(--bc-prem-hover);
  }
  body.page-pack .pack-tier-compare-table tbody tr.pack-tier-compare-pan-premium-extra:hover td {
    background: var(--bc-prem-hover);
  }
  body.page-pack .pack-tier-compare-table tbody tr:not(.pack-tier-compare-section):hover td.pack-compare-same[colspan="2"] {
    background: linear-gradient(90deg, var(--bc-same-hover-1) 0%, var(--bc-same-hover-2) 100%) !important;
  }
  body.page-pack .pack-tier-compare-table tbody tr:not(.pack-tier-compare-section):hover td.pack-compare-na {
    background: var(--bc-row-hover);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-pack .pack-tier-compare-table tbody tr:not(.pack-tier-compare-section) {
    transition: none;
  }
}

/* PACK INCLUDES detail */
.includes-section {
  padding: 0 var(--page-pad-x) 120px;
}
.includes-grid {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.includes-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 28px;
}
.includes-card h4 {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  margin-bottom: 8px;
}
.includes-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PREORDER PAGE */
body.page-preorder,
body.page-shop,
body.page-faq,
body.page-contact,
body.page-privacy,
body.page-terms,
body.page-cookies {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
body.page-preorder nav.site-nav,
body.page-shop nav.site-nav,
body.page-faq nav.site-nav,
body.page-contact nav.site-nav,
body.page-privacy nav.site-nav,
body.page-terms nav.site-nav,
body.page-cookies nav.site-nav {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.preorder-page,
.faq-page,
.contact-page,
.privacy-page {
  position: relative;
  padding: 128px var(--page-pad-x) 80px;
  overflow: clip visible;
}
.preorder-page::before,
.faq-page::before,
.contact-page::before,
.privacy-page::before {
  content: '';
  position: absolute;
  pointer-events: none;
  top: 8%;
  right: -200px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 138, 107, 0.11) 0%, transparent 70%);
  z-index: 0;
}
.preorder-shell {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.preorder-intro {
  animation: preorder-intro-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.preorder-intro h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -1.8px;
  margin-bottom: 20px;
}
.preorder-intro h1 em {
  color: var(--accent);
  font-style: italic;
}
.preorder-intro > p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: 24px;
}
.preorder-points {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}
.preorder-points strong {
  color: var(--black);
}

.preorder-card {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 50px -36px rgba(0,0,0,0.25);
  animation: preorder-card-in 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
.preorder-form {
  display: grid;
  gap: 20px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.preorder-summary {
  border: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  gap: 6px;
}
.preorder-summary-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.preorder-summary-detail {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.preorder-summary-total {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.field {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}
.required-mark {
  color: var(--accent-pop);
  font-weight: 700;
}
.field input,
.field select {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  background: white;
  padding: 12px 13px;
  font: inherit;
  font-weight: 500;
  outline: none;
}
.field input:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(94,138,107,0.15);
}
.choice-grid {
  border: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.choice-grid legend {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}
.choice-card {
  position: relative;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  background: white;
  padding: 13px 14px 13px 42px;
  cursor: pointer;
}
.choice-card input[type='radio'] {
  position: absolute;
  left: 14px;
  top: 16px;
}
.choice-title {
  font-size: 15px;
  font-weight: 700;
}
.choice-meta {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}
.choice-card:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(94,138,107,0.13);
}
.preorder-disclaimer {
  margin: 0;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
  background: rgba(94, 138, 107, 0.06);
  border: 1px solid rgba(94, 138, 107, 0.14);
  border-radius: 12px;
}
.checkline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}
.checkline input {
  margin-top: 2px;
}
.form-actions {
  display: grid;
  gap: 10px;
}
.preorder-message {
  min-height: 20px;
  font-size: 13px;
  color: var(--accent);
}
.preorder-message.is-error {
  color: #b73434;
}
.preorder-success {
  display: grid;
  gap: 12px;
}
.preorder-success p {
  color: var(--text-muted);
  line-height: 1.7;
}
.preorder-success.is-revealed {
  animation: preorder-success-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* SHOP — every pak & tier */
.shop-page {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 128px var(--page-pad-x) 112px;
  box-sizing: border-box;
}
.shop-page::before {
  content: '';
  position: absolute;
  pointer-events: none;
  top: 6%;
  right: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 138, 107, 0.1) 0%, transparent 70%);
  z-index: 0;
}
.shop-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 56px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.shop-header h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 0 0 16px;
}
.shop-header h1 em {
  font-style: italic;
  color: var(--accent);
}
.shop-header .section-label {
  margin-bottom: 12px;
}
.shop-header-bit:nth-child(1) {
  animation: shop-header-bit-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both;
}
.shop-header-bit:nth-child(2) {
  animation: shop-header-bit-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.shop-header-bit:nth-child(3) {
  animation: shop-header-bit-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}
.shop-lede {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}
.shop-pak-groups {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}
.shop-pak-group {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}
.shop-pak-heading {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.12;
  letter-spacing: -1px;
  margin: 0 0 20px;
  color: var(--black);
  text-align: center;
}
body.page-shop .shop-pak-heading {
  animation: shop-pak-heading-in 0.58s cubic-bezier(0.22, 1, 0.36, 1) var(--shop-head-delay, 0.14s) both;
}
/* Always two tiers per pak — keep two columns max and center the row so wide screens do not show empty grid tracks */
.shop-pak-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  justify-content: center;
  justify-items: stretch;
}
@media (min-width: 640px) {
  .shop-pak-tiers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }
}
@media (min-width: 900px) {
  .shop-pak-tiers {
    grid-template-columns: repeat(2, minmax(280px, 520px));
    gap: 32px 40px;
    justify-content: center;
  }
}
.shop-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 44px -28px rgba(26, 26, 26, 0.18);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.25s ease;
}
body.page-shop .shop-card {
  animation: shop-card-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) var(--shop-card-delay, 0.22s) both;
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -24px rgba(26, 26, 26, 0.22);
  border-color: rgba(0, 0, 0, 0.12);
}
.shop-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream);
  overflow: hidden;
}
.shop-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-card:hover .shop-card-media img {
  transform: scale(1.045);
}
.shop-card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  gap: 12px;
}
.shop-card-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}
.shop-card-price {
  margin: 0;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--accent);
}
.shop-card-includes {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.62;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.shop-card-actions {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-card-btn {
  flex: 1 1 auto;
  min-width: min(100%, 120px);
  justify-content: center;
  text-align: center;
  font-size: 14px;
  padding: 12px 16px;
}

@keyframes shop-header-bit-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shop-pak-heading-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shop-card-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* FAQ PAGE */
.faq-shell {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.faq-header {
  margin-bottom: 36px;
  animation: preorder-intro-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.faq-header h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(38px, 4.8vw, 56px);
  line-height: 1.06;
  letter-spacing: -1.4px;
  margin: 0 0 16px;
}
.faq-header h1 em {
  color: var(--accent);
  font-style: italic;
}
.faq-lede {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 52ch;
}
.faq-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 8px 28px 12px;
  box-shadow: 0 20px 50px -36px rgba(0, 0, 0, 0.25);
  animation: preorder-card-in 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  position: relative;
  line-height: 1.35;
}
.faq-item summary::marker {
  display: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-answer {
  padding: 0 0 18px;
}
.faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}
.faq-answer p + p {
  margin-top: 10px;
}
.faq-footer-cta {
  margin: 36px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

/* CONTACT PAGE */
.contact-shell {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.contact-intro {
  animation: preorder-intro-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.contact-intro h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -1.6px;
  margin: 0 0 18px;
}
.contact-intro h1 em {
  color: var(--accent);
  font-style: italic;
}
.contact-intro > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 48ch;
}
.contact-card {
  animation: preorder-card-in 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
.contact-card h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  color: var(--black);
}
.contact-dl {
  display: grid;
  grid-template-columns: minmax(0, 110px) 1fr;
  gap: 14px 20px;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}
.contact-dl dt {
  margin: 0;
  font-weight: 700;
  color: var(--black);
}
.contact-dl dd {
  margin: 0;
  color: var(--text-muted);
}
.contact-dl a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.contact-dl a:hover {
  text-decoration: underline;
}
.contact-placeholder-note {
  margin: 22px 0 0;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-muted);
  background: rgba(212, 101, 74, 0.08);
  border: 1px solid rgba(212, 101, 74, 0.2);
  border-radius: 12px;
}

/* PRIVACY POLICY */
.privacy-shell {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.privacy-header {
  margin-bottom: 28px;
  animation: preorder-intro-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.privacy-header h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(38px, 4.5vw, 52px);
  line-height: 1.06;
  letter-spacing: -1.2px;
  margin: 0 0 10px;
}
.privacy-updated {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}
.privacy-prose {
  animation: preorder-card-in 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.privacy-prose h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  letter-spacing: -0.4px;
  margin: 28px 0 12px;
  color: var(--black);
}
.privacy-prose h2:first-of-type {
  margin-top: 4px;
}
.privacy-prose > p:first-of-type {
  margin-bottom: 16px;
}
.privacy-prose h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: var(--black);
}
.privacy-prose p,
.privacy-prose li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}
.privacy-prose p {
  margin: 0 0 12px;
}
.privacy-prose ul {
  margin: 0 0 14px;
  padding-left: 22px;
}
.privacy-prose li {
  margin-bottom: 6px;
}
.privacy-prose li::marker {
  color: var(--accent);
}
.privacy-prose a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.privacy-prose a:hover {
  text-decoration: underline;
}
.privacy-prose strong {
  color: var(--black);
}

/* PREORDER THANKS PAGE */
body.page-preorder-thanks .preorder-page {
  padding-top: clamp(112px, 14vh, 160px);
  padding-bottom: clamp(60px, 9vh, 110px);
}
.preorder-thanks-shell {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.preorder-thanks-card {
  display: grid;
  gap: 16px;
  text-align: left;
}
.preorder-thanks-card h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.6px;
  line-height: 1.1;
  margin: 0;
  color: var(--black);
}
.thanks-check {
  width: 64px;
  height: 64px;
  color: var(--accent);
  margin-bottom: 4px;
  animation: thanks-check-pop 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}
.thanks-check svg {
  width: 100%;
  height: 100%;
  display: block;
}
.thanks-summary {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.thanks-meta {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(94, 138, 107, 0.07);
  border: 1px solid rgba(94, 138, 107, 0.14);
}
.thanks-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}
.thanks-meta-row strong {
  color: var(--black);
  font-weight: 700;
}
.thanks-next {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}
.thanks-next-label {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
}
.thanks-next-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}
.thanks-next-list li::marker {
  color: var(--accent);
  font-weight: 700;
}
.thanks-receipt-note {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.04em;
}
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.thanks-actions .btn-primary,
.thanks-actions .btn-secondary {
  flex: 1 1 auto;
  text-align: center;
  justify-content: center;
}

@keyframes thanks-check-pop {
  0% { opacity: 0; transform: scale(0.6); }
  60% { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .thanks-check {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

@keyframes preorder-intro-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes preorder-card-in {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes preorder-success-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-preorder .preorder-intro,
  body.page-preorder .preorder-card,
  body.page-preorder .preorder-success.is-revealed,
  body.page-shop .shop-header-bit,
  body.page-shop .shop-pak-heading,
  body.page-shop .shop-card,
  body.page-faq .faq-header,
  body.page-faq .faq-panel,
  body.page-contact .contact-intro,
  body.page-contact .contact-card,
  body.page-privacy .privacy-header,
  body.page-privacy .privacy-prose,
  body.page-terms .privacy-header,
  body.page-terms .privacy-prose,
  body.page-cookies .privacy-header,
  body.page-cookies .privacy-prose {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  body.page-shop .shop-card:hover .shop-card-media img {
    transform: none;
  }
  .cookie-consent-overlay,
  .cookie-consent-overlay.is-leaving,
  .cookie-banner {
    animation: none !important;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  :root {
    --page-pad-x: 24px;
  }
  nav.site-nav {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    padding: 16px var(--page-pad-x);
    gap: 0;
  }
  nav.site-nav .nav-menu-toggle {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  nav.site-nav .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }
  nav.site-nav .nav-trailing-spacer {
    display: block;
    grid-column: 3;
    grid-row: 1;
    width: 44px;
    height: 44px;
    visibility: hidden;
    pointer-events: none;
  }
  nav.site-nav .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: min(300px, 88vw);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 88px 24px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(248,247,244,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 8px 0 40px rgba(0,0,0,0.12);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 99;
    overflow-y: auto;
    list-style: none;
  }
  nav.site-nav.is-open .nav-links {
    transform: translateX(0);
  }
  nav.site-nav:not(.is-open) .nav-links {
    pointer-events: none;
  }
  nav.site-nav .nav-links > li {
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  nav.site-nav .nav-links > li:last-child {
    border-bottom: none;
  }
  nav.site-nav .nav-dropdown-trigger {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 16px 4px;
    font-size: 16px;
    text-align: left;
  }
  nav.site-nav .nav-dropdown-menu {
    position: static;
    transform: none;
    left: auto;
    min-width: 0;
    width: 100%;
    padding: 0 0 8px 12px;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  nav.site-nav .nav-dropdown-menu a {
    padding: 12px 4px 12px 8px;
    font-size: 15px;
    border-radius: 8px;
  }
  nav.site-nav .nav-links a {
    display: block;
    padding: 16px 4px;
    font-size: 16px;
  }
  nav.site-nav .nav-links .nav-cta {
    text-align: center;
    margin-top: 8px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 120px var(--page-pad-x) 60px;
    gap: 40px;
    min-height: 0;
    max-height: none;
    overflow-y: visible;
  }
  /* Mobile hero image: full-width fluid card (pre-desktop-clamp behavior) */
  .hero-photo {
    width: 100%;
    max-width: 100%;
  }
  .hero-photo-overlay {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: unset;
    justify-items: stretch;
    align-items: stretch;
    padding: 10px;
  }
  .hero-photo-overlay .hero-pill-btn {
    width: 100%;
    justify-content: center;
  }
  /* How it works: full-width card per screen, horizontal swipe for other steps */
  .how .section-title {
    margin-bottom: 32px;
  }
  .how .steps {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--page-pad-x);
    margin: 0 calc(-1 * var(--page-pad-x));
    padding: 0 var(--page-pad-x) 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .how .steps::-webkit-scrollbar {
    display: none;
  }
  .how .step {
    flex: 0 0 100%;
    min-width: 0;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .how-steps-footer {
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }
  .how .steps-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .steps-dot {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .steps-dot::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.22);
    transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
  }
  .steps-dot.is-active::after {
    width: 26px;
    height: 8px;
    border-radius: 4px;
    background: var(--accent);
  }
  .steps-dot:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
  }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .how, .kits, .trust, .unis, .cta-bottom, .reviews, .gallery { padding: 80px var(--page-pad-x); }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid .review-card:nth-child(n + 4) {
    display: none;
  }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .review-summary { text-align: left; }
  .gallery-img { width: 240px; height: 160px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 12px;
  }

  .kits-carousel { margin: 0; }

  .kits-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .kits-header .section-title { margin-bottom: 0; }
  .kits-carousel { grid-auto-columns: 82%; gap: 16px; }
  .pack-card { padding: 28px; }

  .pack-detail { padding: 120px var(--page-pad-x) 60px; }
  body.page-pack .pack-detail {
    padding: 100px var(--page-pad-x) 32px;
  }
  body.page-pack .pack-detail::before {
    width: min(90vw, 340px);
    height: min(90vw, 340px);
    left: 50%;
    transform: translateX(-55%);
    top: 4%;
    opacity: 0.55;
  }
  body.page-pack .breadcrumb {
    margin-bottom: 20px;
    max-width: 100%;
    padding: 9px 14px;
    font-size: 12px;
    gap: 8px;
    line-height: 1.35;
  }
  body.page-pack-tier-detail .pack-tier-detail {
    padding: 100px var(--page-pad-x) 72px;
  }
  body.page-pack-tier-detail .pack-tier-detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* Same horizontal band as copy + actions: no asymmetric full-bleed on the hero */
  body.page-pack-tier-detail .pack-tier-detail-grid > .pack-tier-detail-media,
  body.page-pack-tier-detail .pack-tier-detail-grid > .pack-tier-detail-copy {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    justify-self: stretch;
  }
  body.page-pack-tier-detail .pack-tier-detail-media {
    position: static;
    top: auto;
  }
  body.page-pack-tier-detail .pack-tier-detail-visual {
    border-radius: var(--pack-tier-detail-hero-radius);
  }
  body.page-pack-tier-detail .pack-tier-detail-visual:not(.pack-tier-detail-slider) {
    max-height: min(58vh, 480px);
    aspect-ratio: auto;
  }
  body.page-pack-tier-detail .pack-tier-detail-visual:not(.pack-tier-detail-slider) > img {
    max-height: min(58vh, 480px);
  }
  body.page-pack-tier-detail .pack-tier-detail-slider-viewport {
    border-radius: 0;
  }
  body.page-pack-tier-detail .pack-tier-detail-actions {
    flex-direction: column;
    align-items: stretch;
  }
  body.page-pack-tier-detail .pack-tier-detail-actions .btn-primary,
  body.page-pack-tier-detail .pack-tier-detail-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  body.page-pack-tier-detail .pack-tier-detail-includes {
    padding: 40px var(--page-pad-x) 72px;
  }
  body.page-pack-tier-detail .pack-tier-detail-includes-heading {
    margin-bottom: 20px;
  }
  body.page-pack-tier-detail .pack-tier-detail-includes-tabs {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    border-radius: 16px;
  }
  body.page-pack-tier-detail .pack-tier-detail-includes-tab {
    flex: 1 0 auto;
    padding: 10px 16px;
    font-size: 12px;
  }
  body.page-pack-tier-detail .pack-tier-detail-includes-groups--supplemental {
    margin-top: 36px;
    padding-top: 32px;
  }
  body.page-pack-tier-detail .pack-tier-detail-includes-groups {
    gap: 32px;
  }
  body.page-pack-tier-detail .pack-tier-detail-includes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }
  body.page-pack-tier-detail .pack-tier-detail-includes-grid li {
    min-height: 0;
    padding: 20px 20px 24px;
    padding-left: 24px;
    font-size: 14px;
  }
  .pack-hero { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  body.page-pack .pack-hero {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 40px;
    align-items: stretch;
  }
  body.page-pack .pack-hero > :first-child {
    order: 1;
  }
  body.page-pack .pack-hero-visual {
    order: 2;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    margin-top: 28px;
  }
  body.page-pack .pack-hero h1 {
    font-size: clamp(34px, 9.5vw, 48px);
    letter-spacing: -1.25px;
    line-height: 1.08;
    margin-bottom: 14px;
  }
  body.page-pack .pack-hero .lede {
    max-width: none;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 18px;
  }
  body.page-pack .pack-hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  body.page-pack .pack-hero-features .hero-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px 10px;
    font-size: 11px;
    min-height: 44px;
    box-sizing: border-box;
  }
  body.page-pack .pack-hero-visual .hero-photo {
    width: 100%;
    max-width: 100%;
    border-radius: 22px;
    box-shadow:
      0 22px 50px -24px rgba(26, 26, 26, 0.32),
      0 8px 18px -10px rgba(26, 26, 26, 0.12);
  }
  body.page-pack .kit-price-tag {
    top: 12px;
    right: 12px;
    padding: 7px 12px;
    font-size: 12px;
  }
  body.page-pack .hero-photo-watermark {
    font-size: clamp(36px, 20vw, 72px);
    bottom: -12px;
    right: -6px;
  }
  .tiers-section, .includes-section { padding: 0 var(--page-pad-x) 80px; }
  body.page-pack .tiers-section {
    border-radius: 28px 28px 0 0;
    padding: 56px var(--page-pad-x) 72px;
  }
  body.page-pack-bedding .tiers-section.tiers-bedding,
  body.page-pack-kitchen .tiers-section.tiers-kitchen {
    padding-bottom: 48px;
  }
  /* Keep horizontal scroll inside the compare card; avoid page-level sideways drift on small viewports */
  body.page-pack {
    overflow-x: clip;
    max-width: 100%;
  }
  body.page-pack .pack-tier-compare {
    padding: 56px var(--page-pad-x) 56px;
  }
  body.page-pack .pack-tier-compare-header {
    margin-bottom: 24px;
  }
  /* Category labels: inner bar is sticky + sized to the scrollport (colspan cells are unreliable for sticky) */
  body.page-pack .pack-tier-compare-section-bar {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 25;
    width: 100cqi;
    box-sizing: border-box;
    background: #ebeae8;
    box-shadow: 6px 0 14px -8px rgba(0, 0, 0, 0.12);
  }
  body.page-pack .includes-section {
    padding: 56px var(--page-pad-x) 72px;
  }
  body.page-pack .tiers-header {
    text-align: left;
    margin-bottom: 40px;
  }
  body.page-pack .tiers-header .section-label {
    text-align: left;
  }
  body.page-pack .tiers-header h2 {
    margin-left: 0;
    margin-right: 0;
  }
  body.page-pack .tiers-header p {
    margin-left: 0;
    margin-right: 0;
  }
  /* Photo strip: negative margins match card padding so media is full card width (same idea as shop cards). */
  body.page-pack .tiers-section .tier-card {
    padding: 28px 22px;
  }
  body.page-pack .tiers-section .tier-card-media {
    margin: -28px -22px 20px;
    width: calc(100% + 44px);
    border-radius: var(--pack-tier-card-radius, 22px) var(--pack-tier-card-radius, 22px) 0 0;
  }
  body.page-pack .tier-price .amount {
    font-size: 40px;
  }
  body.page-pack .cta-bottom {
    padding: 80px var(--page-pad-x);
  }
  .tiers-grid { grid-template-columns: 1fr; }
  body.page-pack .tiers-grid {
    grid-template-columns: 1fr;
  }
  .includes-grid { grid-template-columns: 1fr; }

  .preorder-page,
  .shop-page,
  .faq-page,
  .contact-page,
  .privacy-page { padding: 108px var(--page-pad-x) 48px; }
  .contact-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-dl {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }
  .contact-dl dt {
    margin-top: 12px;
  }
  .contact-dl dt:first-child {
    margin-top: 0;
  }
  .faq-panel {
    padding: 6px 18px 10px;
    border-radius: 20px;
  }
  .faq-item summary {
    padding-right: 32px;
    font-size: 15px;
  }
  .preorder-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .preorder-thanks-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .preorder-card {
    padding: 22px 16px;
    border-radius: 20px;
  }
  .field-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .thanks-actions .btn-primary,
  .thanks-actions .btn-secondary {
    flex: 1 1 100%;
  }
}

@media (max-width: 520px) {
  body.page-pack-tier-detail .pack-tier-detail-includes-grid {
    grid-template-columns: 1fr;
  }
}
