:root {
  --white: #FFFFFF;
  --clean-white: #FBF7F4;
  --soft-white: #F8F8F6;
  --ink: #080808;
  --ink-soft: #34302D;
  --crimson: #8B0015;
  --dark-crimson: #5E000E;
  --gold: #CBA24A;
  --gold-soft: #D6B766;
  --gold-pale: #E8D7AE;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  color: var(--ink);
  font-family: "Jost", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  overflow-x: hidden;
}

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

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.site-header,
main {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 224px 1fr auto;
  align-items: center;
  min-height: 88px;
  padding: 16px 48px 8px;
  background: var(--white);
}

.brand {
  display: grid;
  width: 136px;
  justify-items: center;
  color: var(--dark-crimson);
  line-height: 1;
}

.brand-main {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 0;
}

.brand-rule {
  width: 104px;
  height: 1px;
  margin: -2px 0 4px;
  background: var(--gold-soft);
}

.brand-sub {
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 48px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav .active {
  color: var(--dark-crimson);
}

.main-nav .active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--dark-crimson);
  content: "";
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.book-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.book-button {
  gap: 8px;
  width: 112px;
  color: var(--white);
  background: var(--dark-crimson);
  box-shadow: 0 4px 16px rgba(8, 8, 8, 0.18);
}

.book-button svg {
  width: 16px;
  height: 16px;
}

.icon-link {
  position: relative;
  display: grid;
  width: 24px;
  height: 48px;
  place-items: center;
  color: var(--ink);
}

.icon-link svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.bag-count {
  position: absolute;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--dark-crimson);
  font-size: 10px;
  line-height: 1;
}

.bag-count.top {
  top: 4px;
  right: -8px;
}

.bag-count.side {
  right: -8px;
  bottom: 8px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 44% 56%;
  width: min(100%, 1440px);
  min-height: 660px;
  margin: 0 auto;
  padding: 58px 40px 68px 56px;
  overflow: hidden;
  background: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 18px;
  min-width: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.breadcrumb span {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.breadcrumb b {
  color: var(--ink);
  font-weight: 400;
}

.hero h1 {
  max-width: 608px;
  margin: 0 0 38px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(56px, 5vw, 80px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 em {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  color: var(--dark-crimson);
  font-style: italic;
}

.hero-copy p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
}

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

.button {
  min-width: 244px;
  padding: 0 32px;
  border: 1px solid var(--gold);
  gap: 24px;
}

.button.primary {
  color: var(--white);
  background: var(--crimson);
  border-color: var(--crimson);
  box-shadow: 0 4px 16px rgba(8, 8, 8, 0.16);
}

.button.secondary {
  color: var(--dark-crimson);
  background: var(--white);
}

.button.gold {
  min-width: 264px;
  color: var(--ink);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.hero-media {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 62%;
  height: auto;
  overflow: hidden;
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 34%;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.74) 44%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% top;
}

.gold-scribble {
  position: absolute;
  z-index: 1;
  display: block;
  width: 176px;
  height: 30px;
  right: -8px;
  bottom: -25px;
  margin: 0;
  border-bottom: 2px solid var(--gold);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.gold-scribble::after {
  position: absolute;
  right: -34px;
  bottom: -6px;
  color: var(--gold);
  content: "♥";
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  transform: rotate(18deg);
}

.hero-badge {
  position: absolute;
  right: clamp(24px, 4vw, 56px);
  bottom: 50px;
  z-index: 2;
  display: grid;
  width: 168px;
  height: 168px;
  place-items: center;
  padding: 24px 16px 16px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--white);
  background: var(--dark-crimson);
  text-align: center;
}

.hero-badge span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

.hero-badge p {
  margin: -8px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.hero-badge b {
  color: var(--gold-soft);
  font-size: 16px;
  line-height: 1;
}

.trust-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  width: min(100%, 520px);
  margin: 26px 0 0;
  padding: 0;
  background: transparent;
}

.trust-item {
  display: grid;
  grid-template-columns: 24px auto;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: var(--gold);
}

.trust-item + .trust-item {
  padding-left: 10px;
  border-left: 1px solid var(--gold-pale);
}

.trust-item svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.25;
}

.trust-item span {
  color: var(--gold);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 1.15;
  text-transform: uppercase;
}

.ritual-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 352px 1fr;
  align-items: center;
  gap: 32px;
  width: min(100% - 112px, 1160px);
  min-height: 148px;
  margin: -28px 0 56px 56px;
  padding: 18px 34px 18px 52px;
  border-radius: 64px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(8, 8, 8, 0.14);
}

.ritual-bar h2 {
  margin: 0;
  color: var(--dark-crimson);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.02;
}

.ritual-bar h2 span {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-size: 42px;
}

.ritual-bar ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ritual-bar li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 112px;
  color: var(--dark-crimson);
  text-align: center;
}

