/* ===========================================================================
   Kadenge Estate — design system
   "The Estate Ledger": ivory paper, black ink, burgundy accent, gold hairlines.
   Serif display type, ruled grids, quiet motion.
   =========================================================================== */

:root {
  --ink: #120e10;
  --ink-soft: #2b2226;
  --ink-2: #1c1517;
  --burgundy: #5b0f22;
  --burgundy-deep: #3d0a17;
  --burgundy-bright: #7d1631;
  --ivory: #f6f1e7;
  --paper: #fbf8f2;
  --cream: #ede4d3;
  --sand: #dccfb6;
  --gold: #b48c4f;
  --gold-ink: #785a25;
  --gold-light: #d8ad64;
  --muted: #5e5650;
  --muted-dark: rgba(246, 241, 231, 0.74);
  --line: rgba(18, 14, 16, 0.14);
  --line-strong: rgba(18, 14, 16, 0.4);
  --line-dark: rgba(246, 241, 231, 0.16);
  --line-dark-strong: rgba(246, 241, 231, 0.34);
  --success: #1f5d3a;
  --danger: #8e1a2f;
  --focus-ring: #5b0f22;
  --focus-ring-dark: #d8ad64;
  --shadow-soft: 0 18px 48px rgba(18, 14, 16, 0.12);
  --shadow-lift: 0 22px 60px rgba(18, 14, 16, 0.26);
  --radius: 2px;
  --gutter: clamp(20px, 5vw, 72px);
  --page-max: 1360px;
  --inset: max(var(--gutter), calc((100% - var(--page-max)) / 2));
  --header-height: 72px;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", SimSun, serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

[hidden]:not([hidden="until-found"]) {
  display: none !important;
}

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

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

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

button {
  cursor: pointer;
}

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

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

::selection {
  background: var(--burgundy);
  color: var(--ivory);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: inherit;
  text-wrap: balance;
}

h1 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
}

h2 {
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.08;
}

h3 {
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.2;
}

p {
  margin: 0;
}

p + p {
  margin-top: 0.9em;
}

.eyebrow {
  margin: 0;
  color: var(--gold-ink);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow + h1,
.eyebrow + h2,
.eyebrow + h3 {
  margin-top: 16px;
}

h1 + p,
h2 + p,
h3 + p {
  margin-top: 18px;
}

html[lang="zh-Hans"] .eyebrow {
  letter-spacing: 0.16em;
}

html[lang="zh-Hans"] h1,
html[lang="zh-Hans"] h2,
html[lang="zh-Hans"] h3 {
  letter-spacing: 0.01em;
}

/* ---------------------------------------------------------------------------
   Utilities
   --------------------------------------------------------------------------- */

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-160%);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  box-shadow: var(--shadow-lift);
  transition: transform 160ms var(--ease);
}

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

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

.responsive-picture,
.product-picture {
  display: block;
}

.rule {
  border: 0;
  border-top: 1px solid var(--line);
}

/* ---------------------------------------------------------------------------
   Buttons and links
   --------------------------------------------------------------------------- */

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  padding: 14px 26px;
  cursor: pointer;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}

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

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

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

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

.button.secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.button.secondary:hover {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.button.glass,
.button.light {
  background: transparent;
  border-color: var(--line-dark-strong);
  color: var(--ivory);
}

.button.glass:hover,
.button.light:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

html[lang="zh-Hans"] .button {
  letter-spacing: 0.1em;
  font-size: 13px;
}

.text-link,
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 0;
  box-shadow: inset 0 -1px 0 var(--gold);
  transition: box-shadow 160ms var(--ease), color 160ms var(--ease);
}

.text-link:hover,
.text-button:hover {
  color: var(--burgundy);
  box-shadow: inset 0 -2px 0 var(--burgundy);
}

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

.hero-actions,
.inline-actions {
  margin-top: 30px;
}

/* ---------------------------------------------------------------------------
   Header
   --------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 0 var(--inset);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--ivory);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  overflow: hidden;
  place-items: center;
  flex: none;
  border: 1px solid rgba(216, 173, 100, 0.6);
  border-radius: 50%;
  background: var(--ink-2);
}

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

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 160ms var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

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

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

html[lang="zh-Hans"] .site-nav a {
  font-size: 14px;
  letter-spacing: 0.1em;
}

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

.language-toggle,
.cart-link,
.menu-toggle,
.music-player button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line-dark-strong);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  white-space: nowrap;
  transition: border-color 160ms var(--ease), background-color 160ms var(--ease), color 160ms var(--ease);
}

.language-toggle:hover,
.cart-link:hover,
.menu-toggle:hover,
.music-player button:hover {
  border-color: var(--ivory);
  background: rgba(246, 241, 231, 0.06);
}

.cart-link {
  border-color: var(--gold);
}

.cart-link [data-cart-count] {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold-light);
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0;
  padding: 0 6px;
}

.cart-link[aria-current="page"] {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--ink);
}

.cart-link[aria-current="page"] [data-cart-count] {
  background: var(--ink);
  color: var(--ivory);
}

.menu-toggle {
  display: none;
}

.music-mount {
  display: flex;
}

.music-player {
  display: block;
  min-height: 40px;
}

.music-player button {
  width: 100%;
}

.music-player .music-glyph {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(246, 241, 231, 0.12);
  color: var(--gold-light);
  font-size: 12px;
}

.music-player[data-playing="true"] button {
  border-color: var(--gold-light);
  background: rgba(125, 22, 49, 0.55);
}

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

/* ---------------------------------------------------------------------------
   Value bar and no-JS notes
   --------------------------------------------------------------------------- */

.cellar-price-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  padding: 11px var(--inset);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
}

.cellar-price-bar p {
  margin: 0;
}

.cellar-price-bar strong {
  color: var(--ink);
  font-weight: 650;
  letter-spacing: 0.04em;
}

.cellar-price-bar a {
  color: var(--ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: inset 0 -1px 0 var(--gold);
}

.cellar-price-bar a:hover {
  color: var(--burgundy);
}

.no-js-shopping-note {
  margin: 20px var(--inset) 0;
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--burgundy);
  background: var(--paper);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  padding: 16px 20px;
}

.no-js-shopping-note strong {
  color: var(--ink);
}

.no-js-shopping-note a {
  color: var(--burgundy);
  font-weight: 650;
  text-decoration: underline;
}

/* ---------------------------------------------------------------------------
   Sections and headings
   --------------------------------------------------------------------------- */

main {
  display: block;
}

main > section {
  padding: clamp(56px, 8vw, 120px) var(--inset);
}

.section-heading,
.luxury-section-heading {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.section-heading > p:not(.eyebrow),
.luxury-section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
}

/* ---------------------------------------------------------------------------
   Forms
   --------------------------------------------------------------------------- */

label {
  display: grid;
  gap: 8px;
}

label > span:first-child {
  color: var(--ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

label > span:first-child [aria-hidden="true"] {
  color: var(--burgundy);
}

input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  padding: 12px 14px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

input:not([type="checkbox"]):not([type="radio"]):focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(91, 15, 34, 0.28);
}

input:disabled,
select:disabled,
textarea:disabled {
  background-color: var(--cream);
  color: var(--muted);
}

input[type="date"] {
  display: block;
  min-width: 0;
  appearance: none;
  -webkit-appearance: none;
}

input[type="date"]::-webkit-date-and-time-value {
  min-height: 1.5em;
  text-align: left;
}

input::placeholder,
textarea::placeholder {
  color: rgba(94, 86, 80, 0.7);
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  flex: none;
  accent-color: var(--burgundy);
}

.field-hint {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

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

.form-status strong {
  color: var(--ink);
}

.form-privacy,
.form-fallback,
.form-care-link,
.confirmation-storage-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.form-fallback a,
.form-care-link a,
.form-privacy a {
  color: var(--burgundy);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-preview-notice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  border: 1px solid var(--gold);
  border-left: 3px solid var(--gold);
  background: rgba(216, 173, 100, 0.12);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
  padding: 14px 16px;
}

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

.checkout-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 14px 16px;
}

.checkout-consent input {
  margin-top: 3px;
}

.checkout-consent span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------------------------------------------------------------------------
   Feedback: toast and confirmation dialog
   --------------------------------------------------------------------------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 90;
  transform: translate(-50%, 8px);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0;
  pointer-events: none;
  padding: 12px 18px;
  box-shadow: var(--shadow-lift);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}

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

.message-confirmation {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(18, 14, 16, 0.72);
  opacity: 0;
  padding: 20px;
  transition: opacity 180ms var(--ease);
}

.message-confirmation.show {
  opacity: 1;
}

.message-confirmation-card {
  display: grid;
  width: min(100%, 560px);
  gap: 14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 32px;
  box-shadow: var(--shadow-lift);
  transform: translateY(10px);
  transition: transform 220ms var(--ease);
}

