:root {
  --ink: #151313;
  --muted: #6d6663;
  --paper: #fffaf6;
  --cream: #f5eee8;
  --line: rgba(21, 19, 19, 0.13);
  --brand-red: #f15d73;
  --brand-red-dark: #c62f48;
  --brand-pale: #ffe1e6;
  --plum: #56364a;
  --blue: #315c78;
  --gold: #b88743;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(22, 26, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

button,
input {
  font: inherit;
}

button {
  font: inherit;
}

fieldset {
  min-width: 0;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, auto) minmax(150px, 0.72fr);
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
  padding: 18px clamp(16px, 3vw, 40px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 15, 11, 0.78), rgba(7, 15, 11, 0));
}

.brand,
.header-tools,
.cart-pill,
.primary-button,
.secondary-button,
.checkout-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand {
  min-width: 0;
}

.brand-mark {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav-links a {
  padding: 9px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.header-tools {
  justify-self: end;
  gap: 8px;
}

.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.language-switch button {
  min-width: 36px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.language-switch button.is-active {
  background: var(--white);
  color: var(--ink);
}

.cart-pill {
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 11px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}

.cart-pill svg,
.primary-button svg,
.secondary-button svg,
.checkout-button svg,
.feature-list svg,
.filter-header svg,
.delivery-grid svg,
.map-pin svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, 92vh);
  padding: 120px clamp(18px, 5vw, 72px) 74px;
  overflow: hidden;
  color: var(--white);
}

.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.poster-hero {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(21, 19, 19, 0.9) 0%, rgba(21, 19, 19, 0.68) 42%, rgba(21, 19, 19, 0.1) 100%),
    linear-gradient(0deg, rgba(21, 19, 19, 0.88) 0%, rgba(21, 19, 19, 0.08) 48%);
}

