:root {
  --cream: #faf2e1;
  --ivory: #fffcf3;
  --paper: #fef8ec;
  --burgundy: #49091a;
  --wine: #6e1425;
  --plum: #2e141f;
  --olive: #495730;
  --leaf: #6a7e43;
  --gold: #b18237;
  --tan: #cdb58f;
  --charcoal: #1a1714;
  --muted: #5b5548;
  --line: #d4c3a3;
  --rose: #e2a29b;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(46, 20, 31, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(212, 195, 163, 0.75);
  background: rgba(255, 252, 243, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--burgundy);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(241, 198, 111, 0.64);
  border-radius: 50%;
  background: #11100f;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--burgundy);
}

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

.language-toggle,
.cart-link,
.menu-toggle {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--burgundy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 14px;
}

.menu-toggle {
  display: none;
}

main {
  overflow: hidden;
}

section {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 74px));
  display: grid;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 88px;
}

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

.image-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 23, 20, 0.78), rgba(73, 9, 26, 0.38) 48%, rgba(26, 23, 20, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  color: var(--ivory);
}

.hero-content h1,
.page-hero h1,
.product-copy h1,
.contact-form h1,
.cart-panel h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-content h1 {
  color: var(--ivory);
  text-shadow: 0 2px 18px rgba(26, 23, 20, 0.34);
}

.hero-content p {
  max-width: 610px;
  color: rgba(255, 252, 243, 0.88);
  font-size: clamp(16px, 1.4vw, 20px);
}

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

.hero .eyebrow {
  color: #f4d083;
}

.hero-actions,
.inline-actions,
.purchase-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 850;
  padding: 12px 20px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--burgundy);
  color: var(--ivory);
}

.button.secondary {
  border-color: var(--burgundy);
  background: var(--ivory);
  color: var(--burgundy);
}

.button.light {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--burgundy);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.proof-band article {
  min-height: 150px;
  padding: 28px;
  background: var(--paper);
}

.proof-band strong {
  display: block;
  color: var(--burgundy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.proof-band span {
  display: block;
  max-width: 260px;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
}

.split-section,
.page-hero,
.product-detail,
.location-layout,
.contact-layout,
.checkout-layout,
.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.split-section.reverse,
.proof-panel {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

h1,
h2,
h3 {
  color: var(--burgundy);
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
}

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

.selling-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.selling-list li {
  position: relative;
  padding-left: 22px;
  color: var(--charcoal);
  font-weight: 650;
}

.selling-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.media-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.media-card img,
.page-hero img,
.product-detail figure img,
.contact-aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card.bottle-feature img {
  max-height: 680px;
  object-fit: contain;
  background: linear-gradient(135deg, var(--cream), var(--ivory));
  padding: clamp(16px, 4vw, 34px);
}

.video-section {
  background: var(--plum);
  color: var(--ivory);
}

.video-section h2,
.video-section p {
  color: var(--ivory);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.feature-video {
  width: 100%;
  max-height: 680px;
  border: 1px solid rgba(255, 252, 243, 0.25);
  border-radius: 8px;
  background: #000;
  object-fit: cover;
}

.card-grid,
.product-grid,
.faq-grid,
.detail-tabs {
  display: grid;
  gap: 20px;
}

.card-grid.four,
.product-grid,
.detail-tabs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card,
.product-card,
.detail-tabs article,
.faq-grid article,
.cart-panel,
.checkout-form,
.contact-form,
.contact-aside,
.proof-panel,
.filter-row,
.location-layout,
.story-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.category-card {
  min-height: 220px;
  padding: 24px;
  background: var(--burgundy);
  color: var(--ivory);
}

.category-card.light {
  background: var(--gold);
}

.category-card.olive {
  background: var(--olive);
}

.category-card.rose {
  background: var(--wine);
}

.category-card span {
  display: block;
  font-size: 22px;
  font-weight: 850;
}

.category-card p {
  color: rgba(255, 252, 243, 0.82);
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mini-stats span,
.trust-row span {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  color: var(--muted);
  padding: 10px 14px;
}

.mini-stats strong,
.trust-row strong {
  color: var(--burgundy);
}

.mini-stats em {
  font-style: normal;
}

.newsletter-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.65fr) minmax(300px, 0.55fr);
  gap: 40px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 72px) clamp(56px, 7vw, 96px);
  border-radius: 8px;
  background: var(--burgundy);
  color: var(--ivory);
}

.newsletter-band h2,
.newsletter-band p {
  color: var(--ivory);
}

.newsletter-art {
  width: 100%;
  border: 1px solid rgba(255, 252, 243, 0.22);
  border-radius: 8px;
}

.promo-visual {
  padding-top: 0;
}

.promo-visual img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inline-form,
.contact-form,
.checkout-form {
  display: grid;
  gap: 14px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.form-status.success {
  color: var(--olive);
}

.form-status.error {
  color: var(--burgundy);
}

.form-fallback {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}

.form-fallback a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.message-confirmation {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(7, 5, 6, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.message-confirmation[hidden] {
  display: none;
}

.message-confirmation.show {
  opacity: 1;
  pointer-events: auto;
}

.message-confirmation-card {
  width: min(520px, 100%);
  border: 1px solid rgba(236, 206, 146, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 243, 0.98), rgba(248, 238, 218, 0.98));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.44);
  padding: clamp(26px, 5vw, 42px);
}

.message-confirmation-card h2 {
  margin: 0 0 12px;
  color: var(--burgundy);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.message-confirmation.is-error .message-confirmation-card {
  border-color: rgba(120, 8, 36, 0.4);
}

.message-confirmation-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.message-confirmation-card .button {
  width: 100%;
  margin-top: 16px;
}

.message-confirmation-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.message-confirmation-actions .button {
  margin-top: 0;
}

.form-preview-notice {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(147, 103, 43, 0.4);
  border-radius: 10px;
  background: #fff8e8;
  color: #5d4021;
  padding: 13px 15px;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.55;
}

.form-preview-notice a {
  width: fit-content;
  color: var(--burgundy);
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 3px;
}

label span {
  display: block;
  margin-bottom: 6px;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--charcoal);
  padding: 13px 14px;
}

select {
  min-height: 50px;
}

.checkout-consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.65);
  padding: 14px;
}

.checkout-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--burgundy);
}

.checkout-consent span {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.page-hero.compact {
  min-height: 520px;
  padding-top: clamp(48px, 7vw, 88px);
  background: var(--cream);
}

.page-hero img {
  min-height: 340px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 clamp(20px, 5vw, 72px);
  padding: 18px;
}

.filter-row button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ivory);
  color: var(--burgundy);
  cursor: pointer;
  font-weight: 800;
  padding: 10px 14px;
}

.filter-row button.active {
  background: var(--burgundy);
  color: var(--ivory);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 14px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  border-radius: 6px;
  object-fit: cover;
}

.product-card img.label-art {
  background: var(--cream);
  object-fit: contain;
  padding: 16px;
}

.product-card img.bottle-photo {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--cream), var(--ivory));
  object-fit: contain;
  padding: 10px;
}

.product-card h2 {
  margin: 4px 0 6px;
  font-size: 21px;
  line-height: 1.12;
}

.cn-name {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72em;
  font-weight: 750;
  line-height: 1.25;
}

body[data-lang="zh"] .cn-name {
  display: none;
}

.product-card .button {
  margin-top: auto;
}

.tag {
  align-self: flex-start;
  margin: 14px 0 0;
  border-radius: 999px;
  background: var(--cream);
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 850;
  padding: 5px 9px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 18px;
  color: var(--burgundy);
  font-weight: 850;
}

.feature-product {
  grid-column: span 2;
  justify-content: center;
  background: var(--burgundy);
}

.feature-product h2,
.feature-product p,
.feature-product .product-meta {
  color: var(--ivory);
}

.proof-panel {
  margin: 0 clamp(20px, 5vw, 72px) clamp(56px, 7vw, 96px);
  padding: clamp(28px, 5vw, 56px);
}

.mini-stats.stacked {
  display: grid;
}

.product-detail figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-detail figure img.bottle-detail-photo {
  min-height: 560px;
  max-height: 760px;
  object-fit: contain;
  background: linear-gradient(135deg, var(--cream), var(--ivory));
  padding: clamp(18px, 4vw, 42px);
}

.product-copy .price {
  color: var(--burgundy);
  font-size: 32px;
  font-weight: 900;
}

.quantity-control {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  padding: 6px 12px;
}

.quantity-control button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--burgundy);
  cursor: pointer;
  font-weight: 900;
}

.quantity-control button:hover:not(:disabled),
.cart-item-actions button:hover:not(:disabled) {
  background: rgba(73, 9, 26, 0.08);
}

.quantity-control [data-quantity-value] {
  min-width: 2ch;
  text-align: center;
  font-weight: 850;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.detail-tabs article,
.faq-grid article {
  padding: 22px;
}

.label-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  background: var(--paper);
}

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

.label-showcase-grid img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
}

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

.label-photo-grid img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  padding: 10px;
}

.detail-tabs h2,
.faq-grid h2 {
  font-size: 22px;
}

.story-section {
  margin: 0 clamp(20px, 5vw, 72px);
  padding: clamp(30px, 5vw, 58px);
}

.timeline {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.timeline article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--ivory);
  padding: 22px;
}

.timeline span {
  color: var(--burgundy);
  font-size: 22px;
  font-weight: 900;
}

.timeline p {
  margin: 0;
}

.location-layout {
  align-items: stretch;
  margin: 0 clamp(20px, 5vw, 72px);
  padding: clamp(28px, 5vw, 56px);
}

.photo-gallery {
  padding-top: 0;
}

.wine-bottle-gallery {
  padding-top: clamp(20px, 4vw, 44px);
}

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

.wine-bottle-gallery .gallery-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gallery-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(46, 20, 31, 0.08);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.wine-bottle-gallery .gallery-grid img {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--cream), var(--ivory));
  object-fit: contain;
  padding: 8px;
}

.gallery-grid figcaption {
  color: var(--burgundy);
  font-weight: 850;
  padding: 12px 14px;
}

.map-card {
  display: grid;
  min-height: 430px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cream), var(--tan));
  color: var(--burgundy);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 900;
  text-align: center;
  padding: 26px;
}

.map-card i {
  width: 70%;
  height: 2px;
  background: var(--burgundy);
}

.contact-layout {
  align-items: stretch;
}

.contact-form,
.checkout-form,
.cart-panel {
  padding: clamp(24px, 4vw, 48px);
}

.contact-aside {
  overflow: hidden;
}

.contact-aside img {
  aspect-ratio: 1.25;
}

.contact-aside div {
  padding: 28px;
}

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

.checkout-layout {
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  padding: 14px;
}

.cart-empty {
  display: grid;
  justify-items: start;
  gap: 12px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 20px;
}

.cart-empty p {
  margin: 0;
}

.cart-item-copy {
  display: grid;
  gap: 3px;
}

.cart-item-copy > span {
  color: var(--muted);
  font-size: 13px;
}

.cart-item-actions {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cart-item-actions button {
  display: grid;
  min-width: 34px;
  min-height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--burgundy);
  cursor: pointer;
  font-weight: 900;
}

.cart-item-actions .cart-remove {
  width: auto;
  border-radius: 999px;
  margin-left: 5px;
  padding: 5px 10px;
  font-size: 12px;
}

.cart-item-quantity {
  min-width: 2.2ch;
  text-align: center;
  font-weight: 850;
}

.cart-item-price {
  color: var(--burgundy);
  white-space: nowrap;
}

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

.cart-totals div {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: baseline;
}

.cart-totals dt,
.cart-totals dd {
  margin: 0;
}

.cart-totals dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.cart-totals dd {
  color: var(--burgundy);
  font-size: 15px;
  font-weight: 820;
  text-align: right;
}

.cart-totals > :first-child dd {
  font-size: 22px;
  font-weight: 900;
}

.cart-totals .cart-final-total {
  border-top: 1px solid rgba(73, 9, 26, 0.1);
  margin-top: 3px;
  padding-top: 11px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 38px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--plum);
  color: var(--ivory);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 252, 243, 0.78);
}

.site-footer p {
  margin: 0;
}

.footer-brand,
.footer-links {
  display: grid;
  gap: 12px;
}

.footer-brand {
  max-width: 520px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  font-size: 12px;
}

.footer-contact a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 252, 243, 0.28);
  text-underline-offset: 3px;
}

.footer-links {
  max-width: 760px;
  justify-items: end;
}