.message-confirmation.show .message-confirmation-card {
  transform: translateY(0);
}

.message-confirmation-card h2 {
  font-size: clamp(26px, 3vw, 34px);
}

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

.message-confirmation.is-error .message-confirmation-card {
  border-color: var(--danger);
}

.message-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ---------------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------------- */

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px clamp(32px, 6vw, 96px);
  padding: clamp(56px, 7vw, 96px) var(--inset) 40px;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--ivory);
}

.footer-brand strong {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.footer-brand > p {
  max-width: 44ch;
  color: var(--muted-dark);
  font-size: 16px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 22px !important;
  color: var(--muted-dark);
  font-size: 14px;
}

.footer-contact a {
  color: var(--ivory);
  box-shadow: inset 0 -1px 0 var(--gold);
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 28px;
}

.footer-links nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 40px;
}

.footer-links nav a {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 160ms var(--ease);
}

.footer-links nav a:hover {
  color: var(--gold-light);
}

.footer-order-note {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: rgba(246, 241, 231, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

html[lang="zh-Hans"] .footer-links nav a {
  font-size: 14px;
  letter-spacing: 0.08em;
}

/* ---------------------------------------------------------------------------
   Homepage: hero
   --------------------------------------------------------------------------- */

.estate-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "scene bottle"
    "copy bottle";
  align-items: end;
  gap: 0 clamp(24px, 4vw, 64px);
  min-height: min(88vh, 880px);
  padding: clamp(56px, 8vw, 110px) var(--inset) clamp(48px, 6vw, 80px);
  background: var(--ink);
  color: var(--ivory);
  overflow: clip;
}

.estate-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 64% at 72% 62%, rgba(125, 22, 49, 0.42), rgba(18, 14, 16, 0) 72%);
  pointer-events: none;
}

.estate-hero::after {
  content: "";
  position: absolute;
  left: var(--inset);
  right: var(--inset);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), rgba(216, 173, 100, 0));
}

.estate-hero > * {
  position: relative;
  z-index: 1;
}

.estate-hero-scene {
  grid-area: scene;
  align-self: start;
}

.estate-hero .eyebrow {
  color: var(--gold-light);
}

.estate-hero-title {
  max-width: 11ch;
  margin-top: 22px;
  font-size: clamp(46px, 7.2vw, 108px);
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.estate-hero-copy {
  grid-area: copy;
  align-self: end;
  margin-top: 40px;
}

.estate-hero-lede {
  max-width: 50ch;
  color: var(--muted-dark);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
}

.estate-hero .hero-actions {
  margin-top: 28px;
}

.estate-hero .button.primary {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

.estate-hero .button.primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.estate-hero-bottle {
  grid-area: bottle;
  position: relative;
  display: grid;
  width: 100%;
  max-width: 420px;
  justify-self: center;
  align-self: end;
  place-items: end center;
  margin: 0;
  padding: 0 24px;
}

.estate-hero-bottle::before {
  content: "";
  position: absolute;
  inset: 14% 0 0;
  border: 1px solid var(--line-dark);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(125, 22, 49, 0.3), rgba(18, 14, 16, 0) 80%);
}

.estate-hero-bottle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold-light);
}

.estate-hero-bottle img {
  position: relative;
  width: auto;
  height: clamp(380px, 64vh, 680px);
  filter: drop-shadow(0 40px 48px rgba(0, 0, 0, 0.55));
}

.estate-hero-outline {
  position: absolute;
  top: 50%;
  right: clamp(8px, 1.6vw, 24px);
  z-index: 1;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  color: rgba(216, 173, 100, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

/* ---------------------------------------------------------------------------
   Proof strip (home, artist)
   --------------------------------------------------------------------------- */

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

.luxury-proof article {
  display: grid;
  gap: 10px;
  align-content: start;
  margin-right: 24px;
  padding: 26px 24px 26px 0;
  border-right: 1px solid var(--line);
}

.luxury-proof article:last-child {
  margin-right: 0;
  border-right: 0;
}

.luxury-proof span {
  color: var(--gold-ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.luxury-proof strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.25;
}

/* ---------------------------------------------------------------------------
   Featured wines (home)
   --------------------------------------------------------------------------- */

.luxury-product-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--paper);
}

.luxury-product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 28px 28px;
  border-left: 1px solid var(--line);
}

.luxury-product-card:first-child {
  border-left: 0;
}

.luxury-product-card .product-picture {
  display: grid;
  height: 340px;
  place-items: end center;
  margin: 0 -28px 16px;
  padding: 28px 24px 0;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  overflow: clip;
}

.luxury-product-card .product-picture img {
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 312px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 18px 24px rgba(18, 14, 16, 0.28));
  transition: transform 420ms var(--ease);
}

.luxury-product-card:hover .product-picture img {
  transform: translateY(-6px);
}

.luxury-product-card h3 {
  font-size: 24px;
}

.luxury-product-card > p:not(.eyebrow) {
  flex: 1;
  color: var(--muted);
  font-size: 15px;
}

.luxury-product-card .card-actions {
  display: grid;
  gap: 12px;
}

.luxury-product-card .add-to-cart {
  width: 100%;
}

.wine-spec-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wine-spec-line .cellar-price-chip {
  flex-basis: 100%;
  margin-top: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.cellar-price-chip strong {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.cellar-price-chip strong span {
  color: var(--gold-ink);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.luxury-product-card.is-featured {
  background: var(--ink);
  color: var(--ivory);
}

.luxury-product-card.is-featured .product-picture {
  border-bottom-color: var(--line-dark);
  background: radial-gradient(70% 60% at 50% 85%, rgba(125, 22, 49, 0.55), rgba(28, 21, 23, 0) 72%), var(--ink-2);
}

.luxury-product-card.is-featured .product-picture img {
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.6));
}

.luxury-product-card.is-featured > p:not(.eyebrow) {
  color: var(--muted-dark);
}

.luxury-product-card.is-featured .wine-spec-line {
  border-top-color: var(--line-dark);
  color: var(--muted-dark);
}

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

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

.luxury-product-card.is-featured .text-link {
  color: var(--ivory);
  box-shadow: inset 0 -1px 0 var(--gold-light);
}

.luxury-product-card.is-featured .text-link:hover {
  color: var(--gold-light);
}

.luxury-product-card.is-featured .button.primary {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

.luxury-product-card.is-featured .button.primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ---------------------------------------------------------------------------
   Story and vineyard (home)
   --------------------------------------------------------------------------- */

.cinematic-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
}

.cinematic-panel {
  position: relative;
  margin: 0;
  padding: 0 22px 22px 0;
  will-change: transform;
}

.cinematic-panel::after {
  content: "";
  position: absolute;
  inset: 22px 0 0 22px;
  border: 1px solid var(--gold);
  pointer-events: none;
}

.cinematic-panel .responsive-picture {
  position: relative;
  z-index: 1;
}

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

.cinematic-copy {
  display: grid;
  max-width: 54ch;
}

.cinematic-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.vineyard-heritage {
  position: relative;
  display: grid;
  padding: 0;
  background: var(--ink);
  color: var(--ivory);
  overflow: clip;
}

.vineyard-heritage > .responsive-picture {
  grid-area: 1 / 1;
}

.vineyard-heritage > .responsive-picture img {
  width: 100%;
  height: clamp(460px, 76vh, 800px);
  object-fit: cover;
  opacity: 0.84;
}

.vineyard-heritage::after {
  content: "";
  grid-area: 1 / 1;
  background: linear-gradient(180deg, rgba(18, 14, 16, 0.08) 30%, rgba(18, 14, 16, 0.88) 100%);
  pointer-events: none;
}

.vineyard-heritage > div {
  grid-area: 1 / 1;
  z-index: 1;
  display: grid;
  align-self: end;
  max-width: 660px;
  margin: 0 var(--inset) clamp(40px, 6vw, 72px);
}

.vineyard-heritage .eyebrow {
  color: var(--gold-light);
}

.vineyard-heritage h2 {
  font-size: clamp(32px, 4.2vw, 58px);
}

.vineyard-heritage p:not(.eyebrow) {
  color: var(--muted-dark);
  font-size: 17px;
}

/* ---------------------------------------------------------------------------
   Guidance grid (home, artist)
   --------------------------------------------------------------------------- */

.estate-experiences {
  display: grid;
  justify-items: start;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-bottom: 36px;
  border-top: 1px solid var(--line);
  counter-reset: experience;
}

.experience-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  margin-right: 32px;
  padding: 32px 32px 32px 0;
  border-right: 1px solid var(--line);
  counter-increment: experience;
}

.experience-grid article:last-child {
  margin-right: 0;
  border-right: 0;
}

