:root {
  --surface: #0c160d;
  --surface-low: #141e14;
  --surface-mid: #182218;
  --surface-high: #243124;
  --surface-higher: #2d3b2d;
  --cream: #dae6d6;
  --muted: #aeb9aa;
  --primary: #bbcbb8;
  --gold: #e9c176;
  --gold-soft: #ffdea5;
  --ink: #111f12;
  --outline: rgba(233, 193, 118, 0.22);
  --outline-cool: rgba(196, 200, 192, 0.18);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --home-ink: #28301f;
  --home-green: #3d4728;
  --home-green-deep: #333d21;
  --home-gold: #b59a62;
  --home-cream: #f7f3e9;
  --home-line: #ded8c9;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--cream);
  font-family: "Work Sans", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open,
body.drawer-open,
body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.icon-fill {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(12, 22, 13, 0.9);
  border-bottom: 1px solid var(--outline-cool);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.brand {
  font-family: "Noto Serif", Georgia, serif;
  color: var(--primary);
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  align-items: center;
}

.nav-link {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-block: 8px;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.icon-button {
  position: relative;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--primary);
  border-radius: 4px;
  transition: color 180ms ease, background 180ms ease;
}

.icon-button:hover {
  color: var(--gold);
  background: rgba(233, 193, 118, 0.08);
}

.cart-count {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: none;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 800;
}

.cart-count.has-items {
  display: grid;
}

.mobile-toggle {
  display: none;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--outline-cool);
  background: rgba(12, 22, 13, 0.98);
  padding: 12px var(--gutter) 22px;
}

.mobile-panel a {
  display: block;
  padding: 12px 0;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(72px, 9vw, 120px);
}

.section-tight {
  padding-block: clamp(48px, 7vw, 84px);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: "Noto Serif", Georgia, serif;
  color: var(--primary);
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  max-width: 760px;
}

.center {
  text-align: center;
}

.stack {
  display: grid;
  gap: 18px;
}

.gold {
  color: var(--gold);
}

.italic {
  font-style: italic;
}

.button-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.button-row.centered {
  justify-content: center;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid transparent;
  padding: 13px 22px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold-soft);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold);
}

.btn-secondary {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(233, 193, 118, 0.04);
}

.btn-secondary:hover {
  background: rgba(233, 193, 118, 0.14);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  min-height: min(760px, 90svh);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(12, 22, 13, 0.72), rgba(12, 22, 13, 0.96)),
    var(--hero-image, radial-gradient(circle at center, #243124, #0c160d 70%));
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(transparent, var(--surface));
}

.hero-content {
  display: grid;
  justify-items: center;
  gap: 24px;
  max-width: 850px;
  text-align: center;
  padding-top: 24px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(36px, 8vw, 120px);
  align-items: center;
}

.story-grid.reversed {
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
}

.image-frame {
  border: 1px solid var(--outline);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface-mid);
  box-shadow: var(--shadow);
}

.image-frame.square {
  aspect-ratio: 1;
}

.image-frame.wide {
  aspect-ratio: 4 / 3;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
  margin-top: 28px;
}

.surface-band {
  background: var(--surface-low);
}

.map-card {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--outline-cool);
  border-radius: 6px;
  background:
    radial-gradient(circle at 30% 45%, rgba(233, 193, 118, 0.12), transparent 18%),
    radial-gradient(var(--outline-cool) 1px, transparent 1px),
    var(--surface-mid);
  background-size: auto, 20px 20px, auto;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.map-card .truck {
  color: var(--gold);
  font-size: 46px;
  animation: float 2.6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.memory-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 24px;
}

.memory-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--outline-cool);
  background: var(--surface-mid);
}

.memory-card.large {
  grid-row: span 2;
}

.memory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.memory-card:hover img {
  transform: scale(1.04);
}

.caption {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(12, 22, 13, 0.92));
  color: var(--cream);
  font-style: italic;
}

.fact-card {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
}

.page-hero {
  padding-block: clamp(78px, 10vw, 130px) clamp(44px, 7vw, 80px);
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.shop-intro {
  padding-block: 38px 24px;
  gap: 8px;
}
.shop-intro h1 { margin: 0; font-size: clamp(2.1rem, 5vw, 3.6rem); }
.shop-intro .lead { max-width: 560px; margin: 0; font-size: .95rem; }
.shop-intro + .section-tight { padding-top: 10px; }

.ornament {
  display: inline-grid;
  grid-template-columns: 80px auto 80px;
  gap: 18px;
  align-items: center;
  color: var(--gold);
}

.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  background: rgba(233, 193, 118, 0.5);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.collection-grid.secondary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.collection-card {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--outline-cool);
  background: var(--surface-mid);
  cursor: pointer;
  isolation: isolate;
}

.collection-card.small {
  min-height: 410px;
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  z-index: -2;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 22, 13, 0.18);
  z-index: -1;
  transition: background 220ms ease;
}

.collection-card:hover img {
  transform: scale(1.045);
}

.collection-card:hover::before {
  background: rgba(12, 22, 13, 0.05);
}

.collection-copy {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  padding: 26px;
  border: 1px solid var(--outline);
  border-radius: 4px;
  background: rgba(12, 22, 13, 0.82);
  backdrop-filter: blur(14px);
}

.collection-copy ul {
  margin: 12px 0 22px;
  padding-left: 18px;
  color: var(--muted);
}

.festival-panel {
  margin-top: 24px;
  min-height: 300px;
  border: 1px solid var(--outline);
  border-radius: 6px;
  background:
    radial-gradient(rgba(218, 230, 214, 0.14) 1px, transparent 1px),
    var(--surface-high);
  background-size: 22px 22px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 36px;
}

.filter-bar {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}