.footer-order-note {
  max-width: 74ch;
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 13px;
  font-weight: 800;
}

.music-player {
  display: flex;
  min-height: 42px;
  width: auto;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 252, 243, 0.16);
  border-radius: 999px;
  background: var(--plum);
  color: var(--ivory);
  padding: 5px 10px 5px 5px;
}

.music-player button {
  min-width: 44px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--ivory);
  color: var(--burgundy);
  cursor: pointer;
  font-weight: 900;
  padding: 7px 9px;
}

.music-player span {
  display: block;
  max-width: 116px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 850;
}

.music-player small {
  display: none;
  color: rgba(255, 252, 243, 0.72);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  z-index: 90;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--ivory);
  opacity: 0;
  pointer-events: none;
  padding: 12px 18px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, -4px);
}

.design-board-main {
  background: #f6efe2;
}

.design-cover,
.token-board,
.mockup-board,
.mobile-board,
.handoff-board,
.asset-board {
  padding: clamp(42px, 6vw, 78px) clamp(20px, 5vw, 72px);
}

.design-cover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: end;
  background: var(--plum);
}

.design-cover h1,
.design-cover p {
  color: var(--ivory);
}

.design-note {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 252, 243, 0.2);
  border-radius: 8px;
  background: rgba(255, 252, 243, 0.08);
  color: var(--ivory);
  padding: 20px;
}

.design-note span {
  color: rgba(255, 252, 243, 0.78);
}

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

.swatch-grid span {
  display: grid;
  min-height: 128px;
  align-content: end;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(to bottom, var(--swatch) 0 58%, var(--ivory) 58%);
  padding: 12px;
}

.swatch-grid b {
  color: var(--charcoal);
}

.swatch-grid i {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.component-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.mini-field,
.music-chip {
  display: grid;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  padding: 10px 14px;
}

.mini-field span,
.music-chip b {
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 850;
}

.mini-field em,
.music-chip span {
  color: var(--muted);
  font-style: normal;
}

.music-chip {
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  background: var(--plum);
}

.music-chip b {
  display: grid;
  width: 48px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  background: var(--ivory);
}

.music-chip span {
  color: rgba(255, 252, 243, 0.8);
}

.mockup-grid {
  display: grid;
  gap: 18px;
}

.desktop-mockups {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mockup-frame,
.phone-frame {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: 0 16px 36px rgba(46, 20, 31, 0.08);
  padding: 14px;
}

.mockup-frame > span,
.phone-frame > span {
  color: var(--burgundy);
  font-weight: 900;
}

.wire-hero,
.wire-banner,
.wire-modal,
.wire-form,
.wire-split i,
.wire-split b,
.wire-products i,
.wire-row i,
.wire-controls i,
.wire-timeline i,
.phone-frame i,
.phone-frame b,
.phone-frame em,
.wire-filters {
  display: block;
  border-radius: 6px;
  background: var(--cream);
}

.wire-hero {
  height: 130px;
  overflow: hidden;
}

.wire-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wire-line {
  width: 58%;
  height: 12px;
  background: var(--line);
  border-radius: 999px;
}

.wire-line.wide {
  width: 86%;
  height: 18px;
  background: var(--burgundy);
}

.wire-row,
.wire-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.wire-row i,
.wire-controls i {
  height: 44px;
}

.wire-filters {
  height: 44px;
}

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

.wire-products i {
  height: 112px;
}

.wire-banner {
  height: 72px;
  background: var(--burgundy);
}

.wire-split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 10px;
}

.wire-split.reverse {
  grid-template-columns: 1fr 0.85fr;
}

.wire-split i,
.wire-split b {
  height: 178px;
}

.wire-split b,
.wire-modal {
  background: var(--paper);
  border: 1px solid var(--line);
}

.wire-timeline {
  display: grid;
  gap: 8px;
}

.wire-timeline i {
  height: 26px;
}

.wire-form {
  height: 250px;
}

.wire-modal {
  width: 78%;
  height: 140px;
  justify-self: center;
}

.phone-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.phone-frame {
  min-width: 230px;
  min-height: 460px;
  border-radius: 22px;
  padding: 18px;
}

.phone-frame .phone-nav {
  height: 42px;
  background: var(--paper);
}

.phone-frame .phone-hero {
  height: 150px;
  background: var(--burgundy);
}

.phone-frame i,
.phone-frame b,
.phone-frame em {
  height: 64px;
}

.phone-frame em {
  display: grid;
  align-items: center;
  color: var(--ivory);
  background: var(--burgundy);
  font-style: normal;
  font-weight: 850;
  padding: 0 14px;
}

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

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

.handoff-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.handoff-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid var(--line);
}

.handoff-grid figcaption {
  color: var(--burgundy);
  font-weight: 850;
  padding: 12px 14px;
}

.asset-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ivory);
}

.asset-grid img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.asset-grid figcaption {
  color: var(--burgundy);
  font-weight: 850;
  padding: 14px;
}

.label-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.label-board article {
  display: grid;
  min-height: 190px;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #fbf4df, #fffaf0);
  color: var(--burgundy);
  text-align: center;
  padding: 22px;
}

.label-board img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.label-board span {
  color: var(--gold);
  font-weight: 900;
}

.label-board b {
  margin-top: 8px;
  font-size: 22px;
}

.label-board i {
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
}

@media (max-width: 1080px) {
  .proof-band,
  .card-grid.four,
  .product-grid,
  .detail-tabs,
  .faq-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .split-section.reverse,
  .page-hero,
  .product-detail,
  .location-layout,
  .contact-layout,
  .checkout-layout,
  .proof-panel,
  .newsletter-band {
    grid-template-columns: 1fr;
  }

  .label-showcase {
    grid-template-columns: 1fr;
  }

  .swatch-grid,
  .desktop-mockups,
  .handoff-grid,
  .asset-grid,
  .label-board,
  .label-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    align-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 75px 14px auto;
    display: none;
    flex-direction: column;
    justify-content: start;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--ivory);
    padding: 18px;
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .music-player {
    max-width: 148px;
  }

  .music-player span {
    max-width: 70px;
  }

  .hero {
    min-height: 720px;
  }

  .image-hero::after {
    background: linear-gradient(180deg, rgba(26, 23, 20, 0.76), rgba(73, 9, 26, 0.42));
  }

  .proof-band,
  .card-grid.four,
  .product-grid,
  .detail-tabs,
  .faq-grid,
  .trust-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-product {
    grid-column: auto;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }

  .footer-links {
    justify-items: start;
  }

  .footer-order-note {
    text-align: left;
  }

  .design-cover,
  .swatch-grid,
  .handoff-grid,
  .asset-grid,
  .label-board,
  .label-showcase-grid {
    grid-template-columns: 1fr;
  }

  .wine-bottle-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Simple clean redesign: clarity first */
:root {
  --simple-brand: #5a0f20;
  --simple-bg: #fbf7ef;
  --simple-surface: #ffffff;
  --simple-ink: #231b17;
  --simple-muted: #6c625b;
  --simple-line: #e6d7c3;
}

html {
  scroll-behavior: smooth;
}

body,
.simple-page,
.luxury-page {
  background: var(--simple-bg);
  color: var(--simple-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.simple-page main,
.luxury-page main,
.collection-page main {
  background: var(--simple-bg);
}

.simple-page .premium-reveal,
.simple-page .premium-reveal.in-view,
.simple-page .premium-parallax {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.site-header,
.simple-header,
.luxury-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  border-bottom: 1px solid var(--simple-line);
  background: rgba(251, 247, 239, 0.96);
  color: var(--simple-ink);
  backdrop-filter: blur(14px);
}

.brand,
.luxury-header .brand {
  color: var(--simple-ink);
  font-weight: 850;
}

.brand-mark {
  background: var(--simple-brand);
  color: #fffaf2;
}

.site-nav a,
.luxury-header .site-nav a {
  color: var(--simple-muted);
  font-size: 15px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--simple-brand);
}

.header-actions {
  gap: 10px;
}

.language-toggle,
.cart-link,
.music-toggle {
  min-height: 42px;
  border: 1px solid var(--simple-line);
  border-radius: 999px;
  background: #fffaf2;
  color: var(--simple-brand);
  font-weight: 850;
}

.music-toggle {
  max-width: 156px;
  overflow: hidden;
}

.music-toggle span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.button,
button.button,
a.button {
  min-height: 48px;
  border-radius: 7px;
  font-weight: 850;
  letter-spacing: 0;
}

.button.primary,
button.primary,
a.primary {
  border: 1px solid var(--simple-brand);
  background: var(--simple-brand);
  color: #fffaf2;
}

.button.secondary,
.button.glass,
a.secondary,
a.glass {
  border: 1px solid var(--simple-line);
  background: #fffaf2;
  color: var(--simple-brand);
}

.eyebrow {
  color: #a37638;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.simple-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  max-width: 1240px;
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 92px) 24px;
}

.simple-hero-copy h1 {
  max-width: 840px;
  margin: 0;
  color: var(--simple-ink);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.simple-hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--simple-muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.simple-hero-media {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--simple-line);
  border-radius: 8px;
  background: #efe4d1;
}

.simple-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.simple-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(35, 27, 23, 0.14), rgba(35, 27, 23, 0.48));
}

.simple-hero-bottle {
  position: absolute;
  right: 50%;
  bottom: 34px;
  z-index: 1;
  width: min(54%, 330px);
  max-height: 82%;
  object-fit: contain;
  transform: translateX(50%);
  filter: drop-shadow(0 28px 32px rgba(21, 10, 8, 0.34));
}

.simple-proof,
.simple-section,
.simple-cta,
.simple-shop-hero,
.simple-filter-bar,
.simple-collection-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.simple-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 10px;
  padding-bottom: 64px;
}

.simple-proof article,
.simple-info-grid article,
.simple-wine-card,
.simple-product-card,
.simple-cta {
  border: 1px solid var(--simple-line);
  border-radius: 8px;
  background: var(--simple-surface);
}

.simple-proof article {
  min-height: 118px;
  padding: 20px;
}

.simple-proof span,
.simple-product-card dt,
.simple-wine-card .eyebrow {
  display: block;
  color: #a37638;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.simple-proof strong {
  display: block;
  margin-top: 12px;
  color: var(--simple-ink);
  font-size: 18px;
  line-height: 1.3;
}

.simple-section {
  padding-top: clamp(54px, 8vw, 92px);
  padding-bottom: clamp(54px, 8vw, 92px);
}

.simple-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.simple-section-heading h2,
.simple-split h2,
.simple-cta h2,
.simple-shop-hero h1 {
  margin: 0;
  color: var(--simple-ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.simple-section-heading p:not(.eyebrow),
.simple-split p,
.simple-cta p,
.simple-shop-hero p {
  color: var(--simple-muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.simple-wine-card {
  display: grid;
  grid-template-rows: 360px 1fr;
  overflow: hidden;
}

.simple-wine-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
  background: #f4ead9;
}

.simple-wine-card > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.simple-wine-card h3,
.simple-info-grid h3,
.simple-product-card h2 {
  margin: 0;
  color: var(--simple-ink);
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: 0;
}

.simple-wine-card p,
.simple-info-grid p,
.simple-product-card p {
  color: var(--simple-muted);
  line-height: 1.6;
}

.simple-wine-card .button {
  margin-top: auto;
}

.simple-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.simple-split.reverse {
  direction: rtl;
}

.simple-split.reverse > * {
  direction: ltr;
}

.simple-split img {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--simple-line);
  border-radius: 8px;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--simple-brand);
  font-weight: 850;
}

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

.simple-info-grid article {
  padding: 22px;
}

.simple-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(56px, 8vw, 96px);
  padding-top: 34px;
  padding-bottom: 34px;
}

.simple-cta > div {
  max-width: 740px;
}

.simple-shop-hero {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: 34px;
}

.simple-shop-hero > div {
  max-width: 800px;
}

.simple-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
  padding-bottom: 28px;
}

.simple-filter-bar button,
.collection-filters button {
  min-height: 42px;
  border: 1px solid var(--simple-line);
  border-radius: 999px;
  background: #fffaf2;
  color: var(--simple-brand);
  font-weight: 850;
}

.simple-filter-bar button.active,
.collection-filters button.active {
  border-color: var(--simple-brand);
  background: var(--simple-brand);
  color: #fffaf2;
}

.filter-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.simple-collection-grid {
  display: grid;
  gap: 18px;
  padding-bottom: clamp(54px, 8vw, 92px);
}

.simple-product-card,
.collection-card.simple-product-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  box-shadow: none;
}