.experience-grid article::before {
  content: counter(experience, decimal-leading-zero);
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
}

.experience-grid span {
  color: var(--gold-ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.experience-grid h3 {
  font-size: 24px;
}

.experience-grid p {
  color: var(--muted);
  font-size: 15px;
}

/* ---------------------------------------------------------------------------
   Call-to-action band
   --------------------------------------------------------------------------- */

.signature-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px 64px;
  background: var(--burgundy);
  color: var(--ivory);
}

.signature-preview > div {
  display: grid;
}

.signature-preview .eyebrow {
  color: var(--gold-light);
}

.signature-preview h2 {
  max-width: 20ch;
  font-size: clamp(30px, 3.4vw, 46px);
}

.signature-preview p:not(.eyebrow) {
  max-width: 52ch;
  color: rgba(246, 241, 231, 0.78);
}

.signature-preview .inline-actions {
  margin-top: 0;
}

.signature-preview .button.primary {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

.signature-preview .button.primary:hover {
  background: transparent;
  color: var(--ivory);
}

.signature-preview .button.secondary {
  border-color: var(--line-dark-strong);
  color: var(--ivory);
}

.signature-preview .button.secondary:hover {
  border-color: var(--ivory);
}

/* ---------------------------------------------------------------------------
   Collection page: hero
   --------------------------------------------------------------------------- */

.collection-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: end;
  gap: clamp(24px, 4vw, 64px);
  min-height: min(76vh, 720px);
  background: var(--ink);
  color: var(--ivory);
  overflow: clip;
}

/* The shop's closing band carries the vineyard photograph under a burgundy tint. */
body[data-page="shop"] .signature-preview {
  position: relative;
  isolation: isolate;
  background: var(--burgundy) url("../images/optimized/real-vineyard-autumn-row-1920.jpg") center / cover no-repeat;
}

@supports (background-image: image-set(url("../images/kadenge-tree-logo.jpg") type("image/jpeg"))) {
  body[data-page="shop"] .signature-preview {
    background-image: 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")
    );
  }
}

body[data-page="shop"] .signature-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(91, 15, 34, 0.88);
  pointer-events: none;
}

.collection-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 78% 50%, rgba(125, 22, 49, 0.36), rgba(18, 14, 16, 0) 72%);
  pointer-events: none;
}

.collection-hero > * {
  position: relative;
  z-index: 1;
}

.collection-hero > div {
  display: grid;
}

.collection-hero .eyebrow {
  color: var(--gold-light);
}

.collection-hero h1 {
  max-width: 16ch;
  font-size: clamp(40px, 5.6vw, 76px);
}

.collection-hero p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted-dark);
  font-size: 18px;
}

.collection-brand-note {
  margin-top: 22px !important;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  color: var(--gold-light) !important;
  font-size: 12px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-hero .hero-actions .button.primary {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

.collection-hero .hero-actions .button.primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.collection-hero-bottles {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(8px, 2vw, 24px);
  margin: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--gold-light);
}

.collection-hero-bottles img {
  width: auto;
  height: clamp(240px, 36vh, 380px);
  filter: drop-shadow(0 30px 36px rgba(0, 0, 0, 0.6));
}

.collection-hero-bottles img.hero-bottle-feature {
  height: clamp(280px, 42vh, 440px);
}

/* The artist page keeps the dark hero frame with its portrait. */
.artist-page .collection-hero {
  background-image: none;
  background-color: var(--ink);
}

.artist-hero-visual {
  position: relative;
  justify-self: end;
  align-self: end;
  width: min(100%, 400px);
  padding: 0 0 20px 20px;
}

.artist-hero-visual::before {
  content: "";
  position: absolute;
  inset: 20px 20px 0 0;
  border: 1px solid var(--gold);
  pointer-events: none;
}

.artist-hero-portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(420px, 58vh, 560px);
  object-fit: cover;
  object-position: top center;
}

/* ---------------------------------------------------------------------------
   Collection page: filters and intro
   --------------------------------------------------------------------------- */

.collection-filter-shell {
  padding-bottom: 0;
}

.collection-filter-shell .section-heading {
  margin-bottom: 22px;
}

.collection-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0 28px;
  border-bottom: 1px solid var(--line);
}

.collection-filters button {
  min-height: 48px;
  margin-bottom: -1px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 0;
  white-space: nowrap;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}

.collection-filters button:hover,
.collection-filters button:focus-visible {
  color: var(--ink);
}

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

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

.filter-status {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.artist-collection-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px 48px;
  margin-top: clamp(36px, 5vw, 64px);
  padding-top: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.artist-collection-intro > div {
  display: grid;
  max-width: 76ch;
}

.artist-collection-intro h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.artist-collection-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}

/* ---------------------------------------------------------------------------
   Collection page: product plates
   --------------------------------------------------------------------------- */

.collection-plates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.collection-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.4fr) minmax(0, 1fr);
  background: var(--paper);
}

.collection-card-media {
  display: grid;
  place-items: end center;
  padding: 28px 16px 0;
  background: var(--cream);
  overflow: clip;
}

.collection-card-media img {
  width: auto;
  max-width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 16px 20px rgba(18, 14, 16, 0.25));
  transition: transform 420ms var(--ease);
}

.collection-card:hover .collection-card-media img {
  transform: translateY(-6px);
}

.collection-card-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px 28px 24px;
}

.collection-card-copy h2 {
  font-size: clamp(22px, 2vw, 27px);
  line-height: 1.12;
}

.collection-card-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}

.collection-card-copy dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  gap: 10px 16px;
  margin: 4px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.collection-card-copy dl div {
  display: grid;
  gap: 3px;
}

