:root {
  color-scheme: light;
  --shell: 430px;
  --black: #050505;
  --ink: #090909;
  --muted: #76716a;
  --line: #ded8cf;
  --soft: #f5f1eb;
  --cream: #ebe3d7;
  --gold: #b89567;
  --red: #b80018;
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
  font-family: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  background: #d4d0ca;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select { font: inherit; }

button { cursor: pointer; }

button,
a { -webkit-tap-highlight-color: transparent; }

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #111;
}

.mobile-shell {
  position: relative;
  width: min(100%, var(--shell));
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 28px rgba(0, 0, 0, .22);
}

.top-promo {
  min-height: 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--black);
  color: #fff;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.top-promo strong {
  color: #f3cf9d;
  font-size: 11px;
  letter-spacing: .16em;
}

.top-promo span:last-child { text-align: right; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 58px;
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  backdrop-filter: blur(16px);
}

.wordmark {
  color: #000;
  text-decoration: none;
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 33px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.09em;
}

.icon-button {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  color: #000;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 3px 0;
  background: #000;
}

.icon-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bag-button { position: relative; justify-self: end; }

.bag-button span {
  position: absolute;
  top: 7px;
  right: 5px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 9px;
  line-height: 16px;
  text-align: center;
}

.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: max(0px, calc(50% - (var(--shell) / 2)));
  z-index: 100;
  width: min(86vw, 360px);
  padding: 78px 24px 24px;
  transform: translateX(calc(-100% - max(0px, calc((100vw - var(--shell)) / 2))));
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .24s ease;
}

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

.drawer a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid #ece7df;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .02em;
}

.drawer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 34px;
}

.pill-nav {
  position: sticky;
  top: 58px;
  z-index: 50;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 9px 12px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid #ece7df;
  scrollbar-width: none;
}

.pill-nav::-webkit-scrollbar { display: none; }

.pill-nav button {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid #d8d0c4;
  border-radius: 999px;
  background: #fff;
  padding: 0 16px;
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pill-nav button.is-active {
  background: #000;
  border-color: #000;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 610px;
  background: #080808;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .34) 43%, rgba(0, 0, 0, .88));
}

.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0 22px 34px;
  color: #fff;
  text-align: center;
}

.hero-copy p,
.section-head p,
.editorial p {
  margin: 0 0 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 42px;
  line-height: .92;
  letter-spacing: -.06em;
}

.hero-copy span {
  display: block;
  max-width: 320px;
  margin: 14px auto 20px;
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  line-height: 1.55;
}

.hero-copy button,
.countdown-panel button,
.editorial button,
.sticky-cta,
.submit-button {
  min-height: 48px;
  border: 0;
  background: #fff;
  color: #000;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.countdown-panel {
  display: grid;
  grid-template-columns: 1fr 104px;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #000;
  color: #fff;
}

.countdown-panel p {
  margin: 0 0 2px;
  color: #c8b99f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.countdown-panel strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  letter-spacing: .05em;
}

.countdown-panel button {
  min-height: 42px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #ebe5dc;
  background: #fbfaf8;
}

.trust-strip article {
  min-height: 86px;
  padding: 14px 10px;
  border-right: 1px solid #ebe5dc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.trust-strip article:last-child { border-right: 0; }

.trust-strip strong {
  font-size: 15px;
  letter-spacing: .08em;
}

.trust-strip span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.editorial {
  display: grid;
  grid-template-columns: 1fr;
}

.editorial img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  display: block;
}

.editorial div { padding: 28px 22px 32px; }

.editorial-dark {
  background: #070707;
  color: #fff;
}

.editorial-light {
  background: var(--cream);
  color: #000;
}

.editorial h2,
.section-head h2,
.reviews h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 31px;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.editorial span {
  display: block;
  margin-top: 12px;
  color: currentColor;
  opacity: .72;
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: 28px 14px 8px;
  background: #fff;
}

.section-head {
  padding: 0 5px 16px;
}

.section-head h2 { font-size: 34px; }

.feature-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.feature-rail::-webkit-scrollbar { display: none; }

.feature-card {
  flex: 0 0 72%;
  scroll-snap-align: start;
  background: #f7f4ef;
}

.feature-card button,
.product-card button {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  padding: 0;
}

.feature-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  display: block;
  padding: 18px;
}

.feature-card span {
  display: inline-flex;
  margin: 0 14px 6px;
  padding: 5px 8px;
  background: #000;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.feature-card strong {
  display: block;
  padding: 0 14px 16px;
  font-size: 18px;
  line-height: 1.1;
}

.product-section { padding-bottom: 22px; }

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