.simple-product-card[hidden] {
  display: none;
}

.simple-product-card > img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  border-radius: 8px;
  background: #f4ead9;
}

.simple-product-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.simple-product-card dl div {
  border-top: 1px solid var(--simple-line);
  padding-top: 10px;
}

.simple-product-card dd {
  margin: 4px 0 0;
  color: var(--simple-ink);
  font-weight: 800;
}

.collection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.collection-actions > span {
  color: var(--simple-brand);
  font-size: 24px;
  font-weight: 900;
}

.site-footer,
.simple-footer,
.luxury-footer {
  border-top: 1px solid var(--simple-line);
  background: #fffaf2;
  color: var(--simple-ink);
}

.site-footer p,
.luxury-footer p {
  color: var(--simple-muted);
}

.site-footer a,
.luxury-footer a {
  color: var(--simple-muted);
}

.page-hero,
.story-section,
.split-section,
.location-layout,
.contact-layout,
.cart-layout,
.checkout-form,
.summary-panel,
.label-showcase,
.age-modal {
  border-color: var(--simple-line);
}

.page-hero,
.story-section,
.split-section,
.location-layout,
.contact-card,
.cart-panel,
.checkout-form,
.summary-panel,
.label-showcase {
  background: var(--simple-surface);
  box-shadow: none;
}

.page-hero h1,
.story-section h2,
.split-copy h2,
.contact-card h1,
.cart-panel h1 {
  color: var(--simple-ink);
  letter-spacing: 0;
}

.page-hero p,
.story-section p,
.split-copy p,
.contact-card p,
.cart-panel p {
  color: var(--simple-muted);
}

@media (max-width: 980px) {
  .simple-hero,
  .simple-split,
  .simple-split.reverse,
  .simple-product-card,
  .collection-card.simple-product-card {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .simple-hero {
    min-height: auto;
  }

  .simple-hero-media {
    min-height: 520px;
  }

  .simple-proof,
  .simple-wine-grid,
  .simple-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header,
  .simple-header,
  .luxury-header {
    min-height: 68px;
  }

  .menu-toggle {
    border: 1px solid var(--simple-line);
    border-radius: 999px;
    background: #fffaf2;
    color: var(--simple-brand);
  }

  .site-nav,
  .luxury-header .site-nav {
    border-bottom: 1px solid var(--simple-line);
    background: #fffaf2;
  }

  .site-nav a,
  .luxury-header .site-nav a {
    color: var(--simple-ink);
  }

  .simple-hero {
    padding-top: 34px;
  }

  .simple-hero-copy h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .simple-hero-media {
    min-height: 440px;
  }

  .simple-hero-bottle {
    width: min(62%, 270px);
  }

  .simple-proof,
  .simple-wine-grid,
  .simple-info-grid,
  .simple-product-card dl {
    grid-template-columns: 1fr;
  }

  .simple-wine-card {
    grid-template-rows: 300px 1fr;
  }

  .simple-split img {
    min-height: 300px;
  }

  .simple-cta {
    display: grid;
  }

  .simple-product-card > img {
    height: 290px;
  }
}

@media (max-width: 520px) {
  .simple-proof,
  .simple-section,
  .simple-cta,
  .simple-shop-hero,
  .simple-filter-bar,
  .simple-collection-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .simple-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .simple-actions {
    display: grid;
  }

  .simple-actions .button,
  .simple-cta .button,
  .collection-actions .button {
    width: 100%;
  }
}

/* Keep legacy pages visually aligned with the simplified site */
.simple-page .page-hero,
.simple-page .page-hero.compact,
.simple-page .product-detail,
.simple-page .contact-layout,
.simple-page .checkout-layout {
  max-width: 1240px;
  min-height: auto;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.simple-page .page-hero,
.simple-page .contact-layout,
.simple-page .product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.simple-page .page-hero h1,
.simple-page .product-copy h1,
.simple-page .contact-form h1,
.simple-page .cart-panel h1 {
  margin: 0;
  color: var(--simple-ink);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.simple-page .page-hero p,
.simple-page .product-copy p,
.simple-page .contact-form p,
.simple-page .cart-panel p,
.simple-page .checkout-form p {
  color: var(--simple-muted);
  font-size: 17px;
  line-height: 1.65;
}

.simple-page .page-hero img,
.simple-page .media-card img,
.simple-page .contact-aside img {
  width: 100%;
  min-height: 340px;
  border: 1px solid var(--simple-line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: none;
}

.simple-page .location-layout,
.simple-page .location-experiences,
.simple-page .story-section,
.simple-page .proof-panel,
.simple-page .split-section,
.simple-page .photo-gallery,
.simple-page .faq-grid,
.simple-page .detail-tabs,
.simple-page .label-showcase {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 82px) 24px;
  background: transparent;
  box-shadow: none;
}

.simple-page .story-section h2,
.simple-page .location-experiences h2,
.simple-page .proof-panel h2,
.simple-page .split-section h2,
.simple-page .photo-gallery h2,
.simple-page .contact-aside h2,
.simple-page .checkout-form h2,
.simple-page .detail-tabs h2,
.simple-page .label-showcase h2 {
  color: var(--simple-ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.simple-page .story-section p,
.simple-page .location-experiences p,
.simple-page .proof-panel p,
.simple-page .split-section p,
.simple-page .photo-gallery p,
.simple-page .contact-aside p,
.simple-page .detail-tabs p,
.simple-page .label-showcase p {
  color: var(--simple-muted);
  line-height: 1.65;
}

.simple-page .timeline,
.simple-page .mini-stats,
.simple-page .location-experience-grid,
.simple-page .faq-grid,
.simple-page .detail-tabs,
.simple-page .gallery-grid,
.simple-page .label-showcase-grid {
  gap: 16px;
}

.simple-page .timeline article,
.simple-page .mini-stats span,
.simple-page .location-experience-grid article,
.simple-page .faq-grid article,
.simple-page .detail-tabs article,
.simple-page .gallery-grid figure,
.simple-page .cart-panel,
.simple-page .checkout-form,
.simple-page .contact-form,
.simple-page .contact-aside > div,
.simple-page .label-showcase-grid img {
  border: 1px solid var(--simple-line);
  border-radius: 8px;
  background: var(--simple-surface);
  box-shadow: none;
}

.simple-page .map-card {
  border: 1px solid var(--simple-line);
  border-radius: 8px;
  background: #fffaf2;
  box-shadow: none;
}

.simple-page .photo-gallery {
  padding-bottom: clamp(56px, 8vw, 96px);
}

.simple-page .location-experiences {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

.simple-page .location-experiences .section-heading {
  margin: 0;
}

.simple-page .location-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.simple-page .location-experience-grid article {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: clamp(22px, 3vw, 32px);
}

.simple-page .location-experience-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-ink);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.simple-page .location-experience-grid h3 {
  margin: 0 0 12px;
  color: var(--simple-ink);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.05;
}

.simple-page .location-experience-grid p {
  margin: 0 0 22px;
}

.simple-page .location-experience-grid a {
  align-self: end;
  color: var(--burgundy);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .simple-page .page-hero,
  .simple-page .contact-layout,
  .simple-page .product-detail {
    grid-template-columns: 1fr;
  }

  .simple-page .location-experience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .simple-page .page-hero,
  .simple-page .page-hero.compact,
  .simple-page .product-detail,
  .simple-page .contact-layout,
  .simple-page .checkout-layout,
  .simple-page .location-layout,
  .simple-page .location-experiences,
  .simple-page .story-section,
  .simple-page .proof-panel,
  .simple-page .split-section,
  .simple-page .photo-gallery,
  .simple-page .faq-grid,
  .simple-page .detail-tabs,
  .simple-page .label-showcase {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Premium visual restore: keep the richer design, simplify the copy */
.luxury-page {
  background: #070506;
  color: var(--ivory);
}

.luxury-page main {
  background:
    linear-gradient(180deg, #080506 0%, #16080c 34%, #faf2e1 34%, #fffcf3 100%);
}

.luxury-header {
  border-bottom-color: rgba(255, 252, 243, 0.12);
  background: rgba(7, 5, 6, 0.86);
  color: var(--ivory);
}

.luxury-header .brand,
.luxury-header .site-nav,
.luxury-header .site-nav a,
.luxury-header .cart-link,
.luxury-header .language-toggle,
.luxury-header .menu-toggle {
  color: var(--ivory);
}

.luxury-header .language-toggle,
.luxury-header .cart-link,
.luxury-header .menu-toggle,
.luxury-header .music-toggle {
  border-color: rgba(255, 252, 243, 0.18);
  background: rgba(255, 252, 243, 0.06);
}

.luxury-header .brand-mark {
  background: var(--ivory);
  color: var(--burgundy);
}

.luxury-page .button.glass {
  border-color: rgba(255, 252, 243, 0.35);
  background: rgba(255, 252, 243, 0.08);
  color: var(--ivory);
}

.luxury-page .button.secondary,
.luxury-page a.secondary {
  border-color: rgba(255, 252, 243, 0.28);
  background: rgba(255, 252, 243, 0.08);
  color: var(--ivory);
}

.luxury-page .button.primary,
.luxury-page button.primary,
.luxury-page a.primary {
  border-color: #7c0e2a;
  background: #7c0e2a;
  color: var(--ivory);
}

.luxury-hero {
  position: relative;
  display: grid;
  min-height: clamp(760px, 100vh, 980px);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  overflow: hidden;
  padding: clamp(90px, 11vw, 150px) clamp(22px, 7vw, 110px);
}

.luxury-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  object-fit: cover;
}

.luxury-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 5, 6, 0.94), rgba(73, 9, 26, 0.58) 48%, rgba(7, 5, 6, 0.82)),
    linear-gradient(180deg, rgba(7, 5, 6, 0.15), rgba(7, 5, 6, 0.88));
}

.luxury-hero-copy,
.hero-bottle-stage {
  position: relative;
  z-index: 1;
}

.luxury-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ivory);
  font-size: clamp(52px, 8vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
}

.luxury-hero p {
  max-width: 650px;
  color: rgba(255, 252, 243, 0.78);
  font-size: clamp(16px, 1.35vw, 21px);
}

.hero-bottle-stage {
  display: grid;
  min-height: clamp(520px, 62vw, 820px);
  place-items: center;
  margin: 0;
}

.hero-bottle-stage::before {
  position: absolute;
  width: clamp(340px, 38vw, 560px);
  height: clamp(560px, 61vw, 840px);
  border: 1px solid rgba(236, 206, 146, 0.5);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.98), rgba(255, 250, 235, 0.86) 42%, rgba(244, 224, 185, 0.7) 72%, rgba(255, 252, 243, 0.18) 100%);
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.5),
    inset 0 0 70px rgba(255, 255, 255, 0.56);
  content: "";
}

.hero-bottle-stage img {
  position: relative;
  width: auto;
  height: clamp(570px, 60vw, 805px);
  max-width: min(430px, 74vw);
  object-fit: contain;
  filter:
    drop-shadow(0 44px 48px rgba(0, 0, 0, 0.62))
    drop-shadow(0 10px 18px rgba(72, 18, 28, 0.28));
}

.luxury-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 252, 243, 0.13);
  border-bottom: 1px solid rgba(255, 252, 243, 0.13);
  background: #0d0709;
  padding: 0;
}

.luxury-proof article {
  min-height: 156px;
  border-right: 1px solid rgba(255, 252, 243, 0.1);
  padding: clamp(22px, 3vw, 38px);
}

.luxury-proof span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.luxury-proof strong {
  color: var(--ivory);
  font-size: clamp(20px, 2.5vw, 34px);
  line-height: 1.05;
}

.luxury-section,
.tasting-lab,
.signature-preview,
.collection-filter-shell,
.collection-notes {
  padding: clamp(68px, 9vw, 128px) clamp(20px, 6vw, 100px);
}

.luxury-section,
.tasting-lab {
  background: #fbf3e4;
}

.estate-experiences {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  background: #0d0709;
  padding: clamp(68px, 9vw, 122px) clamp(20px, 6vw, 100px);
}

.estate-experiences .luxury-section-heading h2,
.estate-experiences .luxury-section-heading p:not(.eyebrow) {
  color: var(--ivory);
}

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

.estate-experiences article {
  min-height: 240px;
  border: 1px solid rgba(255, 252, 243, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 252, 243, 0.08), rgba(255, 252, 243, 0.03));
  padding: clamp(22px, 3vw, 34px);
}

.estate-experiences span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.estate-experiences h3 {
  margin: 0 0 14px;
  color: var(--ivory);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.02;
  letter-spacing: 0;
}

