:root {
  --ink: #171412;
  --paper: #f3eee6;
  --paper-deep: #e8ded2;
  --surface: #fbf8f3;
  --line: rgba(23, 20, 18, 0.18);
  --muted: #6d655e;
  --wine: #7f2f32;
  --white: #fffdf8;
  --display: "Bodoni 72", Didot, "Times New Roman", serif;
  --body: "Avenir Next", Avenir, "Century Gothic", sans-serif;
  --shadow: 0 30px 80px rgba(26, 20, 16, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 15px;
}

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

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

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

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

button,
select {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  position: relative;
  z-index: 20;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 6px 24px;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement strong {
  color: #dcc0a8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 18;
  background: rgba(243, 238, 230, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1500px, 100%);
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(140px, 0.75fr) minmax(620px, 1.7fr) minmax(140px, 0.75fr);
  align-items: center;
  margin: 0 auto;
  padding: 0 34px;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: 0.08em;
}

.brand small {
  font-family: var(--body);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
}

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

.desktop-nav > a,
.nav-group > button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav > a::after,
.nav-group > button::after {
  content: "";
  position: absolute;
  inset: auto 0 7px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 220ms ease;
}

.desktop-nav > a,
.nav-group > button {
  position: relative;
}

.desktop-nav > a:hover::after,
.nav-group > button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav .sale-link {
  color: var(--wine);
}

.nav-group {
  position: relative;
}

.nav-group svg {
  width: 14px;
}

.mega-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: min(820px, calc(100vw - 60px));
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 38px;
  padding: 30px;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 180ms ease;
}

.nav-group:hover .mega-panel,
.nav-group:focus-within .mega-panel {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-panel section > p,
.site-footer nav > p,
.newsletter > p {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mega-panel section a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 13px;
}

.mega-panel section a:hover {
  color: var(--wine);
}

.mega-feature {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.mega-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.mega-feature:hover img {
  transform: scale(1.035);
}

.mega-feature span {
  position: absolute;
  inset: auto 12px 12px;
  padding: 11px 12px;
  background: rgba(255, 253, 248, 0.9);
  font-family: var(--display);
  font-size: 20px;
}

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

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
}

.icon-button:hover {
  border-color: var(--line);
}

.icon-button svg,
.benefits svg,
.drawer-note svg,
.secure-note svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.55;
}

.cart-button {
  position: relative;
}

.cart-count {
  position: absolute;
  top: 5px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  background: var(--wine);
  color: var(--white);
  font-size: 9px;
}

.menu-trigger {
  display: none;
}

.search-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 220ms ease;
}

.search-panel.open {
  grid-template-rows: 1fr;
}

.search-panel > div {
  min-height: 0;
  width: min(900px, calc(100% - 40px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
}

.search-panel.open > div {
  padding: 14px 0 18px;
}

.search-panel label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.search-panel input {
  min-height: 46px;
  padding: 0 14px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-family: var(--display);
  font-size: 21px;
}

.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 24;
  opacity: 0;
  visibility: hidden;
  background: rgba(16, 13, 11, 0.42);
  backdrop-filter: blur(3px);
  transition: 220ms ease;
}

.page-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer,
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  width: min(470px, 94vw);
  height: 100svh;
  transform: translateX(105%);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 260ms cubic-bezier(0.65, 0, 0.35, 1);
}

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

.drawer-head {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 26px;
}

.drawer-head small {
  color: var(--muted);
  font-family: var(--body);
  font-size: 12px;
}