.product-card {
  min-width: 0;
  background: #fff;
  border: 1px solid #eee8df;
  transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:active { transform: scale(.985); }

.product-media {
  position: relative;
  height: 188px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f8f5ef, #eee7dc);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform .2s ease;
}

.product-card:active .product-media img { transform: scale(1.04); }

.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  background: #000;
  color: #fff;
  padding: 5px 7px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
}

.product-info { padding: 12px 10px 13px; }

.rating {
  margin-bottom: 5px;
  color: #9a7449;
  font-size: 10px;
  font-weight: 800;
}

.product-info h3 {
  min-height: 38px;
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.18;
  text-transform: uppercase;
}

.product-info p {
  min-height: 46px;
  margin: 0 0 9px;
  color: #706a62;
  font-size: 10.5px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.price-row strong {
  color: var(--red);
  font-size: 17px;
  line-height: 1;
}

.price-row s {
  color: #8d867e;
  font-size: 11px;
}

.price-row em {
  font-style: normal;
  color: #000;
  font-size: 10px;
  font-weight: 800;
}

.product-cta {
  display: block;
  margin-top: 10px;
  min-height: 34px;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 34px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.reviews {
  padding: 30px 18px 34px;
  background: #f7f2ea;
}

.reviews article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid #ded3c3;
}

.reviews article strong {
  font-size: 24px;
  font-family: Georgia, 'Times New Roman', serif;
}

.reviews article span {
  color: #5f574c;
  font-size: 13px;
  line-height: 1.5;
}

.footer {
  padding: 32px 20px 96px;
  background: #030303;
  color: #fff;
  text-align: center;
}

.footer-logo {
  display: block;
  margin-bottom: 14px;
  color: #fff;
}

.footer p {
  margin: 0 auto 18px;
  max-width: 300px;
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
}

.footer div {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer a {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
}

.sticky-cta {
  position: fixed;
  left: max(10px, calc(50% - (var(--shell) / 2) + 12px));
  right: max(10px, calc(50% - (var(--shell) / 2) + 12px));
  bottom: 12px;
  z-index: 65;
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-radius: 0;
  background: #b80018;
  color: #fff;
  box-shadow: 0 16px 34px rgba(184, 0, 24, .28);
  animation: ctaPulse 1.6s ease-in-out infinite;
}

.sticky-cta span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.sticky-cta strong { font-size: 13px; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: end;
  justify-content: center;
}

.modal.is-open { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .58);
}

.order-sheet {
  position: relative;
  width: min(100%, var(--shell));
  max-height: min(92vh, 760px);
  overflow-y: auto;
  background: #fff;
  padding: 12px 14px calc(16px + env(safe-area-inset-bottom));
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.modal-product {
  min-height: 166px;
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 44px 12px 10px;
  background: linear-gradient(135deg, #f7f2ea, #ebe0d2);
  border: 1px solid #ded2c2;
}

.modal-media {
  height: 142px;
  display: grid;
  place-items: center;
}

.modal-media img {
  max-width: 100%;
  max-height: 142px;
  object-fit: contain;
  display: block;
}

.modal-copy p {
  margin: 0 0 5px;
  color: #9b7449;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.modal-copy h2 {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.12;
  text-transform: uppercase;
}

.modal-copy span {
  display: block;
  color: #676057;
  font-size: 11px;
  line-height: 1.35;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
}

.price-line strong {
  color: var(--red);
  font-size: 20px;
}

.price-line s {
  color: #8b8379;
  font-size: 12px;
}

.scarcity {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 3px 8px;
  color: #9b8976;
  font-size: 11px;
}

.scarcity strong {
  color: var(--red);
}

.order-form {
  display: grid;
  gap: 8px;
}

.order-form input,
.order-form select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #cfc7bd;
  border-radius: 0;
  background: #fff;
  color: #111;
  padding: 0 12px;
  font-size: 16px;
}

.order-form input::placeholder {
  color: #b9b2aa;
  font-size: 13px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 112px;
  gap: 8px;
}

.qty-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.qty-row label {
  min-width: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d9d0c5;
  background: #fff;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
}

.qty-row input {
  width: 15px;
  min-height: 15px;
  padding: 0;
  accent-color: #000;
}

.submit-button {
  width: 100%;
  min-height: 52px;
  background: #b80018;
  color: #fff;
  margin-top: 2px;
  animation: ctaPulse 1.3s ease-in-out infinite;
}

.submit-button[disabled] {
  opacity: .6;
  animation: none;
}

.form-note {
  margin: 0;
  color: #645c54;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

@media (max-width: 360px) {
  .product-grid { gap: 8px; }
  .product-media { height: 168px; }
  .modal-product { grid-template-columns: 118px 1fr; padding-right: 42px; }
  .modal-media { height: 126px; }
  .modal-media img { max-height: 126px; }
  .qty-row label { padding: 0 8px; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