.estate-experiences article p {
  margin: 0;
  color: rgba(255, 252, 243, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.estate-experiences > .button {
  justify-self: start;
}

.luxury-section-heading {
  max-width: 820px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.luxury-section-heading h2,
.cinematic-copy h2,
.vineyard-heritage h2,
.tasting-lab h2,
.signature-preview h2,
.collection-hero h1,
.collection-filter-shell h2,
.collection-notes h2 {
  margin: 0 0 16px;
  color: var(--burgundy);
  font-size: clamp(38px, 5.6vw, 74px);
  line-height: 0.96;
  letter-spacing: 0;
}

.luxury-section-heading p,
.cinematic-copy p,
.vineyard-heritage p,
.signature-preview p,
.collection-hero p,
.collection-notes p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(16px, 1.28vw, 20px);
}

.luxury-product-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 32px);
  align-items: stretch;
}

.luxury-product-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  border: 1px solid rgba(73, 9, 26, 0.16);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 24px 70px rgba(46, 20, 31, 0.12);
  padding: clamp(18px, 2.2vw, 28px);
}

.luxury-product-card.is-featured {
  background: #18090e;
}

.luxury-product-card.is-featured h3,
.luxury-product-card.is-featured p:not(.eyebrow),
.luxury-product-card.is-featured .wine-spec-line {
  color: var(--ivory);
}

.luxury-product-card img {
  width: 100%;
  height: clamp(320px, 34vw, 520px);
  border-radius: 6px;
  background: linear-gradient(180deg, #fffaf0, #efe1c7);
  object-fit: contain;
  padding: 14px;
}

.luxury-product-card h3 {
  margin: 0;
  color: var(--burgundy);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.04;
}

.luxury-product-card p {
  margin: 0;
}

.wine-spec-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 850;
}

.wine-spec-line span {
  border: 1px solid rgba(177, 130, 55, 0.42);
  border-radius: 999px;
  padding: 6px 10px;
}

.cinematic-story {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.76fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background: #070506;
  padding: clamp(70px, 10vw, 140px) clamp(20px, 6vw, 100px);
}

.cinematic-panel {
  min-height: clamp(420px, 55vw, 760px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.4);
}

.cinematic-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinematic-copy h2,
.cinematic-copy p {
  color: var(--ivory);
}

.vineyard-heritage {
  position: relative;
  display: grid;
  min-height: 740px;
  align-items: end;
  overflow: hidden;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 6vw, 100px);
}

.vineyard-heritage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vineyard-heritage::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 5, 6, 0.1), rgba(7, 5, 6, 0.86));
}

.vineyard-heritage > div {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.vineyard-heritage h2,
.vineyard-heritage p {
  color: var(--ivory);
}

.tasting-grid,
.notes-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tasting-grid article,
.notes-matrix article {
  min-height: 170px;
  border: 1px solid rgba(73, 9, 26, 0.16);
  border-radius: 8px;
  background: #fffaf0;
  padding: 22px;
}

.tasting-grid span,
.notes-matrix span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tasting-grid strong {
  color: var(--burgundy);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.14;
}

.signature-preview {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(73, 9, 26, 0.12);
  background: #fffaf0;
}

.collection-page main {
  background: #fbf3e4;
}

.collection-hero {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 0.8fr) minmax(330px, 0.78fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding: clamp(92px, 12vw, 160px) clamp(22px, 7vw, 112px) clamp(60px, 8vw, 110px);
  background:
    linear-gradient(135deg, rgba(7, 5, 6, 0.95), rgba(73, 9, 26, 0.9)),
    url("../images/optimized/real-vineyard-autumn-row-1920.jpg") center / cover;
  background-image:
    linear-gradient(135deg, rgba(7, 5, 6, 0.95), rgba(73, 9, 26, 0.9)),
    image-set(
      url("../images/optimized/real-vineyard-autumn-row-1920.avif") type("image/avif"),
      url("../images/optimized/real-vineyard-autumn-row-1920.jpg") type("image/jpeg")
    );
}

.collection-hero h1,
.collection-hero p {
  color: var(--ivory);
}

.collection-hero-bottles {
  display: flex;
  min-width: 0;
  align-items: end;
  justify-content: center;
  gap: clamp(4px, 1vw, 14px);
  margin: 0;
  overflow: hidden;
  padding-inline: clamp(4px, 1vw, 12px);
}

.collection-hero-bottles .product-picture {
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  align-items: end;
  justify-content: center;
}

.collection-hero-bottles img {
  width: 100%;
  max-width: 148px;
  height: clamp(360px, 48vw, 620px);
  object-fit: contain;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.45));
}

.collection-hero-bottles img.hero-bottle-feature {
  max-width: 164px;
  height: clamp(420px, 55vw, 700px);
}

.collection-filter-shell {
  background: #fbf3e4;
  padding-bottom: 34px;
}

.collection-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.collection-filters button {
  min-height: 44px;
  border: 1px solid rgba(73, 9, 26, 0.18);
  border-radius: 999px;
  background: #fffaf0;
  color: var(--burgundy);
  cursor: pointer;
  font-weight: 850;
  padding: 10px 16px;
}

.collection-filters button.active {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--ivory);
}

.collection-grid {
  display: grid;
  gap: 18px;
  background: #fbf3e4;
  padding: 0 clamp(20px, 6vw, 100px) clamp(68px, 9vw, 120px);
}

.collection-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  border: 1px solid rgba(73, 9, 26, 0.16);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 24px 70px rgba(46, 20, 31, 0.08);
  padding: clamp(18px, 3vw, 38px);
}

.collection-card.hero-card {
  background: #15080d;
}

.collection-card.hero-card h2,
.collection-card.hero-card p,
.collection-card.hero-card dt,
.collection-card.hero-card dd,
.collection-card.hero-card .collection-actions span {
  color: var(--ivory);
}

.collection-card[hidden] {
  display: none;
}

.collection-card-media {
  display: grid;
  min-height: 430px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf7, #ead9bb);
}

.collection-card-media img {
  width: min(230px, 68%);
  height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(46, 20, 31, 0.22));
}

.collection-card-copy h2 {
  margin: 0 0 12px;
  color: var(--burgundy);
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1;
}

.collection-card-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 18px);
}

.collection-card-copy dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
}

.collection-card-copy dl div {
  border-top: 1px solid rgba(177, 130, 55, 0.45);
  padding-top: 12px;
}

.collection-card-copy dt {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-card-copy dd {
  margin: 5px 0 0;
  color: var(--burgundy);
  font-weight: 800;
}

.collection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.collection-actions > span {
  color: var(--burgundy);
  font-size: 28px;
  font-weight: 950;
}

.contact-page main {
  background:
    linear-gradient(180deg, #080506 0%, #18080d 48%, #fbf3e4 48%, #fffaf0 100%);
}

.contact-page .contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(340px, 0.76fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  padding: clamp(76px, 9vw, 132px) clamp(20px, 6vw, 100px);
}

.contact-page .contact-layout::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 5, 6, 0.96), rgba(73, 9, 26, 0.64), rgba(7, 5, 6, 0.9)),
    url("../images/optimized/real-vineyard-lake-sunset-1920.jpg") center / cover;
  background-image:
    linear-gradient(90deg, rgba(7, 5, 6, 0.96), rgba(73, 9, 26, 0.64), rgba(7, 5, 6, 0.9)),
    image-set(
      url("../images/optimized/real-vineyard-lake-sunset-1920.avif") type("image/avif"),
      url("../images/optimized/real-vineyard-lake-sunset-1920.jpg") type("image/jpeg")
    );
  opacity: 0.92;
}

.contact-page .contact-form,
.contact-page .contact-aside {
  position: relative;
  z-index: 1;
}

.contact-page .contact-form {
  display: grid;
  align-content: start;
  gap: 18px;
  border: 1px solid rgba(255, 252, 243, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.3);
  padding: clamp(24px, 4vw, 48px);
}

.contact-page .contact-form h1 {
  max-width: 760px;
  margin: 0;
  color: var(--burgundy);
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

.contact-page .contact-form > p:not(.eyebrow),
.contact-page .form-status {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.contact-page .contact-form label {
  display: grid;
  gap: 8px;
  color: var(--burgundy);
  font-weight: 850;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(73, 9, 26, 0.18);
  border-radius: 7px;
  background: #fffdf7;
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
}

.contact-page .contact-form textarea {
  resize: vertical;
}

.contact-page .contact-aside {
  display: grid;
  gap: 18px;
  align-self: start;
  align-content: start;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.contact-page .contact-aside img {
  width: 100%;
  min-height: 520px;
  border: 1px solid rgba(255, 252, 243, 0.16);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
  object-fit: cover;
}

.contact-page .contact-aside > div {
  border: 1px solid rgba(255, 252, 243, 0.14);
  border-radius: 8px;
  background: rgba(7, 5, 6, 0.72);
  color: var(--ivory);
  padding: clamp(22px, 3vw, 34px);
}

.contact-page .contact-aside h2 {
  margin: 0 0 12px;
  color: var(--ivory);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1;
}

.contact-page .contact-aside p {
  color: rgba(255, 252, 243, 0.76);
}

.contact-page .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: #fbf3e4;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 6vw, 100px);
}

.contact-page .faq-grid article {
  border: 1px solid rgba(73, 9, 26, 0.16);
  border-radius: 8px;
  background: #fffaf0;
  padding: clamp(20px, 2.8vw, 30px);
}

.contact-page .faq-grid h2 {
  margin: 0 0 10px;
  color: var(--burgundy);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.05;
}

.contact-page .faq-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.luxury-footer {
  border-top-color: rgba(255, 252, 243, 0.1);
  background: #0d0709;
  color: var(--ivory);
}

.luxury-footer p,
.luxury-footer a {
  color: rgba(255, 252, 243, 0.72);
}

.premium-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.premium-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .luxury-hero,
  .cinematic-story,
  .collection-hero,
  .contact-page .contact-layout {
    grid-template-columns: 1fr;
  }

  .luxury-product-row,
  .estate-experiences .experience-grid,
  .tasting-grid,
  .notes-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .luxury-hero,
  .collection-hero,
  .vineyard-heritage {
    min-height: auto;
  }

  .collection-hero {
    background:
      linear-gradient(135deg, rgba(7, 5, 6, 0.95), rgba(73, 9, 26, 0.9)),
      url("../images/optimized/real-vineyard-autumn-row-960.jpg") center / cover;
    background-image:
      linear-gradient(135deg, rgba(7, 5, 6, 0.95), rgba(73, 9, 26, 0.9)),
      image-set(
        url("../images/optimized/real-vineyard-autumn-row-960.avif") type("image/avif"),
        url("../images/optimized/real-vineyard-autumn-row-960.jpg") type("image/jpeg")
      );
  }

  .contact-page .contact-layout::before {
    background:
      linear-gradient(90deg, rgba(7, 5, 6, 0.96), rgba(73, 9, 26, 0.64), rgba(7, 5, 6, 0.9)),
      url("../images/optimized/real-vineyard-lake-sunset-960.jpg") center / cover;
    background-image:
      linear-gradient(90deg, rgba(7, 5, 6, 0.96), rgba(73, 9, 26, 0.64), rgba(7, 5, 6, 0.9)),
      image-set(
        url("../images/optimized/real-vineyard-lake-sunset-960.avif") type("image/avif"),
        url("../images/optimized/real-vineyard-lake-sunset-960.jpg") type("image/jpeg")
      );
  }

  .luxury-hero h1,
  .collection-hero h1 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .hero-bottle-stage {
    min-height: 480px;
  }

  .hero-bottle-stage::before {
    width: min(370px, 84vw);
    height: min(610px, 132vw);
  }

  .hero-bottle-stage img {
    height: min(580px, 126vw);
    max-width: min(320px, 72vw);
  }

  .luxury-proof,
  .luxury-product-row,
  .estate-experiences .experience-grid,
  .tasting-grid,
  .notes-matrix,
  .contact-page .faq-grid,
  .collection-card {
    grid-template-columns: 1fr;
  }

  .luxury-proof article {
    min-height: 116px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 252, 243, 0.1);
  }

  .collection-card-media {
    min-height: 320px;
  }

  .collection-card-media img {
    height: 285px;
  }

  .signature-preview {
    display: grid;
  }
}