.ritual-bar li + li::before {
  position: absolute;
  top: 40px;
  left: -10px;
  color: var(--dark-crimson);
  content: "›";
  font-size: 28px;
  line-height: 1;
}

.ritual-bar svg {
  width: 44px;
  height: 44px;
  color: var(--dark-crimson);
  stroke-width: 1.2;
}

.ritual-bar strong {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.ritual-bar li span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 300;
}

.section-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 0 44px 32px;
}

.section-title span {
  height: 1px;
  background: var(--gold-pale);
}

.section-title h2 {
  margin: 0;
  color: var(--dark-crimson);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 6px;
  line-height: 1;
  text-transform: uppercase;
}

.categories {
  margin-top: 0;
}

.categories .section-title {
  width: auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  width: auto;
  padding: 0 44px 56px;
}

.category-tile {
  position: relative;
  display: grid;
  min-height: 280px;
  align-content: end;
  justify-items: center;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  text-align: center;
  box-shadow: 0 6px 16px rgba(8, 8, 8, 0.18);
}

.category-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.04) 0%, rgba(8, 8, 8, 0.58) 100%);
  content: "";
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.category-tile span,
.category-tile small {
  position: relative;
  z-index: 1;
}

.category-tile span {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: uppercase;
}

.category-tile small {
  margin: 4px 0 16px;
  font-size: 14px;
  font-weight: 300;
}

.cta-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: calc(100% - 88px);
  min-height: 284px;
  align-items: center;
  margin: 0 44px 72px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(90deg, #790014 0%, #790014 62%, #8b1021 100%);
  text-align: center;
  box-shadow: 0 8px 22px rgba(8, 8, 8, 0.12);
}

.cta-card img{position:absolute;right:0;top:0;bottom:0;width:min(46%,460px);height:100%;object-fit:cover;object-position:center right;opacity:.9;-webkit-mask-image:linear-gradient(90deg,transparent 0,#000 42%,#000 100%);mask-image:linear-gradient(90deg,transparent 0,#000 42%,#000 100%);}
.cta-card div{position:relative;z-index:1;display:grid;justify-items:center;justify-self:start;width:min(62%,640px);padding:42px 32px;}

.cta-card h2 {
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
}

.cta-card h2::after {
  display: block;
  width: 160px;
  height: 16px;
  margin: -8px auto 0;
  border-bottom: 2px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.cta-card p {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}

/* "Join the List" capture (real /api/subscribe, LMB-isolated) */
.cta-join {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 440px;
}
.cta-join input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 13px 16px;
  border: 1px solid #CBA24A;
  border-radius: 2px;
  background: #FFFFFF;
  color: #34302D;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  outline: none;
}
.cta-join button {
  padding: 13px 22px;
  border: 0;
  border-radius: 2px;
  background: #CBA24A;
  color: #3a2a07;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.cta-join button:disabled { opacity: .6; cursor: default; }
.cta-join__msg {
  flex-basis: 100%;
  margin: 8px 0 0;
  min-height: 1em;
  font-size: 13px;
  font-weight: 300;
  color: #FFFFFF;
}
.cta-join__msg.is-err { color: #ffd9d9; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.text-link {
  margin-top: 16px;
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.best-sellers {
  padding-top: 0;
  margin-bottom: 56px;
}

.seller-wrap {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
  padding: 0 44px 56px;
}

.seller-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(176px, 1fr));
  gap: 12px;
}

.arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--crimson);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(8, 8, 8, 0.12);
  cursor: default;
}

.arrow svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.product-card {
  display: grid;
  grid-template-rows: 216px 1fr;
  gap: 18px;
  min-height: 360px;
  align-items: start;
  padding: 24px 20px 22px;
  border-radius: 8px;
  background: var(--soft-white);
}

.product-card img {
  align-self: center;
  justify-self: center;
  width: auto;
  max-width: 88%;
  height: auto;
  max-height: 186px;
  object-fit: contain;
}