.drawer-kicker {
  margin: 28px 24px 10px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-drawer nav {
  padding: 0 24px;
}

.mobile-drawer nav > a,
.mobile-drawer summary {
  display: block;
  min-height: 52px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 24px;
  list-style: none;
}

.mobile-drawer details a {
  display: block;
  min-height: 44px;
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.drawer-note {
  position: absolute;
  inset: auto 24px 26px;
  display: flex;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.hero {
  min-height: calc(100svh - 108px);
  display: grid;
  grid-template-columns: 39% 43% 18%;
  background: var(--paper-deep);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(30px, 4vw, 72px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.story-copy h2,
.campaign h2,
.footer-lead h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero h1 {
  font-size: clamp(68px, 7.4vw, 124px);
  line-height: 0.76;
  white-space: nowrap;
}

.hero h1 em {
  display: inline-block;
  margin-left: 0.42em;
  color: var(--wine);
  font-weight: 400;
}

.hero-description {
  max-width: 440px;
  margin: 38px 0 0;
  color: #4f4843;
  font-family: var(--display);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 0 26px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  border-color: var(--wine);
  background: var(--wine);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-link svg {
  width: 16px;
}

.hero-index,
.review-controls {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 10px;
}

.hero-index {
  position: absolute;
  inset: auto clamp(30px, 4vw, 72px) 32px;
}

.hero-index span:nth-child(2),
.review-controls span:nth-child(2) {
  width: 56px;
  height: 1px;
  background: currentColor;
}

.hero-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02);
  animation: reveal-image 900ms ease-out both;
}

.hero-image-main img {
  object-position: center 22%;
}

.hero-image-detail {
  border-left: 12px solid var(--paper-deep);
}

.hero-image-detail img {
  object-position: 45% center;
}

.image-caption {
  position: absolute;
  inset: auto 14px 14px;
  padding: 9px 12px;
  background: rgba(243, 238, 230, 0.9);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes reveal-image {
  from { transform: scale(1.05); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.benefits div {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-right: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefits div:last-child {
  border-right: 0;
}

.section-shell {
  width: min(1460px, 100%);
  margin: 0 auto;
  padding: clamp(80px, 9vw, 138px) clamp(24px, 4vw, 58px);
}

.section-intro {
  margin-bottom: 42px;
}

.section-intro h2,
.story-copy h2,
.campaign h2,
.footer-lead h2 {
  font-size: clamp(48px, 5vw, 82px);
  line-height: 0.98;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  align-items: end;
  gap: 40px;
}

.split-heading > p {
  max-width: 410px;
  margin: 0 0 5px auto;
  color: var(--muted);
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.55;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  grid-template-rows: 360px 360px;
  gap: 14px;
}

.category-card {
  position: relative;
  overflow: hidden;
  background: #d7cec3;
}

.category-card:first-child {
  grid-row: 1 / 3;
}

.category-card:nth-child(4) {
  grid-column: 2 / 4;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.category-card:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 14, 12, 0.56));
}

.category-card div {
  position: absolute;
  z-index: 1;
  inset: auto 22px 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: var(--white);
}

.category-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 48px);
  font-weight: 400;
}

.category-card span {
  margin-bottom: 6px;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.editorial-story {
  min-height: 780px;
  display: grid;
  grid-template-columns: 58% 42%;
  background: var(--ink);
  color: var(--white);
}

.story-image {
  position: relative;
  min-height: 720px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.08);
}

.story-image span {
  position: absolute;
  top: 28px;
  left: 28px;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 110px);
}

.story-copy .eyebrow {
  color: #d1a893;
}

.story-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 34px 0;
  color: #c9c0b9;
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.65;
}

.story-links {
  display: grid;
}

.story-links button {
  min-height: 56px;
  display: flex;
  align-items: center;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--white);
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: padding 180ms ease, color 180ms ease;
}

.story-links button:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.story-links button:hover {
  padding-left: 12px;
  color: #d1a893;
}

.product-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.product-heading > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-toolbar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.filter-row button {
  min-height: 44px;
  padding: 0 15px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-row button:hover,
.filter-row button.active {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sort-control select {
  min-height: 44px;
  padding: 0 30px 0 10px;
  border: 0;
  background: transparent;
  font-size: 11px;
}

.active-filter {
  align-items: center;
  justify-content: space-between;
  margin: -8px 0 24px;
  padding: 12px 15px;
  background: var(--paper-deep);
  font-size: 11px;
}

.active-filter:not([hidden]) {
  display: flex;
}

.active-filter button {
  min-height: 36px;
  border: 0;
  background: transparent;
  text-decoration: underline;
}

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

.product-card {
  position: relative;
  min-width: 0;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5.35;
  overflow: hidden;
  background: #ddd3c8;
}

.product-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.product-card:hover .product-media > img {
  transform: scale(1.025);
  filter: saturate(1);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 9px;
  background: rgba(251, 248, 243, 0.9);
  color: var(--ink);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  border-radius: 50%;
  background: rgba(251, 248, 243, 0.85);
}

.wishlist.saved {
  background: var(--wine);
  color: var(--white);
}

.quick-button {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  min-height: 48px;
  transform: translateY(15px);
  opacity: 0;
  border: 0;
  background: rgba(251, 248, 243, 0.94);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.product-card:hover .quick-button,
.product-card:focus-within .quick-button {
  transform: translateY(0);
  opacity: 1;
}

.product-info {
  padding-top: 13px;
}

.product-meta {
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}

.swatches {
  display: flex;
  align-items: center;
  gap: 6px;
}

.swatch {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 50%;
}

.product-category {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-title {
  min-height: 42px;
  margin: 0 0 9px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.25;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
}

.price {
  font-weight: 700;
}

.compare {
  color: var(--muted);
  text-decoration: line-through;
}

.no-results {
  grid-column: 1 / -1;
  min-height: 300px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--display);
  font-size: 25px;
  text-align: center;
}

.campaign {
  position: relative;
  min-height: 780px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.campaign > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.75) contrast(1.05);
}

.campaign::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 13, 10, 0.65), rgba(20, 13, 10, 0.16) 65%);
}