@media (max-width: 560px) {
  .luxury-hero,
  .luxury-section,
  .cinematic-story,
  .vineyard-heritage,
  .tasting-lab,
  .signature-preview,
  .collection-hero,
  .collection-filter-shell,
  .collection-grid,
  .contact-page .contact-layout,
  .contact-page .faq-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-page .contact-aside img {
    min-height: 320px;
  }

  .luxury-product-card img {
    height: 330px;
  }

  .cart-item {
    grid-template-columns: 1fr auto;
  }

  .cart-item-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .cart-item-price {
    align-self: start;
  }
}

/* Production polish: shared premium system, accessibility, and responsive fixes */
:root {
  --ink: #231b17;
  --gold-ink: #80591f;
  --focus-ring: #f1c66f;
  --surface-warm: #fffaf0;
  --surface-soft: #f7efe1;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow-soft: 0 18px 50px rgba(46, 20, 31, 0.1);
  --shadow-lift: 0 26px 72px rgba(46, 20, 31, 0.16);
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", sans-serif;
}

html {
  scroll-padding-top: 92px;
}

body,
.simple-page,
.luxury-page {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body[data-lang="zh"] {
  line-height: 1.7;
}

body[data-lang="zh"] h1,
body[data-lang="zh"] h2,
body[data-lang="zh"] h3 {
  line-height: 1.08;
}

::selection {
  background: rgba(124, 14, 42, 0.22);
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.responsive-picture {
  display: block;
}

.product-picture {
  display: contents;
}

.luxury-hero > .responsive-picture,
.vineyard-heritage > .responsive-picture {
  position: absolute;
  inset: 0;
}

.luxury-hero > .responsive-picture img,
.vineyard-heritage > .responsive-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinematic-panel {
  position: relative;
}

.cinematic-panel > .responsive-picture {
  position: absolute;
  inset: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: 10px;
  background: var(--ivory);
  color: var(--burgundy);
  font-weight: 750;
  padding: 11px 16px;
  box-shadow: var(--shadow-lift);
}

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

main {
  overflow: visible;
}

.luxury-hero,
.collection-hero,
.vineyard-heritage,
.cinematic-panel,
.collection-hero-bottles {
  overflow: clip;
}

h1,
h2,
h3 {
  font-weight: 720;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

section[id] {
  scroll-margin-top: 96px;
}

a,
button,
input,
textarea,
select {
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.site-header,
.simple-header,
.luxury-header {
  z-index: 50;
  min-height: 76px;
  gap: clamp(18px, 2.2vw, 34px);
  border-bottom: 1px solid rgba(255, 252, 243, 0.12);
  background: rgba(7, 5, 6, 0.9);
  color: var(--ivory);
  padding: 14px clamp(20px, 4vw, 64px);
  backdrop-filter: blur(20px) saturate(120%);
}

.site-header .brand,
.site-header .site-nav,
.site-header .site-nav a,
.site-header .cart-link,
.site-header .language-toggle,
.site-header .menu-toggle {
  color: var(--ivory);
}

.site-header .brand {
  gap: 11px;
  font-size: 15px;
  font-weight: 740;
  letter-spacing: -0.02em;
}

.site-header .brand-mark {
  width: 42px;
  height: 42px;
  border-color: rgba(241, 198, 111, 0.7);
  background: #11100f;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.site-nav {
  gap: clamp(16px, 2vw, 28px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 252, 243, 0.74) !important;
  font-size: 14px;
  font-weight: 680;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 999px;
  background: var(--focus-ring);
  content: "";
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ivory) !important;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  flex-shrink: 0;
  gap: 8px;
}

.language-toggle,
.cart-link,
.menu-toggle,
.music-player button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 252, 243, 0.18);
  border-radius: 999px;
  background: rgba(255, 252, 243, 0.06);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 720;
  padding: 9px 14px;
}

.menu-toggle {
  display: none;
}

.language-toggle:hover,
.cart-link:hover,
.menu-toggle:hover,
.music-player button:hover {
  border-color: rgba(255, 252, 243, 0.42);
  background: rgba(255, 252, 243, 0.12);
}

.cart-link[aria-current="page"] {
  border-color: rgba(241, 198, 111, 0.72);
  background: rgba(241, 198, 111, 0.14);
}

.cart-link {
  gap: 4px;
}

.cart-link [data-cart-count] {
  display: inline-flex;
  min-width: 1ch;
  justify-content: center;
}

.music-mount {
  width: 104px;
  min-height: 44px;
  flex: 0 0 104px;
}

.music-player {
  display: block;
  width: 100%;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
}

.music-player button {
  width: 100%;
  gap: 7px;
  cursor: pointer;
}

.music-player .music-glyph {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 252, 243, 0.1);
  color: var(--focus-ring);
  font-size: 14px;
}

.music-player[data-playing="true"] button {
  border-color: rgba(241, 198, 111, 0.7);
  background: rgba(124, 14, 42, 0.58);
}

.music-player[data-playing="true"] .music-glyph {
  background: var(--ivory);
  color: var(--burgundy);
}

.button,
button.button,
a.button {
  min-height: 50px;
  border-radius: var(--radius-sm);
  font-weight: 720;
  padding: 13px 20px;
}

.button:hover:not(:disabled),
button.button:hover:not(:disabled),
a.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(73, 9, 26, 0.16);
}

.button.primary:hover:not(:disabled),
button.primary:hover:not(:disabled),
a.primary:hover {
  border-color: #94143a;
  background: #94143a;
}

.eyebrow {
  color: var(--gold-ink);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.09em;
}

.luxury-hero .eyebrow,
.luxury-product-card.is-featured .eyebrow,
.estate-experiences .eyebrow,
.cinematic-story .eyebrow,
.vineyard-heritage .eyebrow,
.collection-hero .eyebrow,
.collection-card.hero-card .eyebrow,
.artist-collection-intro .eyebrow,
.not-found-panel .eyebrow {
  color: #d8ad64;
}

.luxury-hero h1 {
  max-width: 720px;
  font-size: clamp(58px, 6.3vw, 92px);
  font-weight: 690;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.luxury-hero-copy > p:not(.eyebrow) {
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.luxury-product-card,
.estate-experiences article,
.tasting-grid article,
.notes-matrix article,
.collection-card,
.contact-page .contact-form,
.contact-page .contact-aside img,
.contact-page .contact-aside > div,
.contact-page .faq-grid article,
.page-hero,
.story-section,
.proof-panel,
.product-detail,
.detail-tabs article,
.label-showcase,
.split-section,
.location-layout,
.location-experience-grid article,
.photo-gallery,
.cart-panel,
.checkout-form {
  border-radius: var(--radius-md);
}

.luxury-product-card,
.collection-card,
.location-experience-grid article,
.contact-page .faq-grid article {
  box-shadow: var(--shadow-soft);
}

.luxury-product-card,
.collection-card,
.location-experience-grid article {
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.luxury-product-card:hover,
.collection-card:hover,
.location-experience-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(128, 89, 31, 0.42);
  box-shadow: var(--shadow-lift);
}

.luxury-product-card .add-to-cart {
  margin-top: auto;
}

.card-actions {
  display: grid;
  gap: 12px;
  align-self: end;
}

.text-link,
.location-experience-grid a:not(.button),
.form-fallback a {
  color: var(--burgundy);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: rgba(73, 9, 26, 0.3);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link:hover,
.location-experience-grid a:not(.button):hover,
.form-fallback a:hover {
  text-decoration-color: currentColor;
}

.collection-filters button:hover,
.collection-filters button:focus-visible {
  border-color: var(--burgundy);
  background: #f4e7d2;
}

.collection-filters button.active:hover {
  background: var(--burgundy);
}

.collection-card-copy dt,
.simple-page .eyebrow,
.contact-page .contact-form .eyebrow,
.contact-page .faq-section .eyebrow {
  color: var(--gold-ink);
}

.product-detail,
.page-hero.compact {
  border: 1px solid rgba(73, 9, 26, 0.1);
  box-shadow: var(--shadow-soft);
}

.product-detail figure {
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, #fffdf7, #ead9bb);
}

.quantity-control button,
.cart-item-actions button {
  min-width: 44px;
  min-height: 44px;
}

.checkout-consent input {
  width: 22px;
  height: 22px;
  min-height: 22px;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea,
.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  min-height: 50px;
  border-radius: 11px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(73, 9, 26, 0.1);
}

.form-privacy,
.contact-page .contact-form .form-privacy,
.checkout-form .form-privacy {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.contact-page .contact-form > p.form-privacy,
.checkout-form > p.form-privacy {
  font-size: 13px;
}

.checkout-section-title {
  margin: 8px 0 -2px;
  border-top: 1px solid rgba(73, 9, 26, 0.14);
  padding-top: 18px;
  color: var(--burgundy);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.035em;
  line-height: 1.3;
}

.payment-method-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: -4px;
  border: 1px solid rgba(0, 48, 135, 0.2);
  border-radius: 12px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 244, 255, 0.88));
  box-shadow: 0 14px 34px rgba(0, 48, 135, 0.08);
}

.payment-method-note[hidden] {
  display: none;
}

.payment-method-note strong {
  display: block;
  margin-bottom: 4px;
  color: #142c8e;
}

.payment-method-note p {
  margin: 0;
  color: #354156;
  font-size: 14px;
  line-height: 1.55;
}

.payment-note-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  padding: 6px 11px;
  background: #142c8e;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.delivery-method-note {
  border-color: rgba(73, 9, 26, 0.2);
  background: linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(244, 231, 210, 0.82));
  box-shadow: 0 14px 34px rgba(73, 9, 26, 0.08);
}

.delivery-method-note strong {
  color: var(--burgundy);
}

.delivery-method-note p {
  color: var(--muted);
}

.delivery-method-note .payment-note-badge {
  background: var(--burgundy);
}

@media (max-width: 480px) {
  .payment-method-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

label > span > span[aria-hidden="true"] {
  display: inline;
  margin: 0;
  color: #8b1733;
  font: inherit;
}

.map-card {
  font-style: normal;
}

.map-card .button {
  align-self: center;
  margin-top: 10px;
}

.map-card .visit-note {
  max-width: 42ch;
  margin: 0;
  color: rgba(73, 9, 26, 0.82);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.signature-preview > .inline-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.simple-page .not-found-main {
  display: grid;
  min-height: calc(100vh - 76px);
  place-items: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(124, 14, 42, 0.34), transparent 42%),
    #0b0708;
  padding: clamp(64px, 10vw, 132px) 20px;
}

.not-found-panel {
  width: min(860px, 100%);
  border: 1px solid rgba(255, 252, 243, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 243, 0.06);
  color: var(--ivory);
  padding: clamp(32px, 7vw, 76px);
  text-align: center;
}

.not-found-panel h1 {
  margin: 0 auto 22px;
  color: var(--ivory);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.96;
}

.not-found-panel > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 252, 243, 0.76);
  font-size: clamp(17px, 2vw, 21px);
}

.not-found-panel .inline-actions {
  justify-content: center;
}

.not-found-panel .button.secondary {
  border-color: rgba(255, 252, 243, 0.46);
  background: rgba(255, 252, 243, 0.08);
  color: var(--ivory);
}

.gallery-grid img {
  height: auto;
}

.label-photo-grid img {
  height: clamp(420px, 55vw, 620px);
  aspect-ratio: auto;
  object-fit: contain;
}

.faq-section {
  background: #fbf3e4;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 6vw, 100px);
}

.contact-page .faq-section > .section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.contact-page .faq-section > .section-heading h2 {
  margin: 0;
  color: var(--burgundy);
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.98;
}

.contact-page .faq-grid {
  padding: 0;
}

.contact-page .faq-grid h3 {
  margin: 0 0 10px;
  color: var(--burgundy);
  font-size: clamp(23px, 2.5vw, 32px);
  line-height: 1.08;
}

.contact-page .contact-form h1 {
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 0.98;
}

.message-confirmation-card {
  border-radius: var(--radius-md);
}