.collection-card-copy dt {
  color: var(--gold-ink);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.collection-card-copy dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.collection-actions {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

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

.price-lockup,
.product-price-lockup {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "label label"
    "price note";
  align-items: baseline;
  gap: 4px 10px;
}

.price-lockup > .current-price-label,
.product-price-lockup > .current-price-label {
  grid-area: label;
  color: var(--gold-ink);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-lockup > strong,
.product-price-lockup > .price {
  grid-area: price;
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

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

.collection-card.hero-card {
  background: var(--ink);
  color: var(--ivory);
}

.collection-card.hero-card .collection-card-media {
  background: radial-gradient(70% 60% at 50% 85%, rgba(125, 22, 49, 0.55), rgba(28, 21, 23, 0) 72%), var(--ink-2);
}

.collection-card.hero-card .collection-card-media img {
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.6));
}

.collection-card.hero-card .collection-card-copy > p:not(.eyebrow),
.collection-card.hero-card dd,
.collection-card.hero-card .price-lockup > small {
  color: var(--muted-dark);
}

.collection-card.hero-card dd {
  color: var(--ivory);
}

.collection-card.hero-card dt,
.collection-card.hero-card .price-lockup > .current-price-label {
  color: var(--gold-light);
}

.collection-card.hero-card dl,
.collection-card.hero-card .collection-actions {
  border-top-color: var(--line-dark);
}

.collection-card.hero-card .button.secondary {
  border-color: var(--line-dark-strong);
  color: var(--ivory);
}

.collection-card.hero-card .button.secondary:hover {
  border-color: var(--ivory);
}

.collection-card.hero-card .button.primary {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

.collection-card.hero-card .button.primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ---------------------------------------------------------------------------
   Wine detail
   --------------------------------------------------------------------------- */

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}

.product-detail figure {
  display: grid;
  min-height: 560px;
  place-items: center;
  margin: 0;
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.product-detail figure img.bottle-detail-photo {
  width: auto;
  height: clamp(360px, 60vh, 640px);
  filter: drop-shadow(0 30px 40px rgba(18, 14, 16, 0.3));
}

.product-copy {
  display: grid;
}

.product-copy h1 {
  font-size: clamp(36px, 4.6vw, 64px);
}

.product-copy > p:not(.eyebrow) {
  max-width: 56ch;
  color: var(--muted);
  font-size: 17px;
}

.product-price-lockup {
  justify-content: start;
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-price-lockup > .price {
  font-size: 44px;
}

.product-price-lockup > small {
  font-size: 14px;
}

.purchase-row {
  margin-top: 28px;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
}

.quantity-control button {
  width: 48px;
  height: 48px;
  border: 0;
  background: none;
  font-size: 20px;
  line-height: 1;
  transition: background-color 160ms var(--ease);
}

.quantity-control button:hover:not(:disabled) {
  background: var(--cream);
}

.quantity-control [data-quantity-value] {
  min-width: 46px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 48px;
  text-align: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.trust-row strong {
  color: var(--ink);
  font-weight: 650;
}

.detail-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.detail-tabs article {
  display: grid;
  gap: 12px;
  align-content: start;
  margin-right: 28px;
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--line);
}

.detail-tabs article:last-child {
  margin-right: 0;
  border-right: 0;
}

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

.detail-tabs p {
  color: var(--muted);
  font-size: 15px;
}

.label-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}

.label-showcase > div {
  display: grid;
  max-width: 54ch;
}

.label-showcase > div p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.label-showcase > div .button {
  justify-self: start;
  margin-top: 28px;
}

.label-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.label-showcase-grid picture {
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--cream);
}

.label-showcase-grid img {
  width: auto;
  max-width: 100%;
  height: 360px;
  object-fit: contain;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}

.split-section > div {
  display: grid;
  max-width: 54ch;
}

.split-section > div p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.split-section > div .button {
  justify-self: start;
  margin-top: 28px;
}

.media-card {
  position: relative;
  margin: 0;
  padding: 0 20px 20px 0;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 20px 0 0 20px;
  border: 1px solid var(--gold);
  pointer-events: none;
}

.media-card .responsive-picture,
.media-card .product-picture {
  position: relative;
  z-index: 1;
}

.media-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.media-card.artist-story-bottle {
  display: grid;
  place-items: center;
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.media-card.artist-story-bottle::after {
  content: none;
}

.media-card.artist-story-bottle img {
  width: auto;
  height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(18, 14, 16, 0.28));
}

/* ---------------------------------------------------------------------------
   Artist page
   --------------------------------------------------------------------------- */

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

.tasting-grid article,
.notes-matrix article {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 32px 28px;
  background: var(--paper);
}

.tasting-grid span,
.notes-matrix span {
  color: var(--gold-ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tasting-grid h3,
.notes-matrix h3 {
  font-size: 22px;
}

.tasting-grid p,
.notes-matrix p {
  color: var(--muted);
  font-size: 15px;
}

.notes-matrix .text-link {
  justify-self: start;
}

.notes-matrix .inline-actions {
  margin-top: 0;
}

.collection-notes > .eyebrow,
.collection-notes > h2,
.collection-notes > p {
  max-width: 760px;
}

.collection-notes > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.collection-notes .notes-matrix {
  margin-top: clamp(32px, 4vw, 56px);
}

.artist-label-aside {
  display: grid;
  gap: 24px;
}

.artist-label-bottles {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.artist-label-bottles figcaption {
  color: var(--gold-ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

.artist-label-bottle-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 28px;
}

.artist-label-bottle-row img {
  width: auto;
  height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 20px 26px rgba(18, 14, 16, 0.28));
}

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

.mini-stats {
  display: grid;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.mini-stats span {
  display: grid;
  grid-template-columns: minmax(96px, 0.34fr) minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.mini-stats strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
}

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

/* ---------------------------------------------------------------------------
   Element resets used by content pages
   --------------------------------------------------------------------------- */

figure {
  margin: 0;
}

address {
  font-style: normal;
}

dl,
dd {
  margin: 0;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

/* ---------------------------------------------------------------------------
   Page hero (about, location, customer care)
   --------------------------------------------------------------------------- */

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-hero > div {
  display: grid;
  max-width: 56ch;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
}

.page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.page-hero .inline-actions {
  margin-top: 30px;
}

.page-hero > .responsive-picture {
  position: relative;
  padding: 0 20px 20px 0;
}

.page-hero > .responsive-picture::after {
  content: "";
  position: absolute;
  inset: 20px 0 0 20px;
  border: 1px solid var(--gold);
  pointer-events: none;
}

.page-hero > .responsive-picture img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------------------------------------------------------------------------
   Story sections and timelines (about, location)
   --------------------------------------------------------------------------- */

.story-section {
  display: grid;
}

.story-section > .eyebrow,
.story-section > h2,
.story-section > p {
  max-width: 760px;
}

.story-section > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: clamp(32px, 4vw, 56px);
  border-top: 1px solid var(--line);
  counter-reset: timeline;
}

.timeline article {
  display: grid;
  gap: 12px;
  align-content: start;
  margin-right: 28px;
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--line);
  counter-increment: timeline;
}

.timeline article:last-child {
  margin-right: 0;
  border-right: 0;
}

.timeline article::before {
  content: counter(timeline, decimal-leading-zero);
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
}

.timeline span {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
}

.timeline p {
  color: var(--muted);
  font-size: 15px;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 5vw, 80px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.proof-panel > div {
  display: grid;
  max-width: 54ch;
}

.proof-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.proof-panel .mini-stats {
  margin-top: 0;
}

.mini-stats.stacked span {
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
}

/* ---------------------------------------------------------------------------
   Location
   --------------------------------------------------------------------------- */

.location-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(32px, 5vw, 80px);
}

.map-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 36px;
  border: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--ivory);
}

.map-card > span {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.15;
}

.map-card i {
  display: block;
  width: 48px;
  height: 1px;
  margin: 6px 0;
  background: var(--gold-light);
}

.map-card .visit-note {
  margin-top: 10px;
  color: var(--muted-dark);
  font-size: 14px;
}

.map-card .button {
  justify-self: start;
  margin-top: 14px;
  border-color: var(--line-dark-strong);
  color: var(--ivory);
}

.map-card .button:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

.location-layout > div {
  display: grid;
  max-width: 60ch;
}

.location-layout > div p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.location-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.location-experience-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 32px 28px;
  background: var(--paper);
}

.location-experience-grid span {
  color: var(--gold-ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.location-experience-grid h3 {
  font-size: 24px;
}

.location-experience-grid p {
  color: var(--muted);
  font-size: 15px;
}

.location-experience-grid a:not(.button) {
  display: inline-flex;
  justify-self: start;
  margin-top: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 0;
  box-shadow: inset 0 -1px 0 var(--gold);
}

.location-experience-grid a:not(.button):hover {
  color: var(--burgundy);
  box-shadow: inset 0 -2px 0 var(--burgundy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.gallery-grid figure {
  display: grid;
  background: var(--paper);
}

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------------------------------------------------------------------------
   Contact
   --------------------------------------------------------------------------- */

.contact-page .contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
  background: var(--ink) url("../images/optimized/real-vineyard-lake-sunset-1920.jpg") center / cover no-repeat;
  color: var(--ivory);
}

@supports (background-image: image-set(url("../images/kadenge-tree-logo.jpg") type("image/jpeg"))) {
  .contact-page .contact-layout {
    background-image: 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")
    );
  }
}

.contact-page .contact-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 14, 16, 0.84), rgba(18, 14, 16, 0.94));
  pointer-events: none;
}

.contact-page .contact-layout > * {
  position: relative;
  z-index: 1;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.contact-form h1 {
  font-size: clamp(34px, 4vw, 54px);
}

.contact-form > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}

.contact-form .button[type="submit"] {
  justify-self: start;
}

.contact-aside {
  display: grid;
}

.contact-aside .responsive-picture {
  position: relative;
  padding: 0 18px 18px 0;
}

.contact-aside .responsive-picture::after {
  content: "";
  position: absolute;
  inset: 18px 0 0 18px;
  border: 1px solid var(--gold);
  pointer-events: none;
}

.contact-aside img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact-aside > div {
  display: grid;
  gap: 14px;
  padding-top: 28px;
}

.contact-aside h2 {
  font-size: 30px;
}

.contact-aside p {
  color: var(--muted-dark);
  font-size: 16px;
}

.contact-aside .button.secondary {
  justify-self: start;
  border-color: var(--line-dark-strong);
  color: var(--ivory);
}

.contact-aside .button.secondary:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 32px 28px;
  background: var(--paper);
}

.faq-grid h3 {
  font-size: 22px;
}

.faq-grid p {
  color: var(--muted);
  font-size: 15px;
}

/* ---------------------------------------------------------------------------
   Receipts, saved references, and checkout side panels
   --------------------------------------------------------------------------- */

.form-receipt,
.checkout-success,
.checkout-empty-guide,
.stripe-checkout-card,
.checkout-no-js,
.receipt-history {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.form-receipt {
  background: var(--cream);
}

.form-receipt,
.checkout-success {
  border-left: 3px solid var(--success);
}

.form-receipt.is-unconfirmed,
.checkout-success.is-unconfirmed {
  border-left-color: var(--gold);
}

.form-receipt.is-conflict,
.checkout-success.is-conflict {
  border-left-color: var(--danger);
}

.form-receipt h2,
.checkout-success h2,
.checkout-empty-guide h2,
.stripe-checkout-card h2,
.checkout-no-js h2 {
  font-size: 28px;
}

.form-receipt p:not(.eyebrow),
.checkout-success p:not(.eyebrow),
.checkout-empty-guide p:not(.eyebrow),
.stripe-checkout-card p:not(.eyebrow),
.checkout-no-js p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}

.checkout-empty-guide .button,
.checkout-no-js .button {
  justify-self: start;
}