.campaign-copy {
  position: relative;
  z-index: 1;
  width: min(660px, calc(100% - 48px));
  margin-right: min(34vw, 520px);
}

.campaign-copy .eyebrow {
  color: #ead2c1;
}

.campaign-copy > p:not(.eyebrow) {
  margin: 24px 0;
  font-family: var(--display);
  font-size: 20px;
}

.campaign-timer {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 94px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.campaign-timer span {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 9px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.campaign-timer span:last-child {
  border-right: 0;
}

.campaign-timer strong {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
}

.review-section {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
  align-items: center;
}

.review-score strong {
  display: block;
  font-family: var(--display);
  font-size: 90px;
  font-weight: 400;
  line-height: 1;
}

.review-score span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-section blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.28;
}

.review-section blockquote footer {
  margin-top: 26px;
  font-family: var(--body);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-section blockquote footer span {
  margin-left: 12px;
  color: var(--wine);
}

.review-controls {
  grid-column: 2;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.55fr 1fr;
  gap: 50px;
  padding: 86px clamp(24px, 4vw, 58px) 26px;
  background: var(--ink);
  color: var(--white);
}

.footer-lead h2 {
  margin-top: 40px;
  color: #d8c8bb;
  font-size: clamp(38px, 3.7vw, 62px);
}

.site-footer nav a {
  min-height: 35px;
  display: block;
  padding: 6px 0;
  color: #aaa19b;
  font-size: 12px;
}

.site-footer nav a:hover {
  color: var(--white);
}

.newsletter h3 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.35;
}

.newsletter label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter > div {
  display: grid;
  grid-template-columns: 1fr 52px;
  border-bottom: 1px solid #827873;
}

.newsletter input {
  min-height: 52px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 16px;
}

.newsletter input::placeholder {
  color: #827873;
}

.newsletter button {
  border: 0;
  background: transparent;
  color: var(--white);
}

.newsletter small {
  display: block;
  margin-top: 13px;
  color: #827873;
  font-size: 9px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid #403a37;
  color: #827873;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom > span:last-child {
  text-align: right;
}

.cart-drawer {
  display: flex;
  flex-direction: column;
}

.shipping-progress {
  padding: 17px 24px 20px;
  border-bottom: 1px solid var(--line);
}

.shipping-progress p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.shipping-progress > span {
  height: 3px;
  display: block;
  overflow: hidden;
  background: #dfd7ce;
}

.shipping-progress i {
  width: 0;
  height: 100%;
  display: block;
  background: var(--wine);
  transition: width 220ms ease;
}

.cart-items {
  display: grid;
  gap: 1px;
  overflow-y: auto;
  background: var(--line);
}

.cart-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 17px 24px;
  background: var(--surface);
}

.cart-item img {
  width: 82px;
  height: 108px;
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.cart-item > strong {
  font-size: 11px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.qty {
  display: grid;
  grid-template-columns: 32px 28px 32px;
  align-items: center;
  border: 1px solid var(--line);
}

.qty button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
}

.qty span {
  text-align: center;
  font-size: 10px;
}

.remove-item {
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 9px;
  text-decoration: underline;
}

.cart-empty {
  flex: 1;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 40px 24px;
  text-align: center;
}

.cart-empty svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.2;
}

.cart-empty h2 {
  margin: 20px 0 8px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
}

.cart-empty p {
  margin: 0 0 24px;
  color: var(--muted);
}