.premium-reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .premium-reveal:not(.in-view) {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .premium-reveal {
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .luxury-hero.premium-reveal,
.motion-ready .collection-hero.premium-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (min-width: 901px) and (max-width: 1080px) {
  .luxury-hero {
    min-height: 780px;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.68fr);
    gap: 36px;
    padding: 86px 52px;
  }

  .luxury-hero h1 {
    font-size: clamp(58px, 7vw, 76px);
  }

  .hero-bottle-stage {
    min-height: 610px;
  }

  .hero-bottle-stage::before {
    width: 340px;
    height: 600px;
  }

  .hero-bottle-stage img {
    height: 580px;
  }

  .cinematic-story,
  .collection-hero,
  .contact-page .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  }

  .luxury-product-row,
  .estate-experiences .experience-grid,
  .tasting-grid,
  .notes-matrix {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 561px) and (max-width: 900px) {
  .luxury-product-row .luxury-product-card:last-child {
    width: min(100%, 560px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .wine-spec-line .cellar-price-chip {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }

  .wine-spec-line .cellar-price-chip strong {
    grid-column: 1;
    grid-row: 1;
    font-size: 22px;
  }
}

@media (min-width: 821px) and (max-width: 1080px) {
  .site-header,
  .simple-header,
  .luxury-header {
    gap: 12px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .header-actions {
    gap: 6px;
  }

  .music-mount {
    width: 44px;
    flex-basis: 44px;
  }

  .site-header .music-player [data-music-label] {
    display: none;
  }

  .language-toggle,
  .cart-link,
  .music-player button {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 820px) {
  :root {
    --mobile-header-height: 72px;
  }

  html {
    scroll-padding-top: 86px;
  }

  .site-header,
  .simple-header,
  .luxury-header {
    min-height: var(--mobile-header-height);
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 12px;
    row-gap: 8px;
    padding: 10px 16px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    grid-column: auto;
    justify-content: flex-end;
    gap: 8px;
  }

  .music-mount {
    width: 44px;
    flex-basis: 44px;
  }

  .site-header .music-player [data-music-label] {
    display: none;
  }

  .site-nav,
  .luxury-header .site-nav {
    position: fixed;
    z-index: 70;
    top: calc(var(--mobile-header-height) + 8px);
    right: 10px;
    left: 10px;
    max-height: calc(100dvh - var(--mobile-header-height) - 20px);
    overflow-y: auto;
    gap: 2px;
    border: 1px solid rgba(255, 252, 243, 0.14);
    border-radius: var(--radius-md);
    background: rgba(13, 7, 9, 0.98);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
    padding: 10px;
  }

  .site-nav a,
  .luxury-header .site-nav a {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    border-radius: 10px;
    color: rgba(255, 252, 243, 0.78) !important;
    padding: 11px 13px;
  }

  .site-nav a::after {
    top: 10px;
    right: 8px;
    bottom: 10px;
    left: auto;
    width: 3px;
    height: auto;
    transform: scaleY(0);
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgba(255, 252, 243, 0.08);
    color: var(--ivory) !important;
  }

  .site-nav a:hover::after,
  .site-nav a[aria-current="page"]::after {
    transform: scaleY(1);
  }

  .luxury-product-row,
  .estate-experiences .experience-grid,
  .tasting-grid,
  .notes-matrix,
  .luxury-proof,
  .contact-page .faq-grid,
  .detail-tabs,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .luxury-proof article {
    border-right: 1px solid rgba(255, 252, 243, 0.1);
  }

  .luxury-proof article:nth-child(2n) {
    border-right: 0;
  }

  .contact-page .contact-layout {
    padding-top: 52px;
  }
}

@media (max-width: 560px) {
  :root {
    --mobile-header-height: 64px;
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header,
  .simple-header,
  .luxury-header {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    gap: 6px;
    padding: 8px 12px;
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
    gap: 8px;
    font-size: 13px;
    white-space: nowrap;
  }

  .site-header .brand-mark {
    width: 36px;
    height: 36px;
  }

  .language-toggle,
  .cart-link,
  .menu-toggle,
  .music-player button {
    min-height: 44px;
    padding: 8px;
    font-size: 12px;
  }

  .language-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .cart-link {
    grid-column: 3;
    grid-row: 1;
  }

  .menu-toggle {
    grid-column: 4;
    grid-row: 1;
  }

  .header-actions {
    display: contents;
  }

  .site-header > .header-actions .music-mount {
    display: none;
  }

  .site-nav .music-mount {
    display: block;
    width: 100%;
    min-height: 44px;
    flex-basis: auto;
    margin-top: 4px;
  }

  .music-player {
    min-height: 44px;
  }

  .music-player button {
    padding: 8px;
  }

  .site-header > .header-actions .music-player [data-music-label] {
    display: none;
  }

  .site-nav .music-player [data-music-label] {
    display: inline;
  }

  .luxury-hero {
    gap: 24px;
    padding-top: 58px;
    padding-bottom: 44px;
  }

  .luxury-hero h1,
  .collection-hero h1 {
    font-size: clamp(42px, 12.4vw, 52px);
    line-height: 0.96;
  }

  .hero-actions {
    display: grid;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-bottle-stage {
    min-height: 400px;
  }

  .hero-bottle-stage::before {
    width: min(330px, 88vw);
    height: min(430px, 112vw);
  }

  .hero-bottle-stage img {
    height: min(410px, 108vw);
    max-width: min(250px, 66vw);
  }

  .collection-hero {
    gap: 20px;
    padding-top: 58px;
    padding-bottom: 38px;
  }

  .collection-hero-bottles img {
    height: 330px;
  }

  .collection-hero-bottles img.hero-bottle-feature {
    height: 370px;
  }

  .collection-card-media {
    min-height: 290px;
  }

  .collection-card-media img {
    height: 255px;
  }

  .collection-card-copy dl {
    gap: 8px;
    margin: 20px 0;
  }

  .collection-card-copy dt {
    font-size: 9px;
  }

  .collection-card-copy dd {
    font-size: 13px;
    line-height: 1.3;
  }

  .luxury-product-row,
  .estate-experiences .experience-grid,
  .tasting-grid,
  .notes-matrix,
  .luxury-proof,
  .contact-page .faq-grid,
  .detail-tabs,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .luxury-proof article,
  .luxury-proof article:nth-child(2n) {
    border-right: 0;
  }

  .cinematic-panel {
    min-height: 380px;
  }

  .vineyard-heritage {
    min-height: 600px;
  }

  .contact-page .contact-form h1,
  .page-hero h1,
  .product-copy h1,
  .cart-panel h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1;
  }

  .product-detail figure img.bottle-detail-photo {
    min-height: 480px;
    max-height: 560px;
  }

  .contact-page .contact-layout,
  .faq-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .toast {
    right: 16px;
    bottom: 24px;
    left: 16px;
    width: auto;
    transform: translateY(12px);
    border-radius: var(--radius-sm);
    text-align: center;
  }

  .toast.show {
    transform: translateY(0);
  }
}

/* Final launch pass: resilient focus, clearer controls, and compact mobile proof */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #f1c66f;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px #5a1026;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea,
.checkout-form input,
.checkout-form textarea,
.checkout-form select,
.checkout-consent,
.collection-filters button,
.simple-filter-bar button,
.button.secondary {
  border-color: rgba(73, 9, 26, 0.52);
}

.contact-page .contact-form input:focus-visible,
.contact-page .contact-form textarea:focus-visible,
.checkout-form input:focus-visible,
.checkout-form textarea:focus-visible,
.checkout-form select:focus-visible {
  box-shadow: 0 0 0 5px #5a1026;
}

.luxury-product-card.is-featured .text-link,
.collection-card.hero-card .text-link {
  color: #f1c66f;
  text-decoration-color: rgba(241, 198, 111, 0.58);
}

.button:active:not(:disabled),
button.button:active:not(:disabled),
a.button:active {
  transform: translateY(0) scale(0.985);
}

@media (max-width: 560px) {
  .luxury-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .luxury-proof article,
  .luxury-proof article:nth-child(2n) {
    min-height: 132px;
    border-right: 1px solid rgba(255, 252, 243, 0.1);
    padding: 24px 20px;
  }

  .luxury-proof article:nth-child(2n) {
    border-right: 0;
  }

  .luxury-proof article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 252, 243, 0.1);
  }
}

@media (max-width: 820px) {
  html.no-js .site-header {
    position: relative;
    grid-template-columns: 1fr auto;
  }

  html.no-js .menu-toggle,
  html.no-js .music-mount,
  html.no-js [data-lang-toggle] {
    display: none;
  }

  html.no-js .site-nav {
    position: static;
    display: grid;
    grid-column: 1 / -1;
    max-height: none;
    border-radius: var(--radius-sm);
    box-shadow: none;
  }

  html.no-js .header-actions {
    display: flex;
    grid-column: 2;
    grid-row: 1;
  }
}

/* Cellar pricing: factual previous-site comparison without artificial urgency */
.cellar-price-bar {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  border-bottom: 1px solid rgba(73, 9, 26, 0.18);
  background: #ead9b8;
  color: #2e141f;
  padding: 9px clamp(20px, 4vw, 64px);
}

.cellar-price-bar p {
  margin: 0;
  color: inherit;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.cellar-price-bar strong {
  color: var(--burgundy);
  font-weight: 850;
  letter-spacing: 0.015em;
}

.cellar-price-bar a {
  flex: 0 0 auto;
  min-height: 36px;
  border: 1px solid rgba(46, 20, 31, 0.42);
  border-radius: 999px;
  color: #2e141f;
  font-size: 12px;
  font-weight: 780;
  padding: 8px 13px;
  text-decoration: none;
}

.cellar-price-bar a:hover {
  border-color: #2e141f;
  background: rgba(255, 252, 243, 0.38);
}

.price-lockup,
.product-price-lockup {
  display: grid;
  gap: 4px;
  align-content: center;
}

.price-lockup > span,
.product-price-lockup > span {
  color: var(--gold-ink);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-lockup > strong {
  color: var(--burgundy);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 790;
  line-height: 1;
}

.price-lockup > small,
.product-price-lockup > small {
  color: var(--muted);
  font-size: 12px;
}

.collection-card.hero-card .price-lockup > span,
.collection-card.hero-card .price-lockup > strong {
  color: var(--ivory);
}

.collection-card.hero-card .price-lockup > small {
  color: rgba(255, 252, 243, 0.7);
}

.wine-spec-line .cellar-price-chip {
  display: grid;
  flex-basis: 100%;
  grid-template-columns: minmax(0, 1fr);
  gap: 2px;
  align-items: center;
  background: rgba(241, 198, 111, 0.14);
  padding: 10px 12px;
}

.cellar-price-chip small {
  grid-column: 2;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.cellar-price-chip strong {
  grid-column: 1;
  color: var(--burgundy);
  font-size: 19px;
  font-weight: 820;
  line-height: 1.15;
}

.product-price-lockup {
  justify-items: start;
  margin: 20px 0;
  width: min(100%, 390px);
  border: 1px solid rgba(73, 9, 26, 0.16);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 16px 44px rgba(46, 20, 31, 0.08);
  padding: 16px 18px;
}

.product-price-lockup .price {
  margin: 2px 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.simple-page .product-price-lockup .price {
  margin: 3px 0;
  color: var(--burgundy);
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 800;
  line-height: 1;
}

.price-lockup {
  min-width: min(230px, 100%);
  border: 1px solid rgba(73, 9, 26, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 240, 0.76);
  box-shadow: 0 12px 34px rgba(46, 20, 31, 0.08);
  padding: 13px 15px;
}

.price-lockup > .current-price-label,
.product-price-lockup > .current-price-label {
  margin-top: 3px;
  color: var(--gold-ink);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-card.hero-card .price-lockup {
  border-color: rgba(241, 198, 111, 0.3);
  background: rgba(255, 250, 240, 0.07);
  box-shadow: none;
}

.collection-card.hero-card .price-lockup > small {
  color: rgba(255, 252, 243, 0.72);
}

.collection-card.hero-card .price-lockup > .current-price-label {
  color: #f1c66f;
}

.wine-spec-line .cellar-price-chip span {
  border: 0;
  border-radius: 0;
  padding: 0;
}

.luxury-product-card.is-featured .cellar-price-chip {
  border-color: rgba(241, 198, 111, 0.4);
  background: rgba(241, 198, 111, 0.1);
}

.luxury-product-card.is-featured .cellar-price-chip small {
  color: rgba(255, 252, 243, 0.72);
}

.luxury-product-card.is-featured .cellar-price-chip strong {
  color: var(--ivory);
}

.cart-item-copy > span > strong {
  color: var(--burgundy);
}

.cart-panel .cart-price-note,
.simple-page .cart-panel .cart-price-note {
  max-width: 52ch;
  margin: 18px 0 0;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  padding-left: 13px;
}

.collection-brand-note {
  max-width: 48ch;
  margin-top: 20px;
  border-left: 2px solid var(--gold);
  color: rgba(255, 252, 243, 0.86) !important;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.01em;
  padding-left: 13px;
}

.checkout-intro {
  max-width: 60ch;
  margin: -6px 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.order-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 10px;
  padding: 0;
  list-style: none;
}

.order-process li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  border: 1px solid rgba(73, 9, 26, 0.13);
  border-radius: 11px;
  background: rgba(255, 250, 240, 0.72);
  padding: 12px;
}

.order-process li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 850;
}

.order-process strong,
.order-process small {
  display: block;
}

.order-process strong {
  color: var(--simple-ink);
  font-size: 13px;
  line-height: 1.3;
}

.order-process small {
  margin-top: 3px;
  color: var(--simple-muted);
  font-size: 11px;
  line-height: 1.4;
}

.care-main {
  background: var(--surface-soft);
}

.care-hero {
  min-height: 600px;
}

.care-intro {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 96px) 32px;
}

.care-intro h2 {
  max-width: 16ch;
  margin: 0 0 20px;
  color: var(--burgundy);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.98;
}

.care-intro > p:last-child {
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 6vw, 96px) clamp(64px, 8vw, 108px);
}

.care-grid article {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border: 1px solid rgba(73, 9, 26, 0.14);
  border-radius: var(--radius-md);
  background: var(--surface-warm);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 3.5vw, 42px);
}

.care-grid h2 {
  max-width: 18ch;
  margin: 0 0 14px;
  color: var(--burgundy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.care-grid p {
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.68;
}

.care-grid a {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(73, 9, 26, 0.28);
  text-underline-offset: 4px;
}

.care-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: #93672b;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 850;
  line-height: 1;
}

.care-contact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  background: var(--plum);
  padding: clamp(54px, 7vw, 90px) clamp(20px, 6vw, 96px);
}

.care-contact h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--ivory);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
}

.care-contact .eyebrow {
  color: #f1c66f;
}

@media (max-width: 820px) {
  .care-grid {
    grid-template-columns: 1fr;
  }

  .care-grid article {
    min-height: auto;
  }

  .care-contact {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .cellar-price-bar {
    min-height: 44px;
    justify-content: center;
    padding: 8px 14px;
  }

  .cellar-price-bar p {
    font-size: 12px;
    text-align: center;
  }

  .cellar-price-bar a {
    display: none;
  }

  .care-number {
    position: static;
    display: block;
    margin-bottom: 14px;
    font-size: 28px;
  }

  .collection-actions {
    align-items: stretch;
  }

  .wine-spec-line .cellar-price-chip {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    border-radius: var(--radius-sm);
  }

  .cellar-price-chip strong {
    grid-column: 1;
    grid-row: 1;
    font-size: 22px;
  }

  .price-lockup {
    width: 100%;
  }
}

/* Blue Horse artist story and bottle-format collection */
.artist-page main {
  background: #fbf3e4;
}

.artist-page .collection-hero {
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 0.98fr);
  background:
    radial-gradient(circle at 84% 28%, rgba(38, 112, 145, 0.34), transparent 32%),
    linear-gradient(118deg, #070506 0%, #180a11 52%, #081722 100%);
}

.artist-page .collection-hero > div {
  position: relative;
  z-index: 2;
}

.artist-hero-visual {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(202, 222, 226, 0.2);
  border-radius: var(--radius-lg);
  background: #0a0a0e;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 34px 90px rgba(0, 0, 0, 0.34);
}

.artist-hero-portrait {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center 18%;
}

.artist-page .luxury-proof {
  border-color: rgba(147, 192, 207, 0.16);
  background: #081118;
}

.artist-page .luxury-proof article {
  border-color: rgba(147, 192, 207, 0.14);
}

.artist-page .label-showcase {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  border-top: 1px solid rgba(73, 9, 26, 0.12);
  border-bottom: 1px solid rgba(73, 9, 26, 0.12);
  background: #efe4d1;
  padding: clamp(68px, 9vw, 122px) clamp(20px, 6vw, 100px);
}

.artist-page .label-showcase > div:first-child {
  max-width: 780px;
}

.artist-page .label-showcase h2 {
  margin: 0 0 18px;
  color: var(--burgundy);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
}

.artist-page .label-showcase p {
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.68;
}

.artist-page .label-showcase .mini-stats {
  border: 1px solid rgba(73, 9, 26, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.72);
  box-shadow: var(--shadow-soft);
  padding: clamp(18px, 3vw, 30px);
}

.artist-label-aside {
  display: grid;
  gap: 18px;
  align-self: stretch;
}

.artist-label-bottles {
  position: relative;
  display: grid;
  min-height: 390px;
  grid-template-rows: auto 1fr;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(88, 140, 156, 0.25);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 42%, rgba(66, 132, 157, 0.32), transparent 42%),
    #0b1118;
  box-shadow: 0 26px 62px rgba(35, 18, 24, 0.18);
  padding: 20px 18px 14px;
}

.artist-label-bottles::after {
  position: absolute;
  right: 10%;
  bottom: 5%;
  left: 10%;
  height: 14%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.46);
  filter: blur(17px);
  content: "";
}

.artist-label-bottles figcaption {
  position: relative;
  z-index: 2;
  max-width: 260px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.artist-label-bottle-row {
  display: flex;
  min-height: 0;
  align-items: end;
  justify-content: center;
  gap: clamp(2px, 1vw, 12px);
}

.artist-label-bottle-row img {
  position: relative;
  z-index: 1;
  width: min(138px, 46%);
  height: 310px;
  object-fit: contain;
  filter:
    drop-shadow(0 26px 28px rgba(0, 0, 0, 0.52))
    drop-shadow(0 5px 10px rgba(50, 111, 139, 0.2));
}

.artist-label-bottle-row img.artist-bottle-sculpted {
  height: 290px;
}

.artist-page .notes-matrix article {
  display: flex;
  min-height: 250px;
  flex-direction: column;
}

.artist-page .notes-matrix .text-link,
.artist-page .notes-matrix .inline-actions {
  margin-top: auto;
}

.artist-page .notes-matrix .inline-actions {
  justify-content: flex-start;
}

.artist-collection-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 54px);
  align-items: end;
  margin: 0 clamp(20px, 6vw, 100px) 34px;
  border: 1px solid rgba(174, 204, 211, 0.22);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 92% 16%, rgba(47, 118, 146, 0.3), transparent 34%),
    #0c0c11;
  box-shadow: 0 26px 70px rgba(46, 20, 31, 0.18);
  padding: clamp(30px, 5vw, 54px);
}