.product-card h3,
.product-card p,
.product-card strong {
  margin: 0;
}

.product-card h3 {
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.product-card p {
  margin-top: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.25;
}

.rating {
  margin-top: 8px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

.rating span {
  color: var(--ink);
  letter-spacing: 0;
}

.product-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0 44px 24px;
  padding: 20px 24px;
  border-radius: 8px;
  background: var(--clean-white);
}

.benefit {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  color: var(--gold);
}

.benefit + .benefit {
  padding-left: 24px;
  border-left: 1px solid var(--gold-pale);
}

.benefit svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.25;
}

.benefit strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.benefit span {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.25;
}

.footer-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 44px 36px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.footer-bridge::before,
.footer-bridge::after {
  width: min(120px, 18vw);
  height: 1px;
  background: var(--gold-pale);
  content: "";
}

.footer-bridge a {
  padding: 8px 0;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 16px 24px;
  }

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero-media {
    position: relative;
    width: 100%;
    height: 360px;
    margin-top: 24px;
    border-radius: 8px;
  }

  .hero-media::before {
    display: none;
  }

  .hero-badge {
    right: 48px;
    bottom: 40px;
  }

  .ritual-bar {
    margin: 24px;
  }

  .trust-strip {
    margin: 24px 0 0;
  }

  .ritual-bar {
    width: auto;
    grid-template-columns: 1fr;
    border-radius: 32px;
    padding: 24px;
  }

  .cta-card {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin: 0 44px 24px;
  }

  .category-grid,
  .seller-row,
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories .section-title,
  .category-grid {
    width: auto;
  }

  .category-grid {
    padding-right: 44px;
  }

  .seller-wrap {
    grid-template-columns: 1fr;
  }

  .arrow {
    display: none;
  }

  .benefit + .benefit {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 16px;
    overflow: hidden;
  }

  .brand-main {
    font-size: 48px;
  }

  .header-actions {
    position: absolute;
    top: 24px;
    right: auto;
    left: clamp(184px, calc(100vw - 112px), 248px);
    margin-left: 0;
    gap: 0;
  }

  .header-actions .icon-link,
  .header-actions .icon-link[aria-label="Account"],
  .header-actions .bag-link {
    display: none;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    overflow-x: visible;
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .book-button {
    width: 96px;
  }

  .hero {
    padding: 16px;
  }

  .breadcrumb {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 44px;
    margin-bottom: 32px;
  }

  .hero h1 em {
    padding-left: 8px;
  }

  .gold-scribble {
    right: -2px;
    bottom: -21px;
    width: 126px;
    height: 24px;
  }

  .gold-scribble::after {
    right: -26px;
    bottom: -5px;
    font-size: 24px;
  }

  .hero-copy p {
    max-width: min(100%, 360px);
    font-size: 16px;
    overflow-wrap: normal;
  }

  .hero-copy p br {
    display: block;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero-media {
    height: 280px;
    max-width: 360px;
  }

  .hero-badge {
    width: 136px;
    height: 136px;
    right: 14px;
    left: auto;
    bottom: 24px;
  }

  .hero-badge span {
    font-size: 24px;
  }

  .hero-badge p {
    font-size: 16px;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 0;
    margin: 18px 0 0;
  }

  .trust-item + .trust-item {
    border-left: 0;
    padding-left: 0;
  }

  .ritual-bar {
    margin: 16px;
    border-radius: 24px;
  }

  .ritual-bar ol,
  .category-grid,
  .seller-row,
  .benefits {
    grid-template-columns: 1fr;
  }

  .ritual-bar li + li::before {
    display: none;
  }

  .section-title {
    margin: 16px;
    gap: 16px;
  }

  .section-title h2 {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .category-grid,
  .seller-wrap {
    padding: 0 16px 24px;
  }

  .cta-card {
    margin: 0 16px 24px;
    min-height: 246px;
  }

  .cta-card img {
    width: 92px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 42%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 42%, #000 100%);
  }

  .cta-card div {
    width: calc(100% - 92px);
    padding: 32px 18px;
  }

  .product-card {
    grid-template-columns: 1fr;
    grid-template-rows: 188px 1fr;
    min-height: 320px;
  }

  .product-card img {
    max-height: 168px;
  }

  .benefits {
    margin: 0 16px 24px;
  }

  .footer-bridge {
    margin: 0 16px 28px;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 1.4px;
  }
}