.chip {
  min-height: 36px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  background: transparent;
  color: var(--primary);
  padding: 8px 18px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chip.active,
.chip:hover {
  background: var(--primary);
  color: var(--ink);
}

.shop-grid,
.item-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.option-card {
  border: 1px solid var(--outline-cool);
  border-radius: 6px;
  background: var(--surface-low);
  padding: 18px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.option-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.product-card img,
.option-card img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 14px;
}

.product-card h3,
.option-card h3 {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 1rem;
  color: var(--cream);
  font-weight: 800;
  line-height: 1.25;
}

.product-image-wrap {
  position: relative;
}

.card-gallery-media { aspect-ratio: 1.12; overflow: hidden; border-radius: 4px; margin-bottom: 14px; background: var(--surface-mid); }
.product-card-slides { position: absolute; inset: 0; }
.product-card .product-card-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease, transform .55s cubic-bezier(.2,.72,.25,1);
}
.product-card .product-card-slides img.active { opacity: 1; }
.product-gallery-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  transform: translateY(-50%);
  opacity: 0;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  color: #526149;
  background: rgba(255,253,247,.9);
  box-shadow: 0 4px 13px rgba(31,40,26,.16);
  cursor: pointer;
  transition: opacity .18s ease, background .18s ease;
}
.product-gallery-arrow:hover { background: #fffdf7; }
.product-gallery-arrow.previous { left: 8px; }
.product-gallery-arrow.next { right: 8px; }
.product-card:hover .product-gallery-arrow,
.product-gallery-arrow:focus-visible { opacity: 1; }
.product-gallery-arrow .material-symbols-outlined { font-size: 20px; }
.product-gallery-count { position: absolute; z-index: 4; right: 8px; bottom: 8px; padding: 4px 7px; border-radius: 999px; color: #fff; background: rgba(39,48,34,.76); font-size: 9px; font-weight: 800; }
.product-gallery-dots { position: absolute; z-index: 4; left: 50%; bottom: 10px; display: flex; gap: 4px; transform: translateX(-50%); }
.product-gallery-dots button { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.58); box-shadow: 0 1px 3px rgba(0,0,0,.2); cursor: pointer; }
.product-gallery-dots button.active { width: 16px; border-radius: 999px; background: #fffdf7; }

.badge-stack {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 3;
}

@media (max-width: 900px) {
  .product-gallery-arrow { opacity: .94; }
}

.discount-badge,
.stock-badge {
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discount-badge {
  background: var(--gold-soft);
  color: var(--ink);
}

.stock-badge {
  background: rgba(12, 22, 13, 0.86);
  color: var(--cream);
  border: 1px solid var(--outline);
}

.product-card.out-of-stock img {
  filter: grayscale(0.75);
  opacity: 0.62;
}

.add-round:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.product-meta {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 5px 0 12px;
}
.product-detail-link { display: inline-flex; align-items: center; gap: 4px; margin: -3px 0 12px; padding: 0; border: 0; color: #8f7544; background: transparent; font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; }
.product-detail-link .material-symbols-outlined { font-size: 15px; }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.price {
  color: var(--gold);
  font-weight: 800;
}

.price-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

.old-price {
  color: var(--muted);
  font-size: 0.82rem;
  text-decoration: line-through;
}

.add-round {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: 4px;
}

.add-round:hover,
.add-round.active {
  background: var(--primary);
  color: var(--ink);
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: start;
}

.builder-main {
  display: grid;
  gap: 72px;
}

.builder-page { padding-top: 34px; }
.builder-page .builder-main { gap: 46px; }
.builder-intro { gap: 5px; }
.builder-intro h1 { margin: 0; font-size: clamp(2.4rem, 5vw, 4rem); }
.builder-intro .lead { max-width: 580px; margin: 0; font-size: .95rem; }

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

[data-builder-count] {
  max-width: 260px;
  margin: 0;
  color: #8f7544;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  text-align: right;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--ink);
  font-weight: 800;
}

.builder-section {
  border-top: 1px solid var(--outline-cool);
  padding-top: 48px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.option-card {
  position: relative;
  text-align: center;
  padding: 24px;
}

.option-card.selected {
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(233, 193, 118, 0.18), var(--shadow);
}

.select-mark {
  position: absolute;
  right: 14px;
  top: 14px;
  color: var(--gold);
}

.hamper-card {
  position: sticky;
  top: 110px;
  border: 1px solid var(--outline-cool);
  border-radius: 8px;
  background: var(--surface-higher);
  padding: 30px;
  box-shadow: var(--shadow);
}

.preview-box {
  min-height: 290px;
  border: 1px solid var(--outline-cool);
  border-radius: 4px;
  background: var(--surface-mid);
  padding: 20px;
  margin: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
}

.preview-item {
  width: 76px;
  height: 76px;
  border-radius: 4px;
  border: 1px solid var(--outline);
  object-fit: cover;
}

.summary-list {
  display: grid;
  gap: 12px;
  border-bottom: 1px solid var(--outline-cool);
  padding-bottom: 22px;
  margin-bottom: 22px;
}

.summary-row,
.total-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.total-row {
  margin-bottom: 24px;
}

.remove-item {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  font-size: 0.8rem;
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-card {
  border: 1px solid var(--outline-cool);
  border-radius: 8px;
  background: var(--surface-mid);
  padding: 34px;
  display: grid;
  gap: 16px;
  align-content: start;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: clamp(34px, 5vw, 54px);
}

.contact-card:hover {
  border-color: var(--outline);
  background: var(--surface-high);
}

.contact-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  border: 1px solid var(--outline);
  background: rgba(233, 193, 118, 0.08);
  color: var(--gold);
}

.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 42px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: var(--outline-cool);
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  gap: 28px;
}

.timeline-step:nth-child(even) .timeline-copy {
  grid-column: 3;
  text-align: left;
}

.timeline-step:nth-child(even) .timeline-dot {
  grid-column: 2;
}

.timeline-step:nth-child(odd) .timeline-copy {
  grid-column: 1;
  text-align: right;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: var(--surface-mid);
  z-index: 1;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.2rem;
}

.timeline-dot.final {
  background: var(--gold);
  color: var(--ink);
}

.story-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
}

.surface-panel {
  border: 1px solid var(--outline-cool);
  border-radius: 8px;
  background: var(--surface-mid);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
}

.admin-page {
  max-width: 1180px;
}

.admin-login {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.admin-dashboard {
  display: grid;
  gap: 28px;
}

.admin-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.admin-products {
  display: grid;
  gap: 22px;
}

.admin-collection-offers { border: 1px solid var(--outline); border-radius: 8px; background: var(--surface-mid); padding: 24px; display: grid; grid-template-columns: minmax(220px, .8fr) 1.5fr; gap: 28px; }
.admin-collection-offers h2 { margin: 4px 0; }
.admin-collection-offers p { color: var(--muted); font-size: 13px; margin: 0; }
.admin-offer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.admin-offer-grid > label { display: grid; gap: 7px; color: var(--primary); font-size: 12px; font-weight: 700; }
.offer-input { display: grid; grid-template-columns: 1fr auto; align-items: center; border: 1px solid var(--outline-cool); border-radius: 5px; overflow: hidden; background: var(--surface-low); }
.offer-input input { border: 0; background: transparent; min-width: 0; }
.offer-input b { padding: 0 12px; color: var(--gold); font-size: 11px; }
.admin-foundations { display: grid; gap: 20px; padding: 24px; border: 1px solid var(--outline); border-radius: 8px; background: var(--surface-mid); }
.admin-foundations-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.admin-foundations-head h2 { margin: 4px 0; }
.admin-foundations-head p { margin: 0; color: var(--muted); font-size: 13px; }
.admin-foundation-grid { display: grid; gap: 18px; }
.admin-foundation { display: grid; grid-template-columns: 220px 1fr; gap: 22px; padding: 18px; border: 1px solid var(--outline-cool); border-radius: 8px; background: var(--surface-low); }
.admin-foundation-preview { position: relative; min-height: 180px; overflow: hidden; border: 1px solid var(--outline-cool); border-radius: 6px; background: var(--surface-mid); }
.admin-foundation-preview > img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; }
.admin-foundation-preview > .icon-button { position: absolute; top: 8px; right: 8px; color: #e8a49a; background: rgba(20,30,20,.84); }
.admin-foundation-placeholder { min-height: 180px; display: grid; place-items: center; align-content: center; gap: 8px; color: var(--muted); text-align: center; }
.admin-foundation-placeholder .material-symbols-outlined { font-size: 42px; }
.box-option-price { display: block; margin-top: 12px; color: #8f7544; font-size: 14px; }

.admin-product {
  border: 1px solid var(--outline-cool);
  border-radius: 8px;
  background: var(--surface-low);
  padding: 22px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
}

.admin-product-preview {
  display: grid;
  align-content: start;
  gap: 14px;
}

.admin-image-frame {
  min-height: 180px;
  border: 1px solid var(--outline-cool);
  border-radius: 6px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--muted);
}

.admin-image-frame .material-symbols-outlined { font-size: 42px; }
.admin-product-preview .admin-image-frame img { height: 100%; min-height: 180px; }
.admin-product-preview { position: relative; }
.admin-remove { position: absolute; right: 8px; top: 8px; color: #e8a49a; background: rgba(20,30,20,.82); }
.admin-image-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.admin-image-thumb { position: relative; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--outline-cool); border-radius: 5px; background: var(--surface-mid); }
.admin-image-thumb img { width: 100%; height: 100%; object-fit: cover; }
.admin-image-thumb button { position: absolute; top: 3px; right: 3px; width: 23px; height: 23px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; color: #fff; background: rgba(39,48,34,.82); cursor: pointer; }
.admin-image-thumb button .material-symbols-outlined { font-size: 15px; }
.admin-image-thumb small { position: absolute; left: 3px; bottom: 3px; padding: 3px 5px; border-radius: 3px; color: #fff; background: rgba(39,48,34,.82); font-size: 8px; font-weight: 800; text-transform: uppercase; }
.admin-image-count { color: var(--muted); font-size: 11px; }

.admin-product-preview .admin-image-frame img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--outline-cool);
}

.admin-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-fields .wide {
  grid-column: 1 / -1;
}

.collection-assignment {
  border: 1px solid var(--outline-cool);
  border-radius: 6px;
  padding: 14px;
}
.collection-assignment legend { color: var(--cream); font-weight: 700; padding-inline: 7px; }
.collection-assignment legend small { color: var(--muted); font-weight: 400; }
.collection-checks { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.collection-checks label { color: var(--primary); font-size: 13px; display: flex; gap: 6px; align-items: center; }
.collection-checks input { accent-color: var(--gold); width: 17px; height: 17px; }

.admin-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 700;
}

.admin-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.admin-savebar {
  position: sticky;
  bottom: 0;
  z-index: 20;
  border: 1px solid var(--outline);
  border-radius: 8px 8px 0 0;
  background: rgba(20, 30, 20, 0.96);
  backdrop-filter: blur(16px);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.site-footer {
  margin-top: clamp(60px, 8vw, 110px);
  padding: 76px var(--gutter) 34px;
  background: var(--surface-low);
  border-top: 1px solid var(--outline-cool);
  text-align: center;
}

.footer-brand {
  font-family: "Noto Serif", Georgia, serif;
  color: var(--gold);
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
  margin: 30px 0;
  color: var(--primary);
}

.copyright {
  color: rgba(218, 230, 214, 0.56);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.drawer-backdrop,
.modal-backdrop,
.toast {
  position: fixed;
  z-index: 60;
}

.drawer-backdrop,
.modal-backdrop {
  inset: 0;
  display: none;
  background: rgba(7, 16, 8, 0.68);
  backdrop-filter: blur(10px);
}

.drawer-backdrop.open,
.modal-backdrop.open {
  display: block;
}

.cart-drawer {
  position: fixed;
  z-index: 70;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100svh;
  padding: 24px;
  background: var(--surface-mid);
  border-left: 1px solid var(--outline);
  transform: translateX(100%);
  transition: transform 220ms ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
}

.cart-drawer.open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-items {
  overflow: auto;
  display: grid;
  gap: 14px;
  align-content: start;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--outline-cool);
  padding-bottom: 14px;
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
}

.modal {
  position: fixed;
  z-index: 80;
  left: 50%;
  top: 50%;
  width: min(540px, calc(100% - 32px));
  max-height: calc(100svh - 48px);
  overflow: auto;
  transform: translate(-50%, -48%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--outline);
  border-radius: 8px;
  background: var(--surface-mid);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, opacity 180ms ease;
}

.modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 18px;
}

.order-modal { width: min(680px, calc(100% - 32px)); max-height: min(88vh, 820px); overflow-y: auto; }
.order-modal .modal-head { align-items: start; }
.order-modal .modal-head h3 { margin: 2px 0 0; }
.order-summary { border: 1px solid var(--outline-cool); border-radius: 7px; background: var(--surface-low); padding: 16px; margin-bottom: 20px; display: grid; gap: 8px; }
.order-summary h4 { margin: 0 0 6px; color: var(--gold-soft); font-family: "Noto Serif", serif; font-size: 20px; }
.order-summary > div { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 12px; }
.order-summary > div strong { color: var(--primary); white-space: nowrap; }
.order-summary .order-discount { color: var(--gold-soft); }
.order-summary .order-final { margin-top: 5px; padding-top: 11px; border-top: 1px solid var(--outline-cool); color: var(--cream); font-size: 16px; }
.order-summary .order-final strong { color: var(--gold-soft); }
.order-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.order-modal .btn .material-symbols-outlined { font-size: 19px; }

.product-card[data-product-detail] { cursor: pointer; }
.product-card[data-product-detail]:focus-visible { outline: 3px solid rgba(181,154,98,.55); outline-offset: 3px; }
.product-detail-modal {
  width: min(900px, calc(100% - 32px));
  padding: 0;
  overflow: hidden;
  border-color: #d8d2c4;
  border-radius: 14px;
  color: #526149;
  background: #fffdf7;
  box-shadow: 0 30px 80px rgba(26,34,22,.28);
}
.product-detail-close { position: absolute; z-index: 2; top: 14px; right: 14px; color: #526149; background: rgba(255,253,247,.9); }
.product-detail-layout { display: grid; grid-template-columns: minmax(300px, .92fr) minmax(0, 1.08fr); }
.product-detail-gallery { min-width: 0; background: #e8ebdf; }
.product-detail-image { min-height: 470px; background: #e8ebdf; }
.product-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-thumbnails { display: flex; gap: 8px; padding: 10px; overflow-x: auto; border-top: 1px solid #d8d2c4; }
.product-detail-thumbnails button { flex: 0 0 66px; width: 66px; height: 66px; padding: 2px; overflow: hidden; border: 2px solid transparent; border-radius: 6px; background: #fffdf7; cursor: pointer; }
.product-detail-thumbnails button.active { border-color: #8f7544; }
.product-detail-thumbnails img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.product-detail-copy { display: grid; align-content: center; padding: clamp(32px, 5vw, 58px); }
.product-detail-copy h2 { margin: 7px 0 5px; color: #526149; font-size: clamp(38px, 5vw, 56px); line-height: .98; }
.product-detail-subtitle { margin: 0 0 22px; color: #9b814c; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.product-detail-description { margin: 0; color: #687363; font-size: 14px; line-height: 1.8; }
.product-detail-purchase { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 30px; padding-top: 23px; border-top: 1px solid #ded8c9; }
.product-detail-purchase .price-group { color: #8f7544; font-size: 22px; font-weight: 800; }
.product-detail-purchase .btn { flex: 0 0 auto; }

@media (max-width: 700px) {
  .product-detail-modal { max-height: calc(100svh - 24px); overflow-y: auto; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .product-detail-image { min-height: 0; aspect-ratio: 1.15; }
  .product-detail-thumbnails button { flex-basis: 58px; width: 58px; height: 58px; }
  .product-detail-copy { padding: 28px 22px 24px; }
  .product-detail-purchase { align-items: stretch; flex-direction: column; }
  .product-detail-purchase .btn { width: 100%; }
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--outline-cool);
  border-radius: 4px;
  background: var(--surface);
  color: var(--cream);
  padding: 12px 14px;
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
}

.toast {
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(30px);
  opacity: 0;
  pointer-events: none;
  background: var(--gold-soft);
  color: var(--ink);
  border-radius: 4px;
  padding: 12px 18px;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, opacity 180ms ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
  }

  .mobile-panel.open {
    display: block;
  }

  .brand {
    justify-self: center;
    white-space: normal;
    text-align: center;
    font-size: clamp(1.1rem, 4vw, 1.8rem);
  }

  .builder-layout,
  .story-columns {
    grid-template-columns: 1fr;
  }

  .hamper-card {
    position: static;
  }
}

@media (max-width: 820px) {
  .story-grid,
  .story-grid.reversed,
  .collection-grid,
  .collection-grid.secondary,
  .memory-grid,
  .contact-grid,
  .contact-card.featured,
  .admin-product {
    grid-template-columns: 1fr;
  }
  .admin-collection-offers { grid-template-columns: 1fr; }
  .admin-foundation { grid-template-columns: 1fr; }
  .admin-foundations-head { align-items: stretch; flex-direction: column; }

  .contact-card[style] {
    grid-column: auto !important;
  }

  .story-grid.reversed .image-frame {
    order: -1;
  }

  .memory-grid {
    grid-template-rows: none;
  }

  .memory-card.large {
    grid-row: auto;
  }

  .shop-grid,
  .item-grid,
  .option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    left: 24px;
  }

  .timeline-step,
  .timeline-step:nth-child(even),
  .timeline-step:nth-child(odd) {
    grid-template-columns: 48px 1fr;
  }

  .timeline-step .timeline-dot,
  .timeline-step:nth-child(even) .timeline-dot,
  .timeline-step:nth-child(odd) .timeline-dot {
    grid-column: 1;
    grid-row: 1;
  }

  .timeline-step .timeline-copy,
  .timeline-step:nth-child(even) .timeline-copy,
  .timeline-step:nth-child(odd) .timeline-copy {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    gap: 8px;
  }

  .nav-actions {
    gap: 4px;
  }

  .button-row,
  .button-row.centered {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .collection-card,
  .collection-card.small {
    min-height: 420px;
  }

  .collection-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .shop-grid,
  .item-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .step-header {
    align-items: flex-start;
    flex-direction: column;
  }

  [data-builder-count] { max-width: none; text-align: left; }

  .admin-head,
  .admin-savebar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-fields {
    grid-template-columns: 1fr;
  }
}

/* Sage navigation drawer */
.home-header .mobile-panel.open {
  z-index: 999;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0;
  background: rgba(48, 60, 40, .76);
  backdrop-filter: blur(12px) saturate(.8);
  animation: menuBackdropIn .2s ease both;
}

.home-header .mobile-panel.open .menu-panel-inner {
  width: min(560px, 100%);
  height: 100dvh;
  max-height: none;
  margin: 0 0 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0;
  border: 0;
  border-left: 1px solid rgba(181, 154, 98, .38);
  border-radius: 0;
  background: #f7f3e9;
  box-shadow: -24px 0 70px rgba(28, 37, 23, .28);
  animation: menuDrawerIn .28s cubic-bezier(.22,.8,.25,1) both;
}

.menu-drawer-top {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 28px;
  border-bottom: 1px solid #ddd6c5;
}

.menu-drawer-brand { display: flex; align-items: center; gap: 11px; color: var(--home-green); text-decoration: none; }
.menu-drawer-brand img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; object-position: 50% 18%; }
.menu-drawer-brand > span { display: grid; }
.menu-drawer-brand strong { font-family: "Cormorant Garamond", "Noto Serif", serif; font-size: 20px; line-height: 1; text-transform: uppercase; }
.menu-drawer-brand small { margin-top: 4px; color: #9b814c; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.menu-close-button { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(82,97,73,.28); border-radius: 50%; background: transparent; color: var(--home-green); transition: color .2s ease, background .2s ease; }
.menu-close-button:hover { color: #fff; background: var(--home-green); }

.menu-drawer-body { min-height: 0; overflow-y: auto; padding: clamp(26px, 6vh, 50px) clamp(28px, 6vw, 52px) 30px; }
.menu-drawer-body .menu-panel-heading { margin-bottom: 25px; }
.menu-drawer-body .menu-panel-heading strong { margin-bottom: 0; font-size: clamp(30px, 4vw, 42px); }
.home-header .mobile-panel.open .menu-drawer-body .menu-panel-links .nav-link { padding: 12px 2px; font-size: clamp(23px, 3vw, 29px); }
.menu-drawer-footer { min-height: 68px; display: flex; align-items: center; gap: 24px; padding: 16px 28px; border-top: 1px solid #ddd6c5; background: #efecdf; }
.menu-drawer-footer a { color: var(--home-green); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.menu-drawer-footer a:hover { color: #9b814c; }

@keyframes menuBackdropIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes menuDrawerIn { from { opacity: .5; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }

@media (max-width: 600px) {
  .menu-drawer-top { min-height: 72px; padding: 12px 18px; }
  .menu-drawer-brand img { width: 39px; height: 39px; }
  .menu-drawer-body { padding: 24px 22px; }
  .menu-drawer-body .menu-panel-heading { margin-bottom: 18px; }
  .menu-drawer-body .menu-panel-heading strong { font-size: 29px; }
  .home-header .mobile-panel.open .menu-drawer-body .menu-panel-links .nav-link { padding: 10px 2px; font-size: 23px; }
  .menu-drawer-footer { padding-inline: 20px; gap: 18px; }
}

/* Shared professional navigation */
.home-nav-shell {
  position: relative;
  z-index: 3;
  grid-template-columns: minmax(235px, auto) 1fr auto;
}

.home-header .home-nav { display: flex; }

.home-header .mobile-toggle {
  display: inline-grid;
  color: var(--home-green);
  border: 1px solid rgba(82, 97, 73, .22);
  border-radius: 50%;
}

.home-header .mobile-toggle:hover,
.home-header .mobile-toggle[aria-expanded="true"] {
  color: #fffdf7;
  background: var(--home-green);
  border-color: var(--home-green);
}

.home-header .menu-button {
  width: auto;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px 0 12px;
  border-radius: 999px;
  color: var(--home-green);
  background: transparent;
  font-family: "Manrope", "Work Sans", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.menu-icon { width: 17px; height: 12px; display: grid; align-content: space-between; }
.menu-icon > span { display: block; width: 17px; height: 1.5px; border-radius: 2px; background: currentColor; transform-origin: center; transition: transform .22s ease; }
.menu-button[aria-expanded="true"] .menu-icon > span:first-child { transform: translateY(5.25px) rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-icon > span:last-child { transform: translateY(-5.25px) rotate(-45deg); }

.home-header .mobile-panel.open {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 126px 28px 34px;
  border: 0;
  background: rgba(35, 44, 29, .42);
  backdrop-filter: blur(18px) saturate(.72);
}

.menu-panel-inner {
  width: min(940px, 100%);
  max-height: calc(100vh - 158px);
  overflow-y: auto;
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(360px, 1.15fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(181, 154, 98, .35);
  border-radius: 16px;
  background: rgba(255, 253, 247, .96);
  box-shadow: 0 30px 90px rgba(23, 30, 19, .28);
}

.menu-panel-heading > span {
  color: #9b814c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.menu-panel-heading strong {
  display: block;
  margin: 12px 0 15px;
  color: var(--home-green);
  font-family: "Cormorant Garamond", "Noto Serif", serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  line-height: .98;
}

.menu-panel-heading p {
  margin: 0;
  color: #6f7868;
  font-size: 13px;
  line-height: 1.7;
}

.menu-panel-links {
  display: grid;
  border-top: 1px solid #ded8c9;
}

.home-header .mobile-panel.open .menu-panel-links .nav-link {
  width: 100%;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 4px;
  border: 0;
  border-bottom: 1px solid #ded8c9;
  color: var(--home-green);
  text-align: left;
  font-family: "Cormorant Garamond", "Noto Serif", serif;
  font-size: clamp(23px, 2.5vw, 31px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

.home-header .mobile-panel.open .menu-panel-links .nav-link > span {
  color: #b59a62;
  font-family: "Manrope", "Work Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

.home-header .mobile-panel.open .menu-panel-links .nav-link:hover,
.home-header .mobile-panel.open .menu-panel-links .nav-link.active {
  color: #9b814c;
  padding-left: 10px;
}

@media (max-width: 900px) {
  .home-nav-shell { grid-template-columns: minmax(0, 1fr) auto; }
  .home-header .home-nav { display: none; }
  .home-header .mobile-panel.open { padding-top: 108px; }
  .menu-panel-inner { max-height: calc(100vh - 135px); }
}

@media (max-width: 700px) {
  .home-header .mobile-panel.open { align-items: start; padding: 90px 12px 16px; }
  .menu-panel-inner {
    max-height: calc(100vh - 106px);
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
    border-radius: 12px;
  }
  .menu-panel-heading strong { font-size: 32px; }
  .menu-panel-heading p { display: none; }
  .home-header .mobile-panel.open .menu-panel-links .nav-link { padding-block: 10px; font-size: 24px; }
}

@media (max-width: 420px) {
  .brand-lockup strong { font-size: 15px; }
  .brand-emblem { width: 35px; height: 35px; }
  .home-nav-shell { padding-inline: 12px; }
  .nav-actions { gap: 6px; }
  .home-header .icon-button { width: 34px; height: 34px; }
  .home-header .menu-button { width: 38px; height: 38px; padding: 0; border-radius: 50%; }
  .home-header .menu-button [data-menu-label] { display: none; }
}

/* 2026 homepage redesign */
.redesigned-home {
  --home-ink: #28301f;
  --home-green: #3d4728;
  --home-green-deep: #333d21;
  --home-gold: #b59a62;
  --home-cream: #f7f3e9;
  --home-line: #ded8c9;
  background: #fbf8f0;
  color: var(--home-ink);
  font-family: "Manrope", sans-serif;
}

.redesigned-shell {
  --home-ink: #28301f;
  --home-green: #3d4728;
  --home-green-deep: #333d21;
  --home-gold: #b59a62;
  --home-cream: #f7f3e9;
  --home-line: #ded8c9;
}

.redesigned-home h1,
.redesigned-home h2,
.redesigned-home h3,
.redesigned-home .brand-lockup strong,
.redesigned-home .footer-logo span {
  font-family: "Cormorant Garamond", serif;
}

.redesigned-home .btn-primary {
  background: var(--home-green);
  color: #fffdf5;
}
.redesigned-home .btn-primary:hover { background: #2f381e; }

.announcement-bar {
  background: var(--home-green-deep);
  color: #f7f0df;
  font-size: 11px;
  letter-spacing: .02em;
}

.announcement-inner {
  width: min(1180px, calc(100% - 48px));
  height: 33px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.announcement-group,
.announcement-inner > span,
.announcement-group > span {
  display: flex;
  align-items: center;
}

.announcement-group > span + span::before {
  content: "";
  height: 12px;
  border-left: 1px solid rgba(255,255,255,.35);
  margin: 0 14px;
}

.announcement-bar .material-symbols-outlined {
  font-size: 13px;
  margin-right: 5px;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: #fffdf7;
  border-bottom: 1px solid rgba(53,60,39,.12);
  box-shadow: 0 5px 18px rgba(45, 55, 36, .06);
  backdrop-filter: blur(18px);
}

.home-nav-shell {
  min-height: 88px;
  max-width: 1190px;
}

.brand-lockup {
  color: var(--home-ink);
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: 250px;
}

.brand-emblem {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%;
}

.brand-lockup span { display: grid; }
.brand-lockup strong { font-size: 23px; line-height: 1; text-transform: uppercase; font-weight: 600; letter-spacing: .02em; }
.brand-lockup small { margin-top: 5px; font-family: "Cormorant Garamond", serif; text-transform: uppercase; letter-spacing: .12em; font-size: 8px; }
.home-nav { gap: 25px; }
.home-nav .nav-link { color: #22261d; font-size: 12px; letter-spacing: .025em; }
.home-nav .nav-link::after { display: none; }
.nav-chevron { font-size: 14px; vertical-align: -3px; }
.desktop-only { display: inline-grid; }

.redesigned-home { --home-ink: #526149; --home-green: #526149; }
.redesigned-home main { color: var(--home-green); }
.redesigned-home main h1,
.redesigned-home main h2,
.redesigned-home main h3 { color: var(--home-green); }
.redesigned-home .audience-copy:not(.dark-copy),
.redesigned-home .audience-copy:not(.dark-copy) h3 { color: #fffdf5; }
.redesigned-home .home-footer h3 { color: #fff; }
.add-round .material-symbols-outlined { display: block; width: 20px; height: 20px; font-size: 20px; line-height: 20px; text-align: center; }

.home-hero {
  min-height: 540px;
  background: linear-gradient(90deg, rgba(244,240,224,.94) 0%, rgba(244,240,224,.75) 30%, rgba(244,240,224,0) 58%), url("/assets/home-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.home-hero-copy {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  padding-left: 55px;
  color: #526149;
}

.home-hero .home-hero-copy,
.home-hero .hero-kicker,
.home-hero .hero-kicker span,
.redesigned-home .home-hero .home-hero-copy h1,
.home-hero .home-hero-copy > p:not(.hero-kicker) {
  color: #526149;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 24px;
}

.hero-kicker span { display: block; width: 280px; text-align: center; margin-top: 7px; color: var(--home-gold); }
.home-hero .hero-kicker span { color: #526149; }
.home-hero h1 { font-size: clamp(48px, 5.2vw, 68px); line-height: .98; font-weight: 500; margin: 0 0 23px; letter-spacing: -.025em; }
.home-hero-copy > p:not(.hero-kicker) { width: 380px; font-size: 15px; line-height: 1.55; margin: 0 0 27px; }
.home-hero .btn { min-height: 46px; padding-inline: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; max-width: 650px; }
.home-hero .btn-secondary { border-color: #526149; color: #526149; background: rgba(255,253,247,.7); }
.home-hero .btn-secondary:hover { background: #526149; color: #fffdf7; }
.home-hero .material-symbols-outlined { font-size: 18px; }

.trust-strip {
  background: #fffdf7;
  border: 1px solid var(--home-line);
  border-radius: 12px;
  margin-top: -31px;
  position: relative;
  z-index: 2;
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  box-shadow: 0 5px 20px rgba(52,55,40,.035);
}

.trust-strip article { text-align: center; min-height: 72px; display: grid; place-content: center; gap: 7px; }
.trust-strip article + article { border-left: 1px solid #ece6d9; }
.trust-strip .material-symbols-outlined { font-size: 33px; font-weight: 250; }
.trust-strip p { margin: 0; text-transform: uppercase; font-size: 10px; line-height: 1.35; font-weight: 600; letter-spacing: .03em; }

.home-section { padding-top: 28px; }
.home-section-title { text-align: center; font-size: 29px; font-weight: 600; margin: 0 0 18px; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.audience-grid.single { grid-template-columns: 1fr; }
.customer-card { height: 320px; }
.customer-card img { object-position: 55% center; }
.customer-card::after { background: linear-gradient(90deg, rgba(39,51,34,.88), rgba(39,51,34,.32) 52%, rgba(39,51,34,.04)); }
.customer-card .audience-copy { inset: 43px auto auto 48px; }
.customer-card .audience-copy h3 { font-size: 38px; }
.audience-card { height: 286px; border-radius: 11px; overflow: hidden; position: relative; background: #ddd3be; }
.audience-card img { width: 100%; height: 100%; object-fit: cover; }
.audience-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,36,26,.78), rgba(26,36,26,.12) 75%); }
.local-card::after { background: linear-gradient(90deg, rgba(248,234,209,.94), rgba(248,234,209,.25) 70%); }
.audience-copy { position: absolute; z-index: 1; inset: 35px auto auto 31px; color: #fffdf5; }
.audience-copy > span { text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }
.audience-copy > span::after { content: "✣"; display: block; color: #d9bb7d; text-align: center; width: 70px; margin: 5px 0; }
.audience-copy h3 { font-size: 34px; line-height: .95; font-weight: 500; margin: 0 0 12px; }
.audience-copy p { font-size: 12px; line-height: 1.45; margin: 0 0 17px; }
.dark-copy { color: #2f3424; }
.btn-outline-light, .btn-outline-dark { min-height: 34px; border: 1px solid currentColor; padding: 0 17px; font-size: 10px; color: inherit; background: rgba(35,45,29,.38); }
.btn-outline-dark { background: rgba(255,250,238,.5); }

.best-sellers-section { padding-top: 22px; }
.ornament-title { text-transform: uppercase; letter-spacing: .08em; font-size: 19px; margin-bottom: 20px; }
.ornament-title::after { content: "❧"; display: block; font-size: 13px; color: var(--home-gold); }
.home-product-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 9px; }
.home-product-row .product-card { padding: 8px; border-radius: 9px; box-shadow: 0 2px 12px rgba(42,47,31,.08); }
.home-product-row .product-card { background: #fffdf7; border-color: #e7e0d2; color: var(--home-ink); }
.home-product-row .product-card:hover { border-color: var(--home-gold); box-shadow: 0 8px 25px rgba(42,47,31,.11); }
.home-product-row .product-card h3 { color: var(--home-ink); }
.home-product-row .product-card .price { color: var(--home-ink); }
.home-product-row .product-card .add-round { background: var(--home-green); color: #fff; border-color: var(--home-green); }
.home-product-row .product-image-wrap { aspect-ratio: 1.08; }
.home-product-row .product-card h3 { font-family: "Manrope", sans-serif; font-size: 11px; margin: 8px 0 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.home-product-row .product-meta { display: none; }
.home-product-row .price-row { margin-top: 4px; }
.home-product-row .price { font-size: 12px; }
.home-product-row .old-price { font-size: 9px; }
.home-product-row .add-round { width: 28px; height: 28px; }
.home-view-all { display: inline-flex; margin: 18px auto 0; font-size: 11px; }

.build-banner {
  margin-top: 28px;
  min-height: 175px;
  background: #ece9dc;
  border-radius: 11px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 32% 25% 43%;
  align-items: stretch;
}
.build-banner-image { overflow: hidden; clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%); }
.build-banner-image img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.build-banner-copy { align-self: center; padding: 18px 15px; }
.build-banner-copy p { font-family: "Cormorant Garamond", serif; font-size: 18px; margin: 0; }
.build-banner-copy h2 { text-transform: uppercase; font-size: 31px; line-height: .85; margin: 0 0 12px; letter-spacing: .04em; }
.build-banner-copy span { display: block; font-size: 11px; line-height: 1.4; margin-bottom: 12px; }
.build-banner-copy .btn { min-height: 35px; font-size: 10px; }
.build-steps { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.build-steps article { text-align: center; }
.build-steps .material-symbols-outlined { border: 1px solid #c9c1ae; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 8px; font-size: 27px; }
.build-steps p { margin: 0; font-size: 9px; text-transform: uppercase; font-weight: 600; line-height: 1.35; }

.about-story { margin-top: 28px; margin-bottom: 28px; display: grid; grid-template-columns: minmax(300px, .85fr) minmax(380px, 1.15fr); padding-inline: 0; border: 1px solid #d9ddcf; border-radius: 12px; overflow: hidden; background: #e8ebdf; }
.about-story-image { min-height: 340px; overflow: hidden; }
.about-story-image img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.about-story-copy { align-self: center; padding: clamp(30px, 5vw, 60px); }
.about-story-copy h2 { max-width: 640px; margin: 7px 0 16px; font-size: clamp(35px, 4.4vw, 52px); line-height: .98; }
.about-story-copy p { color: #63705c; font-size: 13px; line-height: 1.75; }
.about-values { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 22px; }
.about-values > span { display: flex; align-items: center; gap: 6px; color: var(--home-green); font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.about-values .material-symbols-outlined { color: #9b814c; font-size: 18px; }

.stats-strip { border-top: 1px solid #ebe5d6; margin-top: 22px; background: #fffdf7; }
.stats-grid { min-height: 82px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.stats-grid article { display: flex; align-items: center; justify-content: center; gap: 12px; }
.stats-grid article + article { border-left: 1px solid #eee8dc; }
.stats-grid .material-symbols-outlined { font-size: 36px; }
.stats-grid div { display: grid; }
.stats-grid strong { font-family: "Cormorant Garamond", serif; font-size: 21px; }
.stats-grid small { font-size: 9px; }

.home-contact-section { padding: 42px 0 48px; background: #f4f1e7; border-top: 1px solid #e3ddcf; }
.home-contact-heading { text-align: center; max-width: 650px; margin: 0 auto 24px; }
.home-contact-heading h2 { margin: 4px 0 5px; font-size: 36px; }
.home-contact-heading p { margin: 0; color: #6c7565; font-size: 12px; }
.home-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.home-contact-grid > a { min-height: 98px; display: grid; grid-template-columns: 42px 1fr 24px; align-items: center; gap: 12px; padding: 18px; border: 1px solid #ddd7c8; border-radius: 9px; background: #fffdf7; color: var(--home-green); text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.home-contact-grid > a:hover { transform: translateY(-2px); border-color: #b59a62; box-shadow: 0 10px 25px rgba(53, 64, 44, .08); }
.home-contact-grid > a > .material-symbols-outlined:first-child { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: #e9ebdf; font-size: 21px; }
.home-contact-grid > a > .material-symbols-outlined:last-child { font-size: 17px; color: #9b814c; }
.home-contact-grid div { display: grid; }
.home-contact-grid strong { font-family: "Cormorant Garamond", serif; font-size: 23px; line-height: 1; }
.home-contact-grid small { margin-top: 5px; color: #747d6e; font-size: 10px; }

.home-footer { background: var(--home-green-deep); padding: 34px 0 0; color: #f5f0e2; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1.4fr .8fr .9fr 1fr; gap: 34px; }
.footer-grid h3 { font-family: "Manrope", sans-serif; text-transform: uppercase; font-size: 10px; letter-spacing: .07em; margin: 0 0 13px; color: #fff; }
.footer-grid p, .footer-grid a { color: #e4dfd0; font-size: 9px; line-height: 1.7; text-decoration: none; }
.footer-grid nav { display: flex; flex-direction: column; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 39px; height: 39px; border-radius: 50%; object-fit: cover; object-position: 50% 18%; }
.footer-logo span { font-size: 22px; color: #f8f1dc; }
.footer-about > p { margin: 10px 0; }
.social-row { display: flex; gap: 15px; }
.social-row a { font-size: 15px; }
.newsletter-form { border: 1px solid rgba(255,255,255,.45); border-radius: 4px; display: flex; height: 36px; margin-top: 12px; }
.newsletter-form input { border: 0; background: transparent; color: #fff; flex: 1; min-width: 0; padding: 0 11px; font-size: 10px; }
.newsletter-form button { border: 0; background: transparent; color: #fff; width: 40px; }
.footer-contact a, .footer-contact p { display: flex; align-items: flex-start; gap: 7px; margin: 0 0 3px; }
.footer-contact .material-symbols-outlined { font-size: 14px; margin-top: 2px; }
.home-footer .copyright { margin-top: 28px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.13); text-align: center; font-size: 8px; }
.full-width { width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.collection-page-hero {
  background: linear-gradient(90deg, rgba(43,51,31,.9), rgba(43,51,31,.58)), url("/assets/home-hero.jpg") center 52%/cover;
  color: #fffaf0;
  padding: 42px 0 38px;
}
.collection-page-hero .container { max-width: 760px; margin-left: max(24px, calc((100vw - 1180px) / 2)); }
.collection-page-hero h1 { color: inherit; font-size: clamp(38px, 5vw, 56px); margin: 5px 0 7px; }
.collection-page-hero p { max-width: 650px; line-height: 1.7; color: rgba(255,250,240,.82); }
.collection-catalog { padding-block: 34px 90px; }
.collection-tile-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.collection-tile { position: relative; overflow: hidden; border: 1px solid var(--outline-cool); border-radius: 10px; background: var(--surface-low); }
.collection-tile-button { width: 100%; padding: 0; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.collection-tile a.collection-tile-button { display: block; text-decoration: none; }
.collection-tile-image { display: block; height: 260px; overflow: hidden; }
.collection-tile-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.collection-tile:hover .collection-tile-image img { transform: scale(1.035); }
.collection-offer { position: absolute; top: 14px; left: 14px; z-index: 1; padding: 6px 10px; border-radius: 999px; background: var(--gold-soft); color: var(--ink); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.collection-tile-copy { display: grid; padding: 20px; }
.collection-tile-copy small { color: var(--gold); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.collection-tile-copy strong { color: var(--cream); font-family: "Noto Serif", serif; font-size: 24px; margin: 3px 0 5px; }
.collection-tile-copy > span { color: var(--muted); font-size: 12px; }
.collection-tile-copy .collection-tile-price { color: var(--gold-soft); font-size: 16px; font-weight: 800; margin-top: 10px; }
.collection-tile-price del { color: var(--muted); font-size: 12px; font-weight: 500; margin-right: 5px; }
.collection-tile-copy em { display: flex; align-items: center; gap: 6px; color: var(--primary); font-style: normal; font-size: 12px; font-weight: 700; margin-top: 13px; }
.collection-tile-copy em .material-symbols-outlined { font-size: 16px; }
.collection-detail { scroll-margin-top: 110px; }
.collection-detail-panel { margin-top: 64px; padding-top: 54px; border-top: 1px solid var(--outline); }
.collection-detail-heading { display: flex; justify-content: space-between; align-items: start; gap: 30px; margin-bottom: 28px; }
.collection-detail-heading h2 { font-size: 42px; margin: 5px 0 8px; }
.collection-detail-heading p { max-width: 680px; margin: 0; }
.collection-total-card { max-width: 650px; margin: 32px 0 0 auto; border: 1px solid var(--outline); border-radius: 10px; background: var(--surface-low); padding: 24px; display: grid; gap: 12px; }
.collection-total-card > div { display: flex; justify-content: space-between; gap: 20px; }
.collection-total-card .collection-saving { color: var(--gold-soft); }
.collection-total-card .collection-final { border-top: 1px solid var(--outline-cool); padding-top: 14px; font-size: 20px; color: var(--cream); }
.collection-total-card .btn { margin-top: 7px; }
.collection-showcase + .collection-showcase { border-top: 1px solid var(--line); margin-top: 72px; padding-top: 72px; }
.collection-showcase-head { display: grid; grid-template-columns: 250px 1fr; gap: 40px; align-items: center; margin-bottom: 34px; }
.collection-showcase-image { height: 170px; border-radius: 14px; overflow: hidden; }
.collection-showcase-image img { width: 100%; height: 100%; object-fit: cover; }
.collection-showcase h2 { font-size: 38px; margin: 5px 0 9px; }
.collection-showcase-head p { max-width: 640px; margin: 0 0 12px; }
.collection-count { color: var(--gold); text-transform: uppercase; letter-spacing: .08em; font-size: 11px; font-weight: 700; }
.collection-products { grid-template-columns: repeat(4, 1fr); }
.collection-page { padding-top: 28px; padding-bottom: 90px; }
.collection-back-link { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 20px; color: #8f7544; }
.collection-back-link .material-symbols-outlined { font-size: 17px; }
.collection-page-overview { display: grid; grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr); overflow: hidden; border: 1px solid #d8d2c4; border-radius: 14px; background: #fffdf7; box-shadow: 0 18px 45px rgba(48,60,40,.08); }
.collection-page-image { min-height: 440px; }
.collection-page-image img { width: 100%; height: 100%; object-fit: cover; }
.collection-page-copy { display: grid; align-content: center; padding: clamp(34px, 6vw, 70px); }
.collection-page-copy h1 { margin: 7px 0 13px; color: #526149; font-size: clamp(45px, 6vw, 68px); line-height: .92; }
.collection-page-copy > p { margin: 0; color: #687363; line-height: 1.75; }
.collection-page-price { display: grid; justify-items: start; gap: 4px; margin-top: 28px; padding-top: 22px; border-top: 1px solid #ded8c9; }
.collection-page-price small { color: #747d6e; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.collection-page-price strong { color: #8f7544; font-size: 25px; }
.collection-page-price del { color: #8a9184; font-size: 15px; }
.collection-page-price > span { padding: 4px 8px; border-radius: 999px; color: #fff; background: #526149; font-size: 10px; font-weight: 800; }
.collection-page-contents { padding-top: clamp(55px, 8vw, 90px); }
.collection-page-section-head { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 28px; }
.collection-page-section-head h2 { margin: 4px 0 0; color: #526149; font-size: clamp(36px, 5vw, 52px); }
.collection-page-section-head p { margin: 0; color: #747d6e; }

@media (max-width: 820px) {
  .collection-tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-showcase-head { grid-template-columns: 180px 1fr; gap: 24px; }
  .collection-products { grid-template-columns: repeat(2, 1fr); }
  .collection-page-overview { grid-template-columns: 1fr; }
  .collection-page-image { min-height: 0; aspect-ratio: 16 / 10; }
}

@media (max-width: 560px) {
  .collection-tile-grid { grid-template-columns: 1fr; }
  .collection-tile-image { height: 230px; }
  .collection-detail-panel { margin-top: 42px; padding-top: 38px; }
  .collection-detail-heading h2 { font-size: 34px; }
  .collection-page-hero { padding: 62px 0; }
  .collection-showcase-head { grid-template-columns: 1fr; }
  .collection-showcase-image { height: 210px; }
  .collection-products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .collection-page { padding-top: 18px; }
  .collection-page-copy { padding: 30px 22px; }
  .collection-page-section-head { align-items: start; flex-direction: column; gap: 7px; }
}

@media (max-width: 1080px) {
  .home-nav { gap: 13px; }
  .brand-lockup { min-width: 215px; }
  .brand-lockup strong { font-size: 19px; }
  .home-product-row { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1.3fr 1fr; }
  .mobile-panel.open {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 112px 24px 40px;
    background: rgba(246, 243, 234, .82);
    border: 0;
    backdrop-filter: blur(18px) saturate(.8);
  }
  .mobile-panel.open .nav-link {
    width: min(360px, 100%);
    padding: 12px 16px;
    color: var(--home-green);
    border: 0;
    text-align: center;
    font-family: "Cormorant Garamond", "Noto Serif", serif;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: .025em;
    text-transform: none;
  }
  .mobile-panel.open .nav-link:hover,
  .mobile-panel.open .nav-link.active { color: #8d7442; }
  body.menu-open .home-header { background: rgba(255,253,247,.94); }
}

@media (max-width: 820px) {
  .announcement-inner { justify-content: center; }
  .announcement-group > span:not(:first-child), .announcement-inner > span { display: none; }
  .home-nav-shell { min-height: 72px; }
  .brand-lockup { min-width: 0; }
  .brand-lockup small { display: none; }
  .desktop-only { display: none; }
  .home-hero { min-height: 510px; background-position: 61% center; }
  .home-hero-copy { padding-left: 8px; }
  .home-hero h1 { font-size: 51px; }
  .home-hero-copy > p:not(.hero-kicker) { width: min(330px, 85%); }
  .trust-strip { grid-template-columns: repeat(3, 1fr); margin-top: -18px; }
  .trust-strip article { margin: 11px 0; }
  .trust-strip article:nth-child(4) { border-left: 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .build-banner { grid-template-columns: 42% 58%; }
  .build-steps { grid-column: 1 / -1; padding: 20px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid article { padding: 15px; }
  .stats-grid article:nth-child(3) { border-left: 0; }
  .about-story { width: calc(100% - 32px); grid-template-columns: 1fr; }
  .about-story-image { min-height: 260px; }
  .home-contact-grid { grid-template-columns: 1fr; max-width: 600px; margin: auto; }
}

@media (max-width: 560px) {
  .announcement-inner, .home-hero-copy { width: min(100% - 28px, 1180px); }
  .brand-emblem { width: 38px; height: 38px; }
  .brand-lockup strong { font-size: 17px; }
  .home-hero { min-height: 520px; background-position: 66% center; position: relative; }
  .home-hero::after { content: ""; position: absolute; inset: 0; background: rgba(249,244,228,.2); }
  .home-hero-copy { position: relative; z-index: 1; padding-left: 0; align-self: flex-end; padding-bottom: 58px; }
  .hero-kicker { margin-bottom: 13px; }
  .home-hero h1 { font-size: 43px; }
  .home-hero-copy > p:not(.hero-kicker) { font-size: 13px; }
  .hero-actions { width: min(100%, 350px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .hero-actions .btn { min-height: 42px; padding-inline: 10px; font-size: 10px; letter-spacing: .08em; }
  .hero-actions .btn-primary { grid-column: 1 / -1; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); width: calc(100% - 24px); }
  .trust-strip article:nth-child(odd) { border-left: 0; }
  .trust-strip article:nth-child(4) { border-left: 1px solid #ece6d9; }
  .home-section { width: calc(100% - 24px); }
  .audience-card { height: 300px; }
  .home-product-row { grid-template-columns: repeat(2, 1fr); }
  .build-banner { width: calc(100% - 24px); grid-template-columns: 1fr; }
  .build-banner-image { height: 180px; clip-path: none; }
  .build-banner-copy { text-align: center; }
  .build-steps { grid-column: auto; grid-template-columns: repeat(2,1fr); gap: 22px; }
  .stats-grid { width: 100%; }
  .stats-grid strong { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about, .footer-newsletter { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .order-field-row { grid-template-columns: 1fr; }
}

/* Final drawer positioning: above the complete page and sticky header */
.home-header .mobile-panel.open {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0;
  background: rgba(48, 60, 40, .76);
  backdrop-filter: blur(12px) saturate(.8);
}

@media (max-width: 700px) {
  .home-header .mobile-panel.open { align-items: stretch; padding: 0; }
}

/* Unified cream and sage storefront theme */
body.redesigned-shell {
  background: #fbf8f0;
  color: #526149;
  font-family: "Manrope", "Work Sans", sans-serif;
}

.redesigned-shell main h1,
.redesigned-shell main h2,
.redesigned-shell main h3,
.redesigned-shell main h4 { color: #526149; }
.redesigned-shell main h1,
.redesigned-shell main h2,
.redesigned-shell main h3,
.redesigned-shell main h4,
.redesigned-shell .footer-brand { font-family: "Cormorant Garamond", "Noto Serif", serif; }
.redesigned-shell .page-hero { padding-block: 42px 26px; gap: 8px; }
.redesigned-shell .page-hero .lead,
.redesigned-shell .builder-intro .lead { color: #6d7767; }
.redesigned-shell .btn-primary { background: #526149; color: #fffdf7; }
.redesigned-shell .btn-primary:hover { background: #3e4b37; }
.redesigned-shell .btn-secondary { border-color: #526149; color: #526149; background: transparent; }
.redesigned-shell .text-link { color: #8f7544; }
.redesigned-shell .chip { border-color: #8b987f; color: #526149; background: #fffdf7; }
.redesigned-shell .chip.active,
.redesigned-shell .chip:hover { background: #526149; color: #fffdf7; }

.redesigned-shell .product-card,
.redesigned-shell .option-card,
.redesigned-shell .contact-card,
.redesigned-shell .collection-tile,
.redesigned-shell .collection-total-card {
  border-color: #dfd9ca;
  background: #fffdf7;
  box-shadow: 0 5px 18px rgba(48, 60, 40, .055);
}
.redesigned-shell .product-card:hover,
.redesigned-shell .option-card:hover,
.redesigned-shell .contact-card:hover,
.redesigned-shell .collection-tile:hover { border-color: #b59a62; background: #fffdf7; box-shadow: 0 13px 28px rgba(48, 60, 40, .1); }
.redesigned-shell .product-card h3,
.redesigned-shell .option-card h3,
.redesigned-shell .collection-tile-copy strong { color: #526149; }
.redesigned-shell .product-meta,
.redesigned-shell .option-card p,
.redesigned-shell .collection-tile-copy > span,
.redesigned-shell .contact-card p { color: #747d6e; }
.redesigned-shell .price,
.redesigned-shell .collection-tile-copy .collection-tile-price { color: #8f7544; }
.redesigned-shell .add-round { border-color: #526149; color: #526149; }
.redesigned-shell .add-round:hover,
.redesigned-shell .add-round.active { background: #526149; color: #fff; }
.redesigned-shell .builder-section { border-color: #ded8c9; }
.redesigned-shell .step-number { background: #526149; color: #fff; }
.redesigned-shell .option-card.selected { border-color: #b59a62; box-shadow: 0 0 0 1px rgba(181,154,98,.18), 0 12px 30px rgba(48,60,40,.09); }
.redesigned-shell .hamper-card { border-color: #d8d2c4; background: #e8ebdf; box-shadow: 0 16px 36px rgba(48,60,40,.1); }
.redesigned-shell .preview-box { border-color: #d8d2c4; background: #f7f3e9; color: #6f7868; }
.redesigned-shell .summary-row { border-color: #d8d2c4; }
.redesigned-shell .summary-row p { color: #747d6e; }
.redesigned-shell .contact-icon { border-color: #d6cfbd; background: #e8ebdf; color: #8f7544; }
.redesigned-shell .collection-tile-copy em { color: #526149; }
.redesigned-shell .collection-final { color: #526149; }
.redesigned-shell .collection-detail-panel { border-color: #d8d2c4; }
.redesigned-shell .site-footer { margin-top: 64px; background: #333d21; border-color: rgba(255,255,255,.12); }
.redesigned-shell .site-footer .footer-brand { color: #d8bc80; }
.redesigned-shell .site-footer .footer-links { color: #e7e3d5; }

@media (max-width: 600px) {
  .redesigned-shell .section-tight { padding-block: 28px 48px; }
  .redesigned-shell .shop-grid,
  .redesigned-shell .item-grid,
  .redesigned-shell .option-grid,
  .redesigned-shell .contact-grid,
  .redesigned-shell .collection-tile-grid { grid-template-columns: 1fr; }
  .redesigned-shell .builder-layout { grid-template-columns: 1fr; }
  .redesigned-shell .hamper-card { position: static; }
  .customer-card { height: 360px; }
  .customer-card .audience-copy { inset: auto 22px 28px; }
  .customer-card .audience-copy h3 { font-size: 31px; }
  .home-product-row { grid-template-columns: 1fr; }
}

/* WashEase-inspired responsive header behavior */
.home-header {
  top: 0;
  padding: 12px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-nav-shell {
  width: min(calc(100% - 32px), 1180px);
  min-height: 68px;
  padding: 9px 14px 9px 18px;
  border: 1px solid rgba(82, 97, 73, .18);
  border-radius: 999px;
  background: rgba(255, 253, 247, .94);
  box-shadow: 0 12px 35px rgba(42, 53, 35, .12);
  backdrop-filter: blur(18px);
}

.home-header .brand-lockup { min-width: 230px; }
.home-header .brand-emblem { width: 43px; height: 43px; }
.home-header .brand-lockup strong { font-size: 20px; }
.home-header .home-nav { display: flex; gap: clamp(14px, 1.8vw, 25px); }
.home-header .home-nav .nav-link { padding-block: 7px; font-size: 10px; }
.home-header .mobile-toggle { display: none; }
.home-header [data-open-cart] {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(82, 97, 73, .18);
  border-radius: 50%;
  color: #526149;
  background: #f0f1e7;
}
.home-header [data-open-cart]:hover { color: #fff; background: #526149; }

@media (max-width: 900px) {
  .home-header { padding: 10px 0; }
  .home-nav-shell {
    width: min(calc(100% - 24px), 620px);
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 8px 9px 8px 14px;
  }
  .home-header .brand-lockup { min-width: 0; }
  .home-header .brand-emblem { width: 39px; height: 39px; }
  .home-header .brand-lockup strong { font-size: 17px; }
  .home-header .brand-lockup small { display: none; }
  .home-header .home-nav { display: none; }
  .home-header .mobile-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border-radius: 50%;
    color: #526149;
    background: #f0f1e7;
  }
  .home-header .mobile-toggle [data-menu-label] { display: none; }
  .home-header .mobile-toggle .menu-icon { width: 18px; height: 13px; }
  .home-header .mobile-toggle .menu-icon > span { width: 18px; height: 2px; }
  .home-header [data-open-cart] { width: 40px; height: 40px; }

  .home-header .mobile-panel.open {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 9999;
    display: block;
    padding: 0;
    background: #333d2b;
    backdrop-filter: none;
  }
  .home-header .mobile-panel.open .menu-panel-inner {
    width: 100%;
    height: 100dvh;
    max-height: none;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    border: 0;
    background: #333d2b;
    box-shadow: none;
    overflow: hidden;
    animation: menuScreenIn .2s ease both;
  }
  .home-header .menu-drawer-top {
    min-height: 88px;
    padding: 18px 20px;
    border-color: rgba(247, 243, 233, .16);
  }
  .home-header .menu-drawer-brand { color: #f7f3e9; }
  .home-header .menu-drawer-brand img { width: 40px; height: 40px; }
  .home-header .menu-drawer-brand small { color: #d8bc80; }
  .home-header .menu-close-button { border-color: rgba(247,243,233,.24); color: #f7f3e9; }
  .home-header .menu-close-button:hover { color: #333d2b; background: #f7f3e9; }
  .home-header .menu-drawer-body { padding: 28px 20px 20px; }
  .home-header .menu-panel-heading { display: none; }
  .home-header .menu-panel-links { border-color: rgba(247,243,233,.16); }
  .home-header .mobile-panel.open .menu-drawer-body .menu-panel-links .nav-link {
    grid-template-columns: 32px 1fr;
    padding: 16px 2px;
    border-color: rgba(247,243,233,.16);
    color: #f7f3e9;
    font-family: "Manrope", "Work Sans", sans-serif;
    font-size: clamp(25px, 8vw, 36px);
    font-weight: 700;
    letter-spacing: -.02em;
  }
  .home-header .mobile-panel.open .menu-drawer-body .menu-panel-links .nav-link > span { color: #d8bc80; }
  .home-header .mobile-panel.open .menu-drawer-body .menu-panel-links .nav-link:hover,
  .home-header .mobile-panel.open .menu-drawer-body .menu-panel-links .nav-link.active { color: #d8bc80; padding-left: 8px; }
  .home-header .menu-drawer-footer {
    min-height: 132px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    padding: 16px 20px 22px;
    border-color: rgba(247,243,233,.16);
    background: #2d3725;
  }
  .home-header .menu-drawer-footer a { color: #f7f3e9; text-align: center; }
  .home-header .menu-drawer-footer a:first-child {
    grid-column: 1 / -1;
    min-height: 50px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #333d2b;
    background: #d8bc80;
    font-size: 11px;
  }
}

@keyframes menuScreenIn { from { opacity: 0; } to { opacity: 1; } }

/* Scroll-driven frame sequence */
.sequence-hero {
  --sequence-progress: 0;
  position: relative;
  height: 440svh;
  margin-top: -92px;
  background: #333d2b;
}

.sequence-hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
}

.sequence-fallback,
.sequence-canvas,
.sequence-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sequence-fallback { z-index: 0; object-fit: cover; transition: opacity .25s ease; }
.sequence-fallback.hidden { opacity: 0; }
.sequence-canvas { z-index: 1; display: block; opacity: 0; transition: opacity .25s ease; }
.sequence-canvas.ready { opacity: 1; }
.sequence-shade {
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(246,241,224,.9) 0%, rgba(246,241,224,.66) 27%, rgba(246,241,224,.08) 54%, transparent 72%);
}

.sequence-hero-copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  transform: translate(-50%, -50%);
  margin: 0;
  padding-left: 55px;
  color: #526149;
  opacity: clamp(0, calc(1 - var(--sequence-progress) * 2.4), 1);
  will-change: opacity;
}
.redesigned-home .sequence-hero-copy h1 {
  max-width: 610px;
  margin: 0 0 23px;
  color: #526149;
  font-size: clamp(48px, 5.2vw, 68px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.025em;
}
.sequence-hero-copy > p:not(.hero-kicker) { width: 380px; max-width: 100%; margin: 0 0 27px; font-size: 15px; line-height: 1.55; }
.sequence-hero-copy .btn { min-height: 46px; padding-inline: 22px; }

.sequence-status {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  width: min(440px, calc(100% - 48px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  color: #fffdf7;
  filter: drop-shadow(0 1px 5px rgba(21,28,17,.35));
}
.sequence-status::before { content: ""; grid-column: 1; grid-row: 1; height: 2px; border-radius: 999px; background: rgba(255,255,255,.42); }
.sequence-status > span { grid-column: 1; grid-row: 1; width: 100%; height: 2px; border-radius: 999px; background: #e4c987; transform: scaleX(0); transform-origin: left; will-change: transform; }
.sequence-status small { grid-column: 2; grid-row: 1; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

/* User-controlled casket sequence */
.box-slider {
  --box-progress: 0;
  overflow: hidden;
  border: 1px solid #d8d2c4;
  border-radius: 14px;
  background: #fffdf7;
  box-shadow: 0 18px 48px rgba(48,60,40,.1);
}
.box-slider-stage { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #333d2b; isolation: isolate; }
.box-slider-fallback,
.box-slider-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.box-slider-fallback { z-index: 0; object-fit: cover; transition: opacity .2s ease; }
.box-slider-fallback.hidden { opacity: 0; }
.box-slider-canvas { z-index: 1; display: block; opacity: 0; transition: opacity .2s ease; }
.box-slider-canvas.ready { opacity: 1; }
.box-slider-prompt {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  max-width: 330px;
  padding: 13px 17px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 10px;
  color: #fffdf7;
  background: rgba(51,61,43,.68);
  backdrop-filter: blur(12px);
  opacity: clamp(0, calc(1 - var(--box-progress) * 3), 1);
  transform: translateY(calc(var(--box-progress) * 12px));
  transition: opacity .18s ease;
  pointer-events: none;
}
.box-slider-prompt > .material-symbols-outlined { grid-row: 1 / 3; font-size: 29px; color: #e4c987; }
.box-slider-prompt strong { font-family: "Cormorant Garamond", serif; font-size: 22px; line-height: 1; }
.box-slider-prompt small { margin-top: 4px; color: rgba(255,253,247,.76); font-size: 10px; }
.box-slider-controls {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 20px 24px 18px;
  color: #526149;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.box-slider-controls input[type="range"] {
  width: 100%;
  height: 30px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: ew-resize;
}
.box-slider-controls input[type="range"]::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #526149 calc(var(--box-progress) * 100%), #d9ddcf 0);
}
.box-slider-controls input[type="range"]::-webkit-slider-thumb {
  width: 28px;
  height: 28px;
  margin-top: -12px;
  border: 4px solid #fffdf7;
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  background: #526149;
  box-shadow: 0 3px 12px rgba(48,60,40,.28);
}
.box-slider-controls input[type="range"]::-moz-range-track { height: 5px; border: 0; border-radius: 999px; background: #d9ddcf; }
.box-slider-controls input[type="range"]::-moz-range-progress { height: 5px; border-radius: 999px; background: #526149; }
.box-slider-controls input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border: 4px solid #fffdf7; border-radius: 50%; background: #526149; box-shadow: 0 3px 12px rgba(48,60,40,.28); }
.box-slider-controls output { grid-column: 1 / -1; text-align: center; color: #9b814c; font-size: 9px; }

/* Landing-page storefront */
.landing-storefront { scroll-margin-top: 104px; padding: clamp(70px, 8vw, 112px) 0; border-top: 1px solid #ddd7c9; background: #f7f3e9; }
.landing-storefront:nth-of-type(even) { background: #f0f1e7; }
.landing-section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 34px; }
.landing-section-head h2 { margin: 3px 0 6px; font-size: clamp(38px, 5vw, 58px); line-height: .98; }
.landing-section-head p { margin: 0; color: #747d6e; }
.landing-section-head .text-link { flex: 0 0 auto; color: #8f7544; }
.landing-storefront .chip { border-color: #8b987f; color: #526149; background: #fffdf7; }
.landing-storefront .chip.active,
.landing-storefront .chip:hover { color: #fffdf7; background: #526149; }
.landing-storefront .product-card,
.landing-storefront .option-card,
.landing-storefront .collection-tile,
.landing-storefront .collection-total-card { border-color: #dfd9ca; color: #526149; background: #fffdf7; box-shadow: 0 5px 18px rgba(48,60,40,.055); }
.landing-storefront .product-card:hover,
.landing-storefront .option-card:hover,
.landing-storefront .collection-tile:hover { border-color: #b59a62; box-shadow: 0 13px 28px rgba(48,60,40,.1); }
.landing-storefront .product-card h3,
.landing-storefront .option-card h3,
.landing-storefront .collection-tile-copy strong { color: #526149; }
.landing-storefront .product-meta,
.landing-storefront .option-card p,
.landing-storefront .collection-tile-copy > span { color: #747d6e; }
.landing-storefront .price,
.landing-storefront .collection-tile-copy .collection-tile-price { color: #8f7544; }
.landing-storefront .add-round { border-color: #526149; color: #526149; }
.landing-storefront .add-round:hover,
.landing-storefront .add-round.active { color: #fff; background: #526149; }
.landing-collection-catalog { padding: 0; }
.landing-storefront .collection-tile-copy em,
.landing-storefront .collection-final { color: #526149; }
.landing-storefront .collection-detail-panel,
.landing-storefront .builder-section { border-color: #d8d2c4; }
.landing-storefront .step-number { color: #fff; background: #526149; }
.landing-storefront .option-card.selected { border-color: #b59a62; box-shadow: 0 0 0 1px rgba(181,154,98,.18), 0 12px 30px rgba(48,60,40,.09); }
.landing-storefront .hamper-card { border-color: #d8d2c4; background: #e8ebdf; box-shadow: 0 16px 36px rgba(48,60,40,.1); }
.landing-storefront .preview-box { border-color: #d8d2c4; color: #6f7868; background: #f7f3e9; }
.landing-storefront .summary-row { border-color: #d8d2c4; }
.landing-storefront .summary-row p { color: #747d6e; }
.landing-builder .builder-intro { margin-bottom: 0; }

/* Dedicated text-led pages */
.simple-page { padding-bottom: clamp(64px, 9vw, 110px); }
.simple-copy-panel {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(38px, 8vw, 100px);
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid #d8d2c4;
  border-radius: 12px;
  background: #fffdf7;
  box-shadow: 0 16px 38px rgba(48,60,40,.07);
}
.simple-copy-panel h2 { margin: 7px 0 0; color: #526149; font-size: clamp(38px, 5vw, 58px); line-height: .98; }
.simple-copy-body { display: grid; gap: 18px; align-content: start; }
.simple-copy-body p { margin: 0; color: #687363; font-size: 14px; line-height: 1.85; }
.simple-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.simple-values article { padding: 28px; border: 1px solid #d8d2c4; border-radius: 10px; background: #e8ebdf; }
.simple-values article > span { color: #9b814c; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.simple-values h3 { margin: 15px 0 7px; color: #526149; font-size: 25px; }
.simple-values p { margin: 0; color: #687363; font-size: 12px; line-height: 1.7; }
.dedicated-contact { padding: 12px 0 0; }
.dedicated-contact .contact-card { color: #526149; }
.dedicated-contact .contact-card h2,
.dedicated-contact .contact-card h3 { color: #526149; }

@media (max-width: 700px) {
  .simple-copy-panel { grid-template-columns: 1fr; gap: 25px; padding: 28px 22px; }
  .simple-values { grid-template-columns: 1fr; }
  .dedicated-contact { grid-template-columns: 1fr; }
  .dedicated-contact .contact-card.featured { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .sequence-hero { height: 380svh; margin-top: -82px; }
  .sequence-hero-copy { padding-left: 12px; }
  .landing-section-head { align-items: start; flex-direction: column; gap: 14px; }
  .landing-storefront .builder-layout { grid-template-columns: 1fr; }
  .landing-storefront .hamper-card { position: static; }
}

@media (max-width: 600px) {
  .sequence-hero { height: 330svh; }
  .sequence-hero-sticky { min-height: 540px; }
  .sequence-fallback { object-position: 70% center; }
  .sequence-shade { background: linear-gradient(0deg, rgba(247,243,233,.94) 0%, rgba(247,243,233,.68) 34%, rgba(247,243,233,0) 66%); }
  .sequence-hero-copy { top: auto; bottom: 50px; width: calc(100% - 36px); transform: translateX(-50%); padding: 0; }
  .redesigned-home .sequence-hero-copy h1 { font-size: clamp(39px, 12vw, 54px); }
  .sequence-hero-copy > p:not(.hero-kicker) { width: min(320px, 92%); font-size: 13px; }
  .sequence-status { bottom: 18px; }
  .box-slider { border-radius: 10px; }
  .box-slider-stage { aspect-ratio: 16 / 10; }
  .box-slider-prompt { left: 12px; bottom: 12px; padding: 10px 12px; }
  .box-slider-prompt small { display: none; }
  .box-slider-controls { gap: 9px; padding: 14px 14px 12px; }
  .landing-storefront { padding: 62px 0; }
  .landing-storefront .shop-grid,
  .landing-storefront .item-grid,
  .landing-storefront .option-grid,
  .landing-storefront .collection-tile-grid { grid-template-columns: 1fr; }
}

/* Shared, restrained motion system */
.motion-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.2,.72,.25,1), transform .65s cubic-bezier(.2,.72,.25,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-reveal.motion-visible { opacity: 1; transform: translateY(0); }
.motion-reveal[data-motion="scale"] { transform: translateY(14px) scale(.975); }
.motion-reveal[data-motion="scale"].motion-visible { transform: translateY(0) scale(1); }
.product-card img,
.collection-tile-image img,
.option-card img { transition: transform .55s cubic-bezier(.2,.72,.25,1); }
.product-card:hover img,
.collection-tile:hover .collection-tile-image img,
.option-card:hover img { transform: scale(1.035); }
.option-card.selected { animation: selectedCardPulse .38s ease both; }
.collection-detail-panel { animation: detailReveal .5s cubic-bezier(.2,.72,.25,1) both; }
.home-nav-shell { animation: headerArrive .55s cubic-bezier(.2,.72,.25,1) both; }
.preview-item { animation: previewItemIn .38s cubic-bezier(.2,.72,.25,1) both; }
.cart-count.has-items { animation: cartCountPop .35s cubic-bezier(.2,.8,.25,1) both; }
.btn .material-symbols-outlined,
.text-link .material-symbols-outlined { transition: transform .22s ease; }
.btn:hover .material-symbols-outlined,
.text-link:hover .material-symbols-outlined { transform: translateX(3px); }
.home-hero-copy > * { animation: heroCopyIn .72s cubic-bezier(.2,.72,.25,1) both; }
.home-hero-copy > *:nth-child(2) { animation-delay: 90ms; }
.home-hero-copy > *:nth-child(3) { animation-delay: 170ms; }
.home-hero-copy > *:nth-child(4) { animation-delay: 240ms; }

@keyframes selectedCardPulse { 0% { transform: scale(.985); } 65% { transform: scale(1.012); } 100% { transform: scale(1); } }
@keyframes detailReveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes headerArrive { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes previewItemIn { from { opacity: 0; transform: translateY(10px) scale(.92); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes cartCountPop { 0% { transform: scale(.6); } 70% { transform: scale(1.18); } 100% { transform: scale(1); } }
@keyframes heroCopyIn { from { opacity: 0; transform: translateY(22px); filter: blur(5px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .sequence-hero { height: 100svh; }
  .sequence-hero-sticky { position: relative; }
  .sequence-status { display: none; }
  .sequence-hero-copy { opacity: 1; }
  .motion-reveal { opacity: 1; transform: none; }
}