.artist-collection-intro h2 {
  max-width: 780px;
  margin: 0 0 12px;
  color: var(--ivory);
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1;
}

.artist-collection-intro p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 252, 243, 0.72);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
}

.artist-collection-intro .button.secondary {
  border-color: rgba(255, 252, 243, 0.55);
  background: transparent;
  color: var(--ivory);
}

.artist-collection-intro .button.secondary:hover {
  border-color: var(--ivory);
  background: rgba(255, 252, 243, 0.1);
}

.artist-wine-card {
  border-color: rgba(70, 119, 137, 0.28);
}

.artist-wine-card .collection-card-copy h2 {
  font-size: clamp(28px, 3.65vw, 50px);
  overflow-wrap: anywhere;
}

.artist-wine-card .button.secondary {
  border-color: rgba(73, 9, 26, 0.46);
  background: #fffaf0;
  color: var(--burgundy);
}

.artist-wine-card .button.secondary:hover {
  border-color: var(--burgundy);
  background: #f4e7d2;
}

.artist-page .signature-preview .button.secondary {
  border-color: rgba(73, 9, 26, 0.46);
  background: #fffaf0;
  color: var(--burgundy);
}

.artist-page .signature-preview .button.secondary:hover {
  border-color: var(--burgundy);
  background: #f4e7d2;
}

.artist-bottle-media {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, #fffaf0 0%, #e8ece7 50%, #bccdd0 100%);
}

.artist-bottle-media img,
.artist-wine-card .artist-bottle-media img {
  width: min(270px, 74%);
  height: 410px;
}

.new-artist-merlot-card .artist-bottle-media img {
  width: min(300px, 82%);
}

.merlot-standard-media img {
  transform: scale(1.14);
}

.merlot-sculpted-media img {
  transform: scale(1.02);
}

.merlot-magnum-media img {
  transform: scale(0.92);
}

.artist-story-preview {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.artist-story-bottle {
  display: grid;
  min-height: 540px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(70, 119, 137, 0.22);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 35%, #fffaf0 0%, #e5ebe7 54%, #b9c9cd 100%);
}

.simple-page .artist-story-bottle img {
  width: min(280px, 72%);
  min-height: 0;
  height: 500px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  filter: drop-shadow(0 28px 34px rgba(18, 37, 47, 0.26));
}

@media (max-width: 1080px) {
  .artist-page .collection-hero {
    grid-template-columns: 1fr;
  }

  .artist-page .label-showcase {
    grid-template-columns: 1fr;
  }

  .artist-hero-visual,
  .artist-hero-portrait {
    min-height: 560px;
  }

  .artist-label-aside {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .artist-hero-visual {
    min-height: 500px;
  }

  .artist-hero-portrait {
    min-height: 500px;
  }

  .artist-page .label-showcase,
  .artist-collection-intro,
  .artist-story-preview {
    grid-template-columns: 1fr;
  }

  .artist-label-aside {
    grid-template-columns: 1fr;
  }

  .artist-collection-intro {
    align-items: start;
  }

  .artist-collection-intro .button {
    justify-self: start;
  }

  .artist-story-bottle {
    min-height: 460px;
  }

  .simple-page .artist-story-bottle img {
    height: 420px;
  }
}

@media (max-width: 560px) {
  .artist-hero-visual {
    min-height: 0;
  }

  .artist-hero-portrait {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .artist-label-bottles {
    min-height: 340px;
    padding: 18px 14px 12px;
  }

  .artist-label-bottle-row img {
    height: 260px;
  }

  .artist-label-bottle-row img.artist-bottle-sculpted {
    height: 242px;
  }

  .artist-page .label-showcase {
    padding: 56px 16px;
  }

  .artist-collection-intro {
    margin: 0 16px 24px;
    padding: 28px 22px;
  }

  .artist-collection-intro .button {
    width: 100%;
  }

  .artist-bottle-media img,
  .artist-wine-card .artist-bottle-media img {
    height: 270px;
  }

  .artist-story-bottle {
    min-height: 380px;
  }

  .simple-page .artist-story-bottle img {
    height: 350px;
  }
}

.site-footer nav a,
.footer-contact a,
.artist-page .notes-matrix .text-link {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
}

.checkout-side {
  display: grid;
  gap: 18px;
  align-self: start;
}

.stripe-checkout-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(190, 153, 95, 0.42);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(52, 22, 31, 0.96), rgba(21, 16, 16, 0.98));
  box-shadow: 0 20px 50px rgba(8, 5, 5, 0.24);
}

.stripe-checkout-card h2 { margin: 0.25rem 0 0.75rem; }
.stripe-checkout-card .button { width: 100%; justify-content: center; margin-top: 0.75rem; }
.stripe-checkout-card .form-status { margin-bottom: 0; }

.checkout-fallback-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted, #b9aa9b);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-fallback-heading::before,
.checkout-fallback-heading::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(190, 153, 95, 0.28);
}

.checkout-empty-guide,
.checkout-success,
.checkout-no-js {
  display: grid;
  gap: 16px;
  align-self: start;
  border: 1px solid var(--simple-line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 94% 8%, rgba(177, 130, 55, 0.15), transparent 34%),
    var(--simple-surface);
  padding: clamp(28px, 4vw, 48px);
}

.checkout-success {
  border-color: rgba(47, 91, 58, 0.38);
  background:
    radial-gradient(circle at 94% 8%, rgba(47, 91, 58, 0.14), transparent 34%),
    var(--simple-surface);
}

.checkout-success.is-unconfirmed {
  border-color: rgba(147, 103, 43, 0.45);
  background:
    radial-gradient(circle at 94% 8%, rgba(147, 103, 43, 0.16), transparent 34%),
    var(--simple-surface);
}