.stripe-checkout-card .button {
  width: 100%;
}

.order-reference {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px dashed var(--line-strong);
  background: var(--cream);
}

.order-reference span {
  color: var(--gold-ink);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.order-reference strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.order-summary-receipt {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.order-summary-receipt h3 {
  font-size: 18px;
}

.order-summary-receipt ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.order-summary-receipt li strong {
  white-space: nowrap;
}

.order-summary-receipt dl {
  display: grid;
  gap: 8px;
}

.order-summary-receipt dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.order-summary-receipt dt {
  color: var(--muted);
}

.order-summary-receipt dd {
  text-align: right;
}

.checkout-success-actions,
.form-receipt-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.checkout-success-actions .button,
.form-receipt-actions .button {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 11px;
}

.receipt-history details > summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  list-style: none;
}

.receipt-history details > summary::-webkit-details-marker {
  display: none;
}

.receipt-history details > summary::after {
  content: "+";
  color: var(--gold-ink);
  font-size: 22px;
  line-height: 1;
}

.receipt-history details[open] > summary::after {
  content: "−";
}

.receipt-history-body {
  display: grid;
  gap: 14px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.receipt-history-body > p {
  color: var(--muted);
  font-size: 14px;
}

.receipt-history-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.receipt-history-item {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.receipt-history-reference {
  display: grid;
  gap: 4px;
}

.receipt-history-reference time {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.receipt-history-reference time.needs-follow-up {
  color: var(--danger);
}

.receipt-history-reference strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
}

.receipt-history-warning {
  margin: 0;
  color: var(--danger);
  font-size: 13px;
  line-height: 1.5;
}

.receipt-history-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}

.receipt-history-actions .text-button,
.receipt-history-actions .text-link {
  min-height: 36px;
  font-size: 11px;
}

.receipt-history-order-details > summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  cursor: pointer;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  list-style: none;
  text-transform: uppercase;
}

.receipt-history-order-details > summary::-webkit-details-marker {
  display: none;
}

.receipt-history-order-details ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  list-style: none;
}

.receipt-history-order-details li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.receipt-history-order-details dl {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.receipt-history-order-details dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.receipt-history-order-details dt {
  color: var(--muted);
}

.receipt-history-order-details dd {
  text-align: right;
}

.receipt-history-clear {
  justify-self: start;
}

/* ---------------------------------------------------------------------------
   Cart and order request
   --------------------------------------------------------------------------- */

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
}

.cart-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.cart-panel h1 {
  font-size: clamp(32px, 3.6vw, 48px);
}

.cart-price-note {
  color: var(--muted);
  font-size: 15px;
}

.cart-items {
  display: grid;
  border-top: 1px solid var(--line);
}

.cart-empty {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "copy price"
    "actions actions";
  gap: 12px 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

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

.cart-item-copy > strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
}

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

.cart-item-copy > span > strong {
  color: var(--ink);
  font-weight: 650;
}

.cart-item-price {
  grid-area: price;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  white-space: nowrap;
}

.cart-item-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
}

.cart-item-actions button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  font-size: 18px;
  line-height: 1;
  transition: background-color 160ms var(--ease);
}

.cart-item-actions button:hover:not(:disabled) {
  background: var(--cream);
}

.cart-item-quantity {
  display: inline-grid;
  min-width: 44px;
  height: 40px;
  place-items: center;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--font-display);
  font-size: 18px;
}

.cart-item-actions .cart-remove {
  width: auto;
  height: 40px;
  margin-left: 16px;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0;
  box-shadow: inset 0 -1px 0 var(--gold);
}

.cart-item-actions .cart-remove:hover:not(:disabled) {
  background: none;
  color: var(--burgundy);
  box-shadow: inset 0 -2px 0 var(--burgundy);
}

.cart-totals {
  display: grid;
  border-top: 2px solid var(--ink);
}

.cart-totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

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

.cart-totals dd {
  font-size: 15px;
  text-align: right;
}

.cart-totals > :first-child dd {
  font-family: var(--font-display);
  font-size: 24px;
}

.cart-totals .cart-final-total dt,
.cart-totals .cart-final-total dd {
  color: var(--ink);
  font-weight: 650;
}

.cart-panel > .button {
  justify-self: start;
}

.checkout-side {
  display: grid;
  gap: 24px;
}

.checkout-fallback-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.checkout-fallback-heading::before,
.checkout-fallback-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.checkout-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.checkout-form h2 {
  font-size: 30px;
}

.checkout-intro {
  color: var(--muted);
  font-size: 15px;
}

.order-process {
  display: grid;
  gap: 1px;
  margin: 4px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}

.order-process li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--cream);
}

.order-process li > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: none;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-ink);
  font-family: var(--font-display);
  font-size: 14px;
}

.order-process strong {
  display: block;
  font-size: 14px;
  font-weight: 650;
}

.order-process small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.checkout-section-title {
  margin-top: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 22px;
}

.payment-method-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  background: var(--cream);
}

.payment-note-badge {
  flex: none;
  padding: 4px 8px;
  border: 1px solid var(--gold);
  color: var(--gold-ink);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.payment-method-note strong {
  display: block;
  font-size: 14px;
  font-weight: 650;
}

.payment-method-note p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.shipping-address {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line-strong);
}

.shipping-address legend {
  padding: 0 8px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shipping-address-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 14px;
}

.checkout-form .button[type="submit"] {
  width: 100%;
}

/* ---------------------------------------------------------------------------
   Customer care
   --------------------------------------------------------------------------- */

.care-intro {
  display: grid;
  max-width: 760px;
  padding-bottom: 0;
}

.care-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.care-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 36px 32px;
  background: var(--paper);
}

.care-grid h2 {
  font-size: 26px;
}

.care-grid p {
  color: var(--muted);
  font-size: 15px;
}

.care-grid a {
  display: inline-flex;
  justify-self: start;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 0;
  box-shadow: inset 0 -1px 0 var(--gold);
}

.care-grid a:hover {
  color: var(--burgundy);
  box-shadow: inset 0 -2px 0 var(--burgundy);
}

.care-number {
  color: #93672b;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
}

.care-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px 48px;
  background: var(--ink);
  color: var(--ivory);
}

.care-contact > div {
  display: grid;
}

.care-contact h2 {
  max-width: 24ch;
  font-size: clamp(28px, 3.2vw, 44px);
}

.care-contact .button {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.care-contact .button:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ---------------------------------------------------------------------------
   Not found
   --------------------------------------------------------------------------- */

.not-found-main {
  display: grid;
  min-height: 60vh;
  place-items: center;
  padding: clamp(56px, 8vw, 120px) var(--inset);
}

.not-found-panel {
  display: grid;
  width: min(100%, 720px);
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--ivory);
}

.not-found-panel h1 {
  font-size: clamp(34px, 4.4vw, 56px);
}

.not-found-panel > p:not(.eyebrow) {
  color: var(--muted-dark);
  font-size: 17px;
}

.not-found-panel .button.primary {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--ink);
}

.not-found-panel .button.primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.not-found-panel .button.secondary {
  border-color: var(--line-dark-strong);
  color: var(--ivory);
}

.not-found-panel .button.secondary:hover {
  border-color: var(--ivory);
}

/* Eyebrows on dark surfaces use the high-contrast gold. */
.luxury-product-card.is-featured .eyebrow,
.collection-card.hero-card .eyebrow,
.map-card .eyebrow,
.care-contact .eyebrow,
.not-found-panel .eyebrow {
  color: #d8ad64;
}

/* ---------------------------------------------------------------------------
   Reveal motion
   --------------------------------------------------------------------------- */

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

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

.motion-ready .premium-reveal {
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

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

/* ---------------------------------------------------------------------------
   No-JavaScript and cart pre-paint states
   --------------------------------------------------------------------------- */

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;
}

/* ---------------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------------- */

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

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

  .luxury-proof article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .detail-tabs article:nth-child(2n) {
    margin-right: 0;
    border-right: 0;
  }

  .detail-tabs article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 1080px) {
  .cinematic-story,
  .split-section,
  .label-showcase,
  .product-detail,
  .page-hero,
  .proof-panel,
  .location-layout,
  .contact-page .contact-layout,
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-panel,
  .map-card {
    position: static;
  }

  .collection-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .collection-card-media {
    padding: 24px 24px 0;
  }

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

  .artist-hero-visual {
    justify-self: start;
  }

  .contact-aside {
    max-width: 640px;
  }
}