.cart-summary {
  margin-top: auto;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.promo-form label {
  display: block;
  margin-bottom: 7px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.promo-form input,
.promo-form button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: transparent;
}

.promo-form input {
  padding: 0 11px;
}

.promo-form button {
  padding: 0 16px;
  border-left: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-form > p {
  min-height: 16px;
  margin: 5px 0 0;
  color: var(--wine);
  font-size: 10px;
}

.cart-totals {
  display: grid;
  gap: 10px;
  margin: 10px 0 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cart-totals > div {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.cart-total-row {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 18px !important;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.secure-note svg {
  width: 13px;
}

.quick-view {
  width: min(1020px, calc(100vw - 32px));
  max-height: min(740px, calc(100svh - 32px));
  padding: 0;
  overflow: visible;
  border: 0;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quick-view::backdrop {
  background: rgba(16, 13, 11, 0.58);
  backdrop-filter: blur(3px);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  background: var(--surface);
}

.modal-content {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  max-height: inherit;
  overflow: auto;
}

.modal-content > img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 66px);
}

.modal-copy > .eyebrow {
  margin-bottom: 11px;
}

.modal-copy h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 400;
  line-height: 1.02;
}

.modal-description {
  margin: 22px 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.6;
}

.option-group {
  margin-top: 20px;
}

.option-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.option-heading button {
  min-height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: underline;
}

.size-row,
.color-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-row button,
.color-choice {
  min-width: 46px;
  min-height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 10px;
}

.size-row button.active,
.color-choice.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.color-choice {
  min-width: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
}

.color-choice i {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.modal-add {
  margin-top: 28px;
}

.modal-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.modal-trust span {
  padding: 10px;
  border: 1px solid var(--line);
}

.toast {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  max-width: min(380px, calc(100vw - 48px));
  transform: translateY(18px);
  opacity: 0;
  visibility: hidden;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 11px;
  transition: 180ms ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

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

  .desktop-nav {
    display: none;
  }

  .menu-trigger {
    display: inline-grid;
    margin-left: -10px;
  }

  .brand {
    justify-self: center;
  }

  .hero {
    grid-template-columns: 47% 53%;
  }

  .hero-image-detail {
    display: none;
  }

  .hero h1 {
    font-size: clamp(62px, 8vw, 98px);
    white-space: normal;
  }

  .category-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .category-card:nth-child(4) {
    grid-column: 2;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1.2fr 0.6fr 0.6fr;
  }

  .newsletter {
    grid-column: 1 / -1;
    max-width: 620px;
  }
}

@media (max-width: 800px) {
  .announcement {
    min-height: 30px;
    padding-inline: 12px;
  }

  .announcement-secondary {
    display: none;
  }

  .nav-shell {
    min-height: 64px;
    padding: 0 14px;
  }

  .brand {
    font-size: 23px;
  }

  .account-button {
    display: none;
  }

  .search-panel > div {
    grid-template-columns: 1fr auto;
  }

  .search-panel label {
    display: none;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  .hero-image-main {
    height: 68svh;
    min-height: 520px;
  }

  .hero-image-main::after {
    content: "";
    position: absolute;
    inset: 40% 0 0;
    background: linear-gradient(transparent, rgba(20, 13, 10, 0.52));
  }

  .hero-copy {
    min-height: 470px;
    padding: 52px 24px 72px;
  }

  .hero h1 {
    font-size: clamp(64px, 22vw, 94px);
    line-height: 0.8;
  }

  .hero h1 em {
    margin-left: 0.12em;
  }

  .hero-description {
    margin-top: 28px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
  }

  .hero-index {
    bottom: 22px;
  }

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

  .benefits div {
    min-height: 68px;
    justify-content: flex-start;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    font-size: 8px;
  }

  .section-shell {
    padding: 72px 18px;
  }

  .split-heading,
  .review-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-heading > p {
    margin: 0;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 420px 320px 320px;
    gap: 8px;
  }

  .category-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .category-card:nth-child(4) {
    grid-column: 1 / -1;
  }

  .category-card h3 {
    font-size: 30px;
  }

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

  .story-image {
    min-height: 560px;
  }

  .story-copy {
    padding: 70px 24px;
  }

  .product-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-toolbar {
    align-items: stretch;
    flex-direction: column;
    padding: 8px 0 12px;
  }

  .filter-row {
    overflow-x: auto;
    margin-right: -18px;
    padding-right: 18px;
  }

  .filter-row button {
    flex: 0 0 auto;
  }

  .sort-control {
    justify-content: space-between;
  }

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

  .product-title {
    min-height: 54px;
    font-size: 15px;
  }

  .quick-button {
    transform: none;
    opacity: 1;
  }

  .campaign {
    min-height: 720px;
    place-items: end start;
  }

  .campaign::after {
    background: linear-gradient(0deg, rgba(20, 13, 10, 0.78), transparent 75%);
  }

  .campaign-copy {
    margin: 0;
    padding: 0 24px 150px;
  }

  .campaign-timer {
    right: 24px;
    bottom: 26px;
    left: 24px;
    grid-template-columns: repeat(3, 1fr);
  }

  .review-section blockquote {
    font-size: 34px;
  }

  .review-controls {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 24px;
    padding-top: 64px;
  }

  .footer-lead,
  .newsletter {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom > span:last-child {
    text-align: left;
  }

  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-content > img {
    height: 48svh;
    min-height: 390px;
  }

  .modal-copy {
    padding: 30px 22px calc(28px + env(safe-area-inset-bottom));
  }

  .quick-view {
    width: 100vw;
    max-width: 100vw;
    max-height: 100svh;
    height: 100svh;
  }
}

@media (max-width: 460px) {
  .category-grid {
    grid-template-rows: 390px 250px 250px;
  }

  .product-media {
    aspect-ratio: 3 / 4.35;
  }

  .quick-button {
    min-height: 42px;
    font-size: 8px;
  }

  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
    padding-inline: 17px;
  }

  .cart-item img {
    width: 72px;
    height: 96px;
  }

  .cart-item > strong {
    grid-column: 2;
  }
}

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