.checkout-empty-guide h2,
.checkout-success h2,
.checkout-no-js h2 {
  margin: 0;
  color: var(--simple-ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.checkout-empty-guide p,
.checkout-success p,
.checkout-no-js p {
  margin: 0;
  color: var(--simple-muted);
  font-size: 17px;
  line-height: 1.65;
}

.checkout-empty-guide .button,
.checkout-no-js .button {
  justify-self: start;
  margin-top: 6px;
}

.checkout-success .order-reference {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(73, 9, 26, 0.18);
  border-radius: 11px;
  background: #fffdf7;
  padding: 16px;
}

.checkout-success .order-reference span {
  color: var(--simple-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-success .order-reference strong {
  color: var(--simple-ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(18px, 2.3vw, 24px);
  letter-spacing: 0.035em;
}

.order-summary-receipt {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(73, 9, 26, 0.13);
  border-radius: 12px;
  background: rgba(255, 253, 247, 0.78);
  padding: 16px;
}

.order-summary-receipt[hidden] {
  display: none;
}

.order-summary-receipt h3 {
  margin: 0;
  color: var(--simple-ink);
  font-size: 16px;
}

.order-summary-receipt ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-summary-receipt li,
.order-summary-receipt dl div {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: baseline;
}

.order-summary-receipt li {
  color: var(--simple-muted);
  font-size: 14px;
  line-height: 1.4;
}

.order-summary-receipt li strong {
  color: var(--simple-ink);
  white-space: nowrap;
}

.order-summary-receipt dl {
  display: grid;
  gap: 6px;
  margin: 0;
  border-top: 1px solid rgba(73, 9, 26, 0.1);
  padding-top: 10px;
}

.order-summary-receipt dt,
.order-summary-receipt dd {
  margin: 0;
  color: var(--simple-muted);
  font-size: 13px;
}

.order-summary-receipt dd {
  color: var(--simple-ink);
  font-weight: 760;
  text-align: right;
}

.checkout-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.text-button {
  align-self: center;
  border: 0;
  background: transparent;
  color: var(--burgundy);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-button:hover {
  text-decoration-thickness: 2px;
}

.text-button:focus-visible {
  outline: 3px solid rgba(177, 130, 55, 0.55);
  outline-offset: 4px;
}

.form-receipt {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(47, 91, 58, 0.38);
  border-radius: 14px;
  background: rgba(244, 250, 244, 0.94);
  padding: 18px;
}

.form-receipt[hidden] {
  display: none;
}

.form-receipt.is-unconfirmed {
  border-color: rgba(147, 103, 43, 0.45);
  background: #fffaf0;
}

.form-receipt h2,
.contact-page .form-receipt h2 {
  margin: 0;
  color: var(--burgundy);
  font-size: clamp(24px, 3vw, 34px);
}

.form-receipt p,
.contact-page .form-receipt p {
  margin: 0;
  color: var(--simple-muted);
  font-size: 14px;
}

.form-receipt .order-reference {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(73, 9, 26, 0.14);
  border-radius: 10px;
  background: #fff;
  padding: 12px;
}

.form-receipt .order-reference span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-receipt .order-reference strong {
  color: var(--simple-ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 17px;
}

.form-receipt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.receipt-history {
  border: 1px solid rgba(73, 9, 26, 0.14);
  border-radius: 14px;
  background: rgba(255, 253, 247, 0.86);
  color: var(--simple-ink);
}

.receipt-history[hidden] {
  display: none;
}

.receipt-history > details > summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 14px 18px;
  color: var(--burgundy);
  font-size: 15px;
  font-weight: 820;
  list-style-position: inside;
}

.receipt-history > details > summary::marker {
  color: var(--gold-ink);
}

.receipt-history > details > summary span:last-child {
  margin-left: auto;
  color: var(--simple-muted);
  font-size: 13px;
}

.receipt-history-body {
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(73, 9, 26, 0.1);
  padding: 16px 18px 18px;
}

.receipt-history-body > p {
  margin: 0;
  color: var(--simple-muted);
  font-size: 13px;
  line-height: 1.55;
}

.receipt-history-list {
  display: grid;
  max-height: 520px;
  gap: 0;
  margin: 0;
  overflow-y: auto;
  padding: 0;
  list-style: none;
}

.receipt-history-item {
  display: grid;
  gap: 10px;
  border-top: 1px solid rgba(73, 9, 26, 0.1);
  padding: 14px 0;
}

.receipt-history-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.receipt-history-reference {
  display: grid;
  gap: 4px;
}

.receipt-history-reference time {
  color: var(--simple-muted);
  font-size: 12px;
}

.receipt-history-reference time.needs-follow-up {
  color: #76501d;
  font-weight: 820;
}

.receipt-history-reference strong {
  overflow-wrap: anywhere;
  color: var(--simple-ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 15px;
  letter-spacing: 0.025em;
}

.receipt-history-warning {
  margin: 0;
  border-left: 3px solid rgba(177, 130, 55, 0.62);
  color: #65471f;
  padding-left: 10px;
  font-size: 12px;
  line-height: 1.5;
}

.receipt-history-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}

.receipt-history-actions .text-button,
.receipt-history-actions .text-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  font-size: 13px;
}

.receipt-history-order-details {
  border: 1px solid rgba(73, 9, 26, 0.1);
  border-radius: 10px;
  background: #fff;
  padding: 0 12px;
}

.receipt-history-order-details > summary {
  min-height: 44px;
  cursor: pointer;
  padding: 12px 0;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 760;
}

.receipt-history-order-details ul,
.receipt-history-order-details dl {
  display: grid;
  gap: 7px;
  margin: 0;
  border-top: 1px solid rgba(73, 9, 26, 0.08);
  padding: 10px 0;
  list-style: none;
}

.receipt-history-order-details li,
.receipt-history-order-details dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--simple-muted);
  font-size: 12px;
  line-height: 1.45;
}

.receipt-history-order-details li strong,
.receipt-history-order-details dd {
  margin: 0;
  color: var(--simple-ink);
  font-weight: 760;
  text-align: right;
}

.receipt-history-order-details dt {
  margin: 0;
}

.receipt-history-clear {
  justify-self: start;
}

.checkout-success .confirmation-storage-note {
  font-size: 13px;
}

.shipping-address {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 2px 0;
  border: 1px solid rgba(73, 9, 26, 0.28);
  border-radius: 12px;
  padding: 18px;
}

.shipping-address legend {
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 850;
  padding: 0 7px;
}

.shipping-address-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(126px, 0.8fr) minmax(110px, 0.55fr);
  gap: 12px;
}

.shipping-address label {
  min-width: 0;
}

.field-hint,
.checkout-form .field-hint {
  margin: -4px 0 0;
  color: var(--simple-muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-care-link {
  margin: -4px 0 0;
  font-size: 14px;
}

.form-care-link a {
  color: var(--burgundy);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.no-js-shopping-note {
  max-width: 1240px;
  margin: 18px auto 0;
  border: 1px solid rgba(73, 9, 26, 0.28);
  border-radius: 10px;
  background: #fffaf2;
  color: var(--simple-muted);
  line-height: 1.55;
  padding: 16px 24px;
}

.no-js-shopping-note strong {
  color: var(--simple-ink);
}

.no-js-shopping-note a {
  color: var(--burgundy);
  font-weight: 760;
  text-decoration: underline;
}

html.no-js .add-to-cart,
html.no-js [data-quantity-control],
html.no-js .collection-filters,
html.no-js [data-filter-status] {
  display: none !important;
}

html.no-js [data-checkout-form],
html.no-js [data-checkout-empty-guide],
html.no-js [data-order-success],
html.no-js .cart-panel {
  display: none !important;
}

html.no-js .checkout-layout {
  grid-template-columns: minmax(0, 1fr);
}

html.no-js .checkout-side {
  width: min(100%, 720px);
  justify-self: center;
}

html.cart-state-empty .site-footer,
html.cart-state-has-items .site-footer,
html.cart-state-receipt .site-footer {
  visibility: hidden;
}

html.cart-state-has-items [data-cart-summary],
html.cart-state-has-items [data-checkout-form] {
  display: grid !important;
}

html.cart-state-has-items [data-cart-add-more] {
  display: inline-flex !important;
}

html.cart-state-has-items [data-checkout-empty-guide] {
  display: none !important;
}

html.cart-state-has-items [data-cart-items] {
  min-height: 104px;
}

html.cart-state-has-items [data-cart-items] > .cart-empty {
  visibility: hidden;
}

html.cart-state-receipt [data-checkout-empty-guide] {
  display: none !important;
}

html.cart-state-receipt [data-order-success] {
  display: grid !important;
  visibility: hidden;
}

@media (max-width: 700px) {
  .shipping-address-row {
    grid-template-columns: 1fr;
  }

  .order-process {
    grid-template-columns: 1fr;
  }

  .checkout-success-actions {
    display: grid;
  }

  .checkout-success-actions .button {
    width: 100%;
  }

  .no-js-shopping-note {
    margin: 14px 16px 0;
    padding: 15px 16px;
  }
}

body[data-page="shop"] .signature-preview > .button {
  min-width: 150px;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .premium-reveal,
  .motion-ready .premium-reveal:not(.in-view),
  .premium-parallax {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------------------------------------------------------------------------
   Estate hero — static black cover. Giant bilingual headline behind a
   standing Icon Shiraz bottle on the right, lede and actions lower-left.
--------------------------------------------------------------------------- */
.estate-hero {
  position: relative;
  min-height: clamp(560px, calc(100svh - 132px), 980px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 62% 48% at 50% 40%, rgba(255, 244, 224, 0.05), rgba(255, 244, 224, 0) 70%),
    radial-gradient(ellipse 120% 90% at 50% 55%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.82)),
    #050505;
}

.estate-hero-scene {
  position: relative;
  z-index: 1;
  /* the right padding reserves the bottle's column so the headline
     always stops before the glass instead of running underneath it */
  padding: clamp(46px, 8vh, 96px) calc(clamp(4vw, 16vw, 22vw) + clamp(140px, 15vw, 230px)) 0 clamp(22px, 6vw, 90px);
  text-align: center;
}

.estate-hero-scene .eyebrow {
  margin-bottom: clamp(14px, 2.4vh, 26px);
  color: var(--tan);
}

.estate-hero-title {
  margin: 0 auto;
  max-width: 15ch;
  color: var(--ivory);
  font-size: clamp(50px, 7vw, 112px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

:root[lang="zh-Hans"] .estate-hero-title,
body[data-lang="zh"] .estate-hero-title {
  /* greedy wrap at 7.6em splits the approved line cleanly:
     百年传承，酿就 / 巴罗萨深度。 without breaking 酿就 apart */
  max-width: 7.6em;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: wrap;
}

.estate-hero-bottle {
  position: absolute;
  right: clamp(4vw, 16vw, 22vw);
  bottom: 0;
  z-index: 2;
  margin: 0;
}

.estate-hero-bottle img {
  width: auto;
  height: clamp(430px, 74vh, 780px);
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.65));
}

.estate-hero-copy {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: min(600px, 52vw);
  padding: 0 0 clamp(30px, 6vh, 66px) clamp(22px, 7vw, 110px);
}

.estate-hero-lede {
  max-width: 34ch;
  margin: 0 0 26px;
  color: rgba(255, 252, 243, 0.78);
  font-size: clamp(15px, 1.2vw, 19px);
}

.estate-hero-outline {
  position: absolute;
  right: -0.03em;
  bottom: -0.24em;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(194, 168, 106, 0.22);
  font-size: clamp(120px, 13vw, 210px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

@supports not (-webkit-text-stroke: 1px black) {
  .estate-hero-outline {
    color: rgba(194, 168, 106, 0.12);
  }
}

@media (max-width: 980px) {
  .estate-hero-scene {
    padding-right: calc(clamp(12px, 6vw, 60px) + clamp(120px, 19vw, 170px));
  }

  .estate-hero-bottle {
    right: clamp(12px, 6vw, 60px);
  }

  .estate-hero-bottle img {
    height: clamp(390px, 58vh, 620px);
  }
}

@media (max-width: 760px) {
  .estate-hero {
    min-height: clamp(560px, calc(100svh - 120px), 860px);
  }

  .estate-hero-title {
    font-size: clamp(40px, 11.4vw, 52px);
  }

  .estate-hero-scene {
    padding-right: clamp(80px, 24vw, 140px);
    text-align: left;
  }

  .estate-hero-title {
    margin: 0;
  }

  .estate-hero-bottle {
    right: -6vw;
  }

  .estate-hero-bottle img {
    height: clamp(330px, 46vh, 460px);
    filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.6));
  }

  .estate-hero-copy {
    width: min(88vw, 460px);
  }

  .estate-hero-lede {
    max-width: 26ch;
  }

  .estate-hero-outline {
    font-size: clamp(84px, 20vw, 130px);
  }
}

/* Blue Horse bottle-size note inside the shop grid */
.collection-format-note {
  margin: 6px 0;
  padding: 16px clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  background: var(--paper);
}

.collection-format-note p {
  margin: 0;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.6;
}

.collection-format-note strong {
  color: var(--burgundy);
}

.collection-format-note a {
  color: var(--burgundy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