@media (max-width: 900px) {
  .experience-grid,
  .tasting-grid,
  .notes-matrix,
  .location-experience-grid,
  .faq-grid,
  .care-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .experience-grid article {
    margin-right: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .experience-grid article:last-child {
    border-bottom: 0;
  }

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

  .signature-preview,
  .artist-collection-intro,
  .care-contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .signature-preview > .button,
  .care-contact > .button {
    justify-self: start;
  }
}

/* Between 821px and 1100px the six-link nav no longer fits beside the brand and
   actions, so the drawer navigation starts at 1100px. */
@media (min-width: 1101px) and (max-width: 1240px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    letter-spacing: 0.12em;
  }

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

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    font-size: 18px;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
  }

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

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 59;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: 8px var(--gutter) 24px;
    border-bottom: 1px solid var(--line-dark);
    background: var(--ink);
    box-shadow: var(--shadow-lift);
  }

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

  .site-nav a {
    min-height: 56px;
    border-bottom: 1px solid var(--line-dark);
    color: var(--ivory);
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0;
    text-transform: none;
  }

  html[lang="zh-Hans"] .site-nav a {
    font-size: 20px;
    letter-spacing: 0.04em;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a[aria-current] {
    color: var(--gold-light);
  }

  .site-nav .mobile-nav-music {
    margin-top: 16px;
  }

  .site-nav .mobile-nav-music .music-player button {
    width: auto;
  }

  html.no-js .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  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;
    z-index: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 20px;
    grid-column: 1 / -1;
    grid-row: 2;
    max-height: none;
    padding: 0;
    border-bottom: 0;
    box-shadow: none;
  }

  html.no-js .site-nav a {
    min-height: 44px;
    border-bottom: 0;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

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

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

  .cellar-price-bar {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
  }

  .estate-hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "scene"
      "bottle"
      "copy";
    grid-template-rows: auto auto auto;
    min-height: 0;
    padding-top: 48px;
  }

  .estate-hero-title {
    max-width: none;
    font-size: clamp(40px, 11vw, 64px);
  }

  .estate-hero-bottle {
    max-width: 320px;
    margin: 36px auto 0;
  }

  .estate-hero-bottle img {
    height: clamp(300px, 52vh, 460px);
  }

  .estate-hero-copy {
    margin-top: 32px;
  }

  .estate-hero-outline {
    display: none;
  }

  .luxury-proof {
    grid-template-columns: minmax(0, 1fr);
  }

  .luxury-proof article,
  .luxury-proof article:nth-child(2n) {
    margin-right: 0;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .luxury-proof article:last-child {
    border-bottom: 0;
  }

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

  .luxury-product-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .luxury-product-card:first-child {
    border-top: 0;
  }

  .luxury-product-card .product-picture {
    height: 300px;
  }

  .cinematic-panel {
    padding: 0 16px 16px 0;
  }

  .cinematic-panel::after {
    inset: 16px 0 0 16px;
  }

  .vineyard-heritage {
    grid-template-rows: auto auto;
  }

  .vineyard-heritage > .responsive-picture img {
    height: 56vh;
    min-height: 340px;
  }

  .vineyard-heritage > div {
    grid-area: 2 / 1;
    max-width: none;
    margin: 0;
    padding: 32px var(--gutter) 48px;
    background: var(--ink);
  }

  .collection-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  body[data-page="shop"] .signature-preview {
    background-image: url("../images/optimized/real-vineyard-autumn-row-960.jpg");
  }

  @supports (background-image: image-set(url("../images/kadenge-tree-logo.jpg") type("image/jpeg"))) {
    body[data-page="shop"] .signature-preview {
      background-image: 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")
      );
    }
  }

  .collection-hero-bottles {
    margin-top: 24px;
  }

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

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

  .artist-hero-visual {
    width: min(100%, 320px);
    margin-top: 24px;
  }

  .collection-filters {
    flex-wrap: nowrap;
    gap: 0 22px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .collection-filters::-webkit-scrollbar {
    display: none;
  }

  .contact-page .contact-layout {
    background-image: url("../images/optimized/real-vineyard-lake-sunset-960.jpg");
  }

  @supports (background-image: image-set(url("../images/kadenge-tree-logo.jpg") type("image/jpeg"))) {
    .contact-page .contact-layout {
      background-image: 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")
      );
    }
  }

  .detail-tabs {
    grid-template-columns: minmax(0, 1fr);
  }

  .detail-tabs article,
  .detail-tabs article:nth-child(2n) {
    margin-right: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-tabs article:last-child {
    border-bottom: 0;
  }

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

  .timeline article {
    margin-right: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

  .product-detail figure {
    min-height: 0;
    padding: 32px;
  }

  .product-detail figure img.bottle-detail-photo {
    height: clamp(300px, 50vh, 480px);
  }

  .media-card,
  .page-hero > .responsive-picture,
  .contact-aside .responsive-picture {
    padding: 0 14px 14px 0;
  }

  .media-card::after,
  .page-hero > .responsive-picture::after,
  .contact-aside .responsive-picture::after {
    inset: 14px 0 0 14px;
  }

  .media-card.artist-story-bottle {
    padding: 28px;
  }

  .media-card.artist-story-bottle img {
    height: 360px;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .checkout-success-actions .button,
  .form-receipt-actions .button {
    flex: 1 1 auto;
  }
}

@media (max-width: 700px) {
  .shipping-address-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .payment-method-note {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .collection-plates {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .collection-card-copy {
    padding: 24px 20px 20px;
  }

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

  .label-showcase-grid img {
    height: 300px;
  }

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

  .artist-label-bottle-row {
    gap: 16px;
  }

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

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

  .cart-item {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "price"
      "actions";
    gap: 10px;
  }

  .cart-panel,
  .checkout-form,
  .contact-form,
  .form-receipt,
  .checkout-success,
  .checkout-empty-guide,
  .stripe-checkout-card,
  .checkout-no-js,
  .receipt-history {
    padding: 22px 18px;
  }

  .shipping-address {
    padding: 16px;
  }

  .toast {
    left: 16px;
    right: 16px;
    transform: translateY(8px);
    text-align: center;
  }

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

  .message-confirmation-card {
    padding: 24px 20px;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 0;
  }

  .brand > span:not(.brand-mark) {
    display: none;
  }

  .language-toggle,
  .cart-link,
  .menu-toggle {
    padding: 8px 10px;
    font-size: 10px;
  }

  .header-actions {
    gap: 6px;
  }

  .estate-hero-bottle {
    max-width: 260px;
  }

  .estate-hero-bottle img {
    height: clamp(280px, 48vh, 380px);
  }

  .luxury-product-card {
    padding: 0 20px 22px;
  }

  .luxury-product-card .product-picture {
    margin: 0 -20px 14px;
  }

  .button {
    padding: 13px 20px;
  }

  .hero-actions .button,
  .inline-actions .button,
  .purchase-row .button {
    flex: 1 1 auto;
  }

  .quantity-control {
    width: 100%;
    justify-content: space-between;
  }

  .quantity-control [data-quantity-value] {
    flex: 1;
  }
}

/* ---------------------------------------------------------------------------
   Reduced motion
   --------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .premium-reveal,
  .motion-ready .premium-reveal:not(.in-view),
  .premium-parallax {
    opacity: 1 !important;
    transform: none !important;
  }

  .luxury-product-card:hover .product-picture img,
  .collection-card:hover .collection-card-media img {
    transform: none;
  }
}

/* ---------------------------------------------------------------------------
   Refinements from the design review
   --------------------------------------------------------------------------- */

html {
  scroll-padding-top: calc(var(--header-height) + 12px);
}

#main-content:focus-visible {
  outline: none;
}

/* Gold focus rings only where the surface is dark. */
.site-header,
.site-footer,
.estate-hero,
.collection-hero,
.vineyard-heritage,
.signature-preview,
.care-contact,
.map-card,
.not-found-panel,
.luxury-product-card.is-featured,
.collection-card.hero-card,
.contact-page .contact-layout,
.message-confirmation {
  --focus-ring: var(--focus-ring-dark);
}

.contact-form,
.message-confirmation-card {
  --focus-ring: #5b0f22;
}

/* Text links: wrapping-safe underline and a full-height hit area. */
.text-link,
.location-experience-grid a:not(.button),
.care-grid a {
  display: inline;
  padding: 8px 0;
  box-shadow: none;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  line-height: 1.6;
  transition: color 160ms var(--ease), text-decoration-color 160ms var(--ease);
}

.text-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0;
  box-shadow: none;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.text-link:hover,
.text-button:hover,
.location-experience-grid a:not(.button):hover,
.care-grid a:hover {
  color: var(--burgundy);
  box-shadow: none;
  text-decoration-color: var(--burgundy);
  text-decoration-thickness: 2px;
}

.luxury-product-card.is-featured .text-link {
  box-shadow: none;
  text-decoration-color: var(--gold-light);
}

.luxury-product-card.is-featured .text-link:hover {
  color: var(--gold-light);
  box-shadow: none;
  text-decoration-color: var(--gold-light);
}

.luxury-product-card .card-actions .text-link {
  justify-self: start;
}

.notes-matrix .text-link,
.location-experience-grid a:not(.button),
.care-grid a {
  justify-self: start;
  margin-top: 0;
}

.cart-item-actions .cart-remove {
  height: 44px;
  box-shadow: none;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.cart-item-actions .cart-remove:hover:not(:disabled) {
  box-shadow: none;
  text-decoration-color: var(--burgundy);
  text-decoration-thickness: 2px;
}

.cellar-price-bar a {
  display: inline-block;
  padding: 6px 0;
}

.footer-links nav a {
  min-height: 32px;
}

.form-preview-notice a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

/* Buttons that are switched off read as deliberately muted, not faded. */
.button:disabled {
  opacity: 1;
  background: var(--muted);
  border-color: var(--muted);
  color: var(--ivory);
}

.button.secondary:disabled {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}

.button[aria-busy="true"] {
  cursor: progress;
}

/* Cards and panels that already space children with a grid gap. */
:is(
  .contact-form,
  .checkout-form,
  .form-receipt,
  .checkout-success,
  .checkout-empty-guide,
  .stripe-checkout-card,
  .checkout-no-js,
  .receipt-history-body,
  .cart-panel,
  .care-grid article,
  .faq-grid article,
  .tasting-grid article,
  .notes-matrix article,
  .experience-grid article,
  .location-experience-grid article,
  .detail-tabs article,
  .timeline article,
  .luxury-proof article,
  .collection-card-copy,
  .luxury-product-card,
  .map-card,
  .contact-aside > div,
  .message-confirmation-card,
  .artist-collection-intro > div
) > :is(h1, h2, h3, p) {
  margin-top: 0;
}

.artist-collection-intro > div {
  gap: 10px;
}

.care-grid p {
  max-width: 62ch;
}

/* Cart: pre-paint the Stripe card and fallback heading with the form. */
html.cart-state-has-items [data-stripe-checkout] {
  display: grid !important;
}

html.cart-state-has-items [data-checkout-fallback] {
  display: flex !important;
}

.cart-panel {
  max-height: calc(100vh - var(--header-height) - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.cart-item-actions button {
  width: 44px;
  height: 44px;
}

.cart-item-quantity {
  height: 44px;
}

.shipping-address legend [aria-hidden="true"] {
  color: var(--burgundy);
}

.order-reference,
.receipt-history-reference {
  min-width: 0;
}

.order-reference strong,
.receipt-history-reference strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.order-reference strong {
  font-size: clamp(18px, 6vw, 24px);
}

.receipt-history-reference strong {
  font-size: clamp(16px, 5vw, 20px);
}

.form-receipt .order-reference {
  background: var(--paper);
}

.form-receipt.is-conflict .eyebrow,
.checkout-success.is-conflict .eyebrow {
  color: var(--danger);
}

/* Collection plates: centre the bottle on its cream ground. */
.collection-card-media {
  place-items: center;
  padding: 28px 16px;
}

/* Home: keep the vineyard copy legible over bright sky. */
.vineyard-heritage::after {
  background:
    linear-gradient(90deg, rgba(18, 14, 16, 0.66), rgba(18, 14, 16, 0) 58%),
    linear-gradient(180deg, rgba(18, 14, 16, 0.08) 30%, rgba(18, 14, 16, 0.88) 100%);
}

/* Contact: deeper overlay, brighter aside copy, lifted form card. */
.contact-page .contact-layout::before {
  background: linear-gradient(180deg, rgba(18, 14, 16, 0.88), rgba(18, 14, 16, 0.95));
}

.contact-aside p {
  color: rgba(246, 241, 231, 0.84);
}

.contact-form {
  border-color: transparent;
  box-shadow: var(--shadow-lift);
}

/* Wine detail: stronger label photos. */
.label-showcase-grid img {
  height: clamp(320px, 30vw, 440px);
  filter: drop-shadow(0 18px 24px rgba(18, 14, 16, 0.25));
}

/* Artist page tidy-ups. */
.artist-page .experience-grid {
  margin-bottom: 0;
}

.artist-label-aside .mini-stats {
  margin-top: 0;
}

.experience-grid article::before,
.timeline article::before {
  color: var(--gold);
  opacity: 0.55;
}

/* Customer care: hairline grid without a full-width slab, and a real measure. */
.care-intro {
  max-width: none;
}

.care-intro > * {
  max-width: 760px;
}

.care-intro + .care-grid {
  padding-top: clamp(32px, 4vw, 56px);
}

.care-grid {
  border: 0;
  background: none;
}

.care-grid article {
  box-shadow: 0 0 0 1px var(--line);
}

/* Chinese: small tracked labels get a readable size. */
html[lang="zh-Hans"] :is(
  .eyebrow,
  .luxury-proof span,
  .tasting-grid span,
  .notes-matrix span,
  .experience-grid span,
  .location-experience-grid span,
  .artist-label-bottles figcaption,
  .gallery-grid figcaption,
  .wine-spec-line,
  .collection-brand-note
) {
  font-size: 12.5px;
  letter-spacing: 0.12em;
}

html[lang="zh-Hans"] :is(
  .text-link,
  .text-button,
  .cellar-price-bar a,
  .language-toggle,
  .cart-link,
  .menu-toggle,
  .music-player button,
  label > span:first-child,
  .shipping-address legend,
  .collection-filters button,
  .cart-item-actions .cart-remove,
  .receipt-history-order-details > summary,
  .checkout-fallback-heading,
  .location-experience-grid a:not(.button),
  .care-grid a,
  .footer-links nav a,
  .receipt-history-reference time
) {
  font-size: 13px;
  letter-spacing: 0.06em;
}

html[lang="zh-Hans"] :is(
  .price-lockup > .current-price-label,
  .product-price-lockup > .current-price-label,
  .cellar-price-chip strong span,
  .order-reference span,
  .payment-note-badge,
  .collection-card-copy dt
) {
  font-size: 12px;
  letter-spacing: 0.08em;
}

html[lang="zh-Hans"] h1 {
  line-height: 1.15;
}

html[lang="zh-Hans"] h2 {
  line-height: 1.2;
}

html[lang="zh-Hans"] h3 {
  line-height: 1.3;
}

html[lang="zh-Hans"] .care-contact .button {
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* Responsive refinements. */
@media (max-width: 1080px) {
  .cart-panel {
    max-height: none;
    overflow: visible;
  }

  .product-detail figure {
    width: min(100%, 560px);
    justify-self: center;
  }

  .page-hero > .responsive-picture {
    max-width: 640px;
  }
}

@media (max-width: 900px) {
  .shipping-address-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shipping-address-row > label:first-child {
    grid-column: 1 / -1;
  }

  .care-grid article:first-child {
    box-shadow: 0 0 0 1px var(--line);
  }
}

@media (max-width: 820px) {
  .language-toggle,
  .cart-link,
  .menu-toggle,
  .music-player button {
    min-height: 44px;
  }
}

@media (max-width: 640px) {
  .contact-form .button[type="submit"] {
    width: 100%;
    justify-self: stretch;
  }

  .faq-grid article,
  .care-grid article {
    padding: 26px 20px;
  }

  .label-showcase-grid img {
    height: 320px;
  }
}

@media (max-width: 520px) {
  .shipping-address-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 6px;
  }

  .language-toggle,
  .cart-link,
  .menu-toggle {
    padding: 8px 8px;
    letter-spacing: 0.08em;
  }

  .footer-links nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
  }

  .map-card {
    padding: 28px 22px;
  }

  .artist-label-bottles {
    padding: 20px 16px;
  }

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

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

@media (max-width: 360px) {
  .button {
    letter-spacing: 0.1em;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Collection plates: hairlines drawn on the cards, so a filtered grid never
   shows a painted empty cell. Actions sit on a shared baseline per row. */
.collection-plates {
  background: transparent;
  border-color: #ddd7cd;
}

.collection-plates > * {
  outline: 1px solid #ddd7cd;
}

.collection-card-copy {
  display: flex;
  flex-direction: column;
}

.collection-card-copy > * {
  margin-top: 0;
}

.collection-card-copy > * + * {
  margin-top: 12px;
}

.collection-card-copy dl {
  margin-top: 16px;
}

.collection-actions {
  margin-top: auto;
  padding-top: 16px;
}

.collection-actions {
  display: grid;
}

.collection-card-copy > .collection-actions {
  margin-top: auto;
}

.collection-card-copy > p + .collection-actions,
.collection-card-copy > dl + .collection-actions {
  padding-top: 16px;
}

.collection-card-copy > dl {
  margin-bottom: 20px;
}

/* Artist-label PNGs carry transparent padding; scale them to match the rest. */
.collection-card-media img {
  transform-origin: center;
}

.merlot-standard-media img {
  scale: 1.12;
}

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

.merlot-magnum-media img {
  scale: 0.94;
}

.collection-card.hero-card .button.primary:hover {
  border-color: var(--gold-light);
}

.signature-preview .button.primary:hover {
  border-color: var(--ivory);
}

html.no-js .collection-filter-shell {
  display: none;
}

.cellar-price-chip strong {
  flex-wrap: wrap;
  row-gap: 4px;
}

/* Dark bands lift into view without fading from ivory. */
.motion-ready .vineyard-heritage.premium-reveal:not(.in-view),
.motion-ready .signature-preview.premium-reveal:not(.in-view) {
  opacity: 1;
}

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

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

  .timeline article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .media-card.artist-story-bottle {
    width: min(100%, 520px);
  }
}

@media (max-width: 820px) {
  .collection-filters {
    margin: 0 calc(-1 * var(--inset));
    padding: 0 var(--inset);
    border-bottom: 0;
    box-shadow: inset 0 -1px 0 var(--line);
    scroll-padding-inline: var(--inset);
    overscroll-behavior-x: contain;
  }

  .collection-filters button {
    margin-bottom: 0;
  }

  .collection-filters button:focus-visible {
    outline-offset: -4px;
  }

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

  .timeline article,
  .timeline article:nth-child(2n) {
    margin-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

  .estate-hero-bottle img {
    height: clamp(260px, 44vh, 420px);
  }
}

@media (max-width: 640px) {
  .header-actions .music-player [data-music-label] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

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

/* Header: nav sits on the true centre line; the brand name yields to the
   mark below 640px so the controls always fit. */
@media (min-width: 1101px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .brand {
    justify-self: start;
  }

  .header-actions {
    justify-self: end;
  }
}

.music-mount:empty {
  display: none;
}

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

.toast {
  max-width: min(90vw, 480px);
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
}

.message-confirmation {
  overflow-y: auto;
}

@media (max-height: 600px) {
  .message-confirmation {
    place-items: start center;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .site-nav a {
    padding-left: 14px;
    box-shadow: inset 3px 0 0 transparent;
  }

  .site-nav a[aria-current] {
    box-shadow: inset 3px 0 0 var(--gold-light);
  }

  html[lang="zh-Hans"] .site-nav a {
    font-family: var(--font-body);
    font-weight: 600;
  }

  html.no-js .site-header {
    position: static;
  }
}

@media (max-width: 640px) {
  .brand {
    gap: 0;
  }

  .brand > span:not(.brand-mark) {
    display: none;
  }
}

@media (max-width: 430px) {
  .not-found-panel {
    padding: 28px 22px;
  }

  html[lang="zh-Hans"] .cart-link,
  html[lang="zh-Hans"] .menu-toggle,
  html[lang="zh-Hans"] .language-toggle {
    font-size: 12px;
  }
}

/* ---------------------------------------------------------------------------
   Wines page: calm catalogue
   A light, simple hero, then open three-column cards with one spec line and a
   compact price row. Only the shop page uses these overrides.
   --------------------------------------------------------------------------- */

body[data-page="shop"] .collection-hero {
  align-items: center;
  min-height: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

body[data-page="shop"] .collection-hero::before {
  content: none;
}

body[data-page="shop"] .collection-hero .eyebrow {
  color: var(--gold-ink);
}

body[data-page="shop"] .collection-hero h1 {
  font-size: clamp(38px, 5vw, 66px);
}

body[data-page="shop"] .collection-hero p:not(.eyebrow) {
  color: var(--muted);
}

body[data-page="shop"] .collection-brand-note {
  border-top-color: var(--line);
  color: var(--gold-ink) !important;
}

body[data-page="shop"] .collection-hero-bottles {
  align-items: flex-end;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  padding: 32px 24px 28px;
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--gold);
  background: var(--cream);
}

body[data-page="shop"] .collection-hero-bottles img {
  height: clamp(220px, 30vh, 320px);
  filter: drop-shadow(0 18px 24px rgba(18, 14, 16, 0.25));
}

body[data-page="shop"] .collection-hero-bottles img.hero-bottle-feature {
  height: clamp(250px, 34vh, 360px);
}

body[data-page="shop"] .collection-filter-shell {
  padding-top: clamp(40px, 5vw, 64px);
}

body[data-page="shop"] .artist-collection-intro {
  gap: 16px 40px;
  margin-top: clamp(28px, 3vw, 40px);
  padding-top: 24px;
  padding-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: transparent;
}

body[data-page="shop"] .artist-collection-intro h2 {
  font-size: clamp(24px, 2.6vw, 32px);
}

body[data-page="shop"] .artist-collection-intro p:not(.eyebrow) {
  font-size: 15px;
}

body[data-page="shop"] .artist-collection-intro .button {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 11px;
}

body[data-page="shop"] .collection-grid {
  padding-top: clamp(32px, 4vw, 56px);
}

.collection-plates {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 44px) clamp(20px, 2.5vw, 36px);
  border: 0;
  background: transparent;
}

.collection-plates > * {
  outline: 0;
}

.collection-card {
  grid-template-columns: minmax(0, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.collection-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.collection-card-media {
  min-height: 300px;
  padding: 28px 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

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

.collection-card-copy {
  padding: 18px 22px 22px;
}

.collection-card-copy > * + * {
  margin-top: 8px;
}

.collection-card-copy h2 {
  font-size: 22px;
}

.collection-card-copy > p:not(.eyebrow) {
  font-size: 14px;
}

.collection-card-copy > dl {
  display: block;
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  font-size: 13px;
  line-height: 1.7;
}

.collection-card-copy dl div {
  display: inline;
}

.collection-card-copy dl div + div::before {
  content: " · ";
  color: var(--sand);
}

.collection-card-copy dt {
  display: inline;
  margin-right: 5px;
  font-size: 10px;
}

.collection-card-copy dd {
  display: inline;
  color: var(--muted);
  font-size: 13px;
}

.collection-card-copy > .collection-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  margin-top: auto;
  padding-top: 14px;
}

.collection-card-copy > p + .collection-actions,
.collection-card-copy > dl + .collection-actions {
  margin-top: 16px;
  padding-top: 14px;
}

.collection-actions .price-lockup {
  flex: 1 1 auto;
}

.price-lockup > strong {
  font-size: 24px;
}

.collection-actions .button {
  width: auto;
}

.collection-actions .button.primary {
  order: 1;
  min-height: 44px;
  padding: 10px 18px;
  font-size: 11px;
}

.collection-actions .button.secondary {
  order: 2;
  flex-basis: 100%;
  justify-content: flex-start;
  min-height: 0;
  padding: 4px 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.collection-actions .button.secondary:hover {
  color: var(--burgundy);
  text-decoration-color: var(--burgundy);
  text-decoration-thickness: 2px;
}

.collection-card.hero-card {
  border-color: var(--gold);
  background: var(--paper);
  color: var(--ink);
}

.collection-card.hero-card .collection-card-media {
  border-bottom-color: var(--gold);
  background: var(--cream);
}

.collection-card.hero-card .collection-card-media img {
  filter: drop-shadow(0 16px 20px rgba(18, 14, 16, 0.25));
}

.collection-card.hero-card .eyebrow,
.collection-card.hero-card dt,
.collection-card.hero-card .price-lockup > .current-price-label {
  color: var(--gold-ink);
}

.collection-card.hero-card .collection-card-copy > p:not(.eyebrow),
.collection-card.hero-card dd,
.collection-card.hero-card .price-lockup > small {
  color: var(--muted);
}

.collection-card.hero-card .collection-actions {
  border-top-color: var(--line);
}

.collection-card.hero-card .button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--ivory);
}

.collection-card.hero-card .button.primary:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.collection-card.hero-card .button.secondary {
  border: 0;
  color: var(--ink);
}

.collection-card.hero-card .button.secondary:hover {
  color: var(--burgundy);
}

body[data-page="shop"] .signature-preview .eyebrow {
  color: var(--gold-light);
}

@media (max-width: 900px) {
  body[data-page="shop"] .artist-collection-intro > .button {
    justify-self: start;
  }
}


@media (max-width: 1100px) {
  .collection-plates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .collection-card-media {
    padding: 24px 20px;
  }

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

@media (max-width: 820px) {
  body[data-page="shop"] .collection-hero-bottles {
    margin-top: 8px;
    padding: 24px 16px 20px;
  }

  body[data-page="shop"] .collection-hero-bottles img {
    height: 200px;
  }

  body[data-page="shop"] .collection-hero-bottles img.hero-bottle-feature {
    height: 230px;
  }
}

@media (max-width: 640px) {
  .collection-plates {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .collection-card-copy {
    padding: 16px 18px 18px;
  }

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

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