.hero-content {
  position: relative;
  align-self: end;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(60px, 12vw, 148px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0;
}

.hero-copy {
  width: min(640px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.42;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.secondary-button,
.checkout-button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
}

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

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.secondary-button.light {
  border-color: var(--line);
  color: var(--ink);
}

.compact {
  min-height: 42px;
}

.age-gate {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(21, 19, 19, 0.74);
  backdrop-filter: blur(18px);
}

.age-gate.is-hidden {
  display: none;
}

.age-card {
  width: min(460px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.age-card img {
  width: 88px;
  height: 88px;
  margin-bottom: 20px;
  border-radius: 50%;
}

.age-card h2 {
  font-size: clamp(34px, 8vw, 54px);
}

.age-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.promo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink);
  color: var(--white);
}

.promo-strip article {
  padding: 24px clamp(18px, 4vw, 46px);
  background: var(--ink);
}

.promo-strip article:nth-child(2) {
  background: var(--brand-red-dark);
}

.promo-strip article:nth-child(3) {
  background: var(--plum);
}

.promo-strip strong,
.promo-strip span {
  display: block;
}

.promo-strip strong {
  margin-bottom: 4px;
  font-size: 21px;
}

.promo-strip span {
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

.band {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.7fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p:last-child,
.editorial-copy p,
.visit-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.category-row .filter-button {
  width: auto;
  min-width: 96px;
  text-align: center;
}

.shop-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.filter-panel,
.order-panel,
.delivery-grid article,
.map-card,
.selector-grid,
.detail-layout,
.wine-notes article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 38px rgba(24, 30, 25, 0.06);
}

.filter-panel,
.order-panel {
  position: sticky;
  top: 92px;
  padding: 18px;
}

.filter-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-weight: 800;
}

.filter-button {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  padding: 0 12px;
}

.filter-button.is-active {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: var(--white);
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.toggle-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-red-dark);
}

.field-row {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.field-row select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 0 10px;
}

.range-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.range-row input {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: var(--brand-red-dark);
}

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

.empty-products {
  grid-column: 1 / -1;
  min-height: 240px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.product-card {
  display: grid;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-card.is-selected {
  border-color: var(--brand-red);
  box-shadow: 0 18px 48px rgba(198, 47, 72, 0.12);
}

.product-media {
  position: relative;
  min-height: 172px;
  background:
    linear-gradient(145deg, rgba(216, 92, 114, 0.24), rgba(86, 54, 74, 0.18)),
    var(--cream);
}

.product-media img {
  width: 100%;
  height: 100%;
  min-height: 172px;
  object-fit: cover;
}

.product-media img[src=""] {
  display: none;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--brand-red-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-meta {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-title {
  min-height: 66px;
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.product-description {
  min-height: 60px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.expert-ratings {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(198, 47, 72, 0.18);
  border-radius: 8px;
  background: rgba(255, 225, 230, 0.44);
}

.expert-label {
  color: var(--brand-red-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.rating-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.rating-chip strong {
  font-size: 17px;
}

.rating-chip span {
  font-size: 12px;
  font-weight: 800;
}

.award-list {
  display: grid;
  gap: 4px;
}

.award-link {
  color: var(--brand-red-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-attributes,
.spec-grid,
.map-card dl {
  margin: 0;
}

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

.product-attributes div,
.spec-grid div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.product-attributes dt,
.spec-grid dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-attributes dd,
.spec-grid dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 900;
}

.price {
  font-size: 20px;
  font-weight: 900;
}

.add-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.add-button svg {
  width: 18px;
  height: 18px;
}

.order-panel {
  display: grid;
  gap: 18px;
}

.cart-modal {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: none;
  padding: clamp(16px, 4vw, 42px);
}

.cart-modal.is-open {
  display: grid;
  place-items: center end;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 19, 19, 0.58);
  backdrop-filter: blur(10px);
}

.cart-modal .order-panel {
  position: relative;
  top: auto;
  z-index: 1;
  grid-column: auto;
  width: min(440px, 100%);
  max-height: min(760px, calc(100vh - 32px));
  overflow: auto;
  padding: 22px;
  border-color: rgba(21, 19, 19, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

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

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.icon-button svg {
  width: 18px;
  height: 18px;
}

body.has-cart-modal {
  overflow: hidden;
}

.order-panel h3 {
  margin: 0;
  font-size: 24px;
}

.order-list {
  display: grid;
  gap: 12px;
  min-height: 120px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.order-list .empty-state {
  display: block;
  border: 0;
  color: var(--muted);
}

.panel-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.order-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 18px;
}

.checkout-button {
  justify-content: center;
  border: 0;
  background: var(--brand-red-dark);
  color: var(--white);
  cursor: pointer;
}

.checkout-steps {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.payment-module {
  display: none;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.payment-module.is-open {
  display: grid;
}

.payment-module h4 {
  margin: -6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.payment-module input[type="text"],
.payment-module input[type="tel"] {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
}

.payment-options {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.payment-options legend {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.payment-options span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.payment-options svg {
  width: 18px;
  height: 18px;
  color: var(--brand-red-dark);
}

.payment-age {
  width: 100%;
  padding: 0;
}

.payment-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.product-detail {
  background: #f8ecef;
}

.detail-empty {
  width: min(820px, 100%);
}

.detail-empty p:last-child,
.detail-copy .lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 28px;
  padding: 22px;
}

.detail-image {
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}

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

.detail-buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 22px 0;
}

.detail-buy strong {
  margin-right: auto;
  font-size: 30px;
}

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

.spec-grid div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.wine-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.wine-notes article {
  padding: 20px;
}

.wine-notes p {
  color: var(--muted);
  line-height: 1.48;
}

.legal-note {
  background: var(--ink) !important;
  color: var(--white);
}

.legal-note p {
  color: rgba(255, 255, 255, 0.76);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.editorial-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.about-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.82fr;
  grid-auto-rows: minmax(160px, auto);
  gap: 16px;
  align-items: stretch;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 16%, rgba(241, 93, 115, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 246, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.about-visual::before {
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(241, 93, 115, 0.42);
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.about-photo {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 19, 19, 0.12);
  border-radius: 8px;
  background: #fff8f0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.about-photo figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(21, 19, 19, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.88);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
}

.about-photo-large {
  grid-row: span 2;
  min-height: 456px;
}

.about-photo-wide {
  grid-column: span 2;
}

.events-section {
  background: #fff7f2;
}

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

.event-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(24, 30, 25, 0.08);
}

.event-card-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.event-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.event-card-featured img {
  aspect-ratio: 4 / 3;
}

.event-card div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.event-card span {
  color: var(--brand-red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
}

.event-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.event-card a {
  width: fit-content;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--brand-red);
  text-underline-offset: 4px;
}

.delivery {
  background: #f8ecef;
}

.selector {
  background: var(--paper);
}

.selector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 16px;
  align-items: end;
  padding: 22px;
}

.selector-grid .field-row {
  margin-bottom: 0;
}

.selector-action {
  justify-content: center;
  min-width: 160px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.delivery-grid article {
  padding: 24px;
}

.delivery-grid svg {
  color: var(--brand-red-dark);
}

.delivery-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.visit {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.visit .secondary-button {
  border-color: var(--line);
  color: var(--ink);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-links a,
.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.social-links a {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
}

.social-links svg {
  width: 18px;
  height: 18px;
  color: var(--brand-red-dark);
}

.map-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 420px;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 74% 22%, rgba(255, 253, 248, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(21, 19, 19, 0.92), rgba(216, 92, 114, 0.72)),
    url("assets/av-poster-map.svg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.map-pin {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--brand-red-dark);
}

.map-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.map-card div {
  display: grid;
  gap: 4px;
}

.map-card dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-card dd {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-socials a {
  color: var(--white);
}

@media (max-width: 1180px) {
  .shop-layout {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .order-panel {
    grid-column: 1 / -1;
    position: static;
  }

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

  .wine-notes,
  .selector-grid,
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }


  .promo-strip,
  .section-heading,
  .shop-layout,
  .split-section,
  .delivery-grid,
  .visit,
  .detail-layout,
  .wine-notes,
  .selector-grid {
    grid-template-columns: 1fr;
  }

  .events-grid,
  .event-card-featured {
    grid-template-columns: 1fr;
    grid-column: auto;
    grid-row: auto;
  }

  .filter-panel {
    position: static;
  }

  .category-row .filter-button {
    min-width: calc(50% - 4px);
  }

  .about-visual {
    grid-template-columns: 1fr 1fr;
  }

  .about-photo-large {
    min-height: 360px;
  }

  .about-photo img {
    min-height: 180px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 14px;
  }

  .brand small,
  .cart-pill strong,
  .language-switch {
    display: none;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .cart-pill {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
  }

  .hero {
    min-height: 82vh;
    padding: 104px 18px 48px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .primary-button,
  .secondary-button,
  .checkout-button {
    justify-content: center;
  }

  .category-row .filter-button {
    min-width: 100%;
  }

  .product-grid,
  .about-visual,
  .spec-grid,
  .product-attributes {
    grid-template-columns: 1fr;
  }

  .about-photo-large,
  .about-photo-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .product-card {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }
}
