:root {
  --bottle-green: #0d2d26;
  --deep-green: #071b17;
  --moss: #274c3f;
  --parchment: #f4f0e6;
  --parchment-2: #ebe3d2;
  --ivory: #fffaf0;
  --brass: #d2a360;
  --brass-dark: #9e7432;
  --oxblood: #7a2635;
  --sage: #5d6869;
  --soft-ink: #17201d;
  --muted-ink: #53615d;
  --line: rgba(23, 32, 29, 0.16);
  --line-dark: rgba(255, 250, 240, 0.15);
  --shadow-soft: 0 18px 46px rgba(7, 27, 23, 0.13);
  --shadow-deep: 0 34px 90px rgba(7, 27, 23, 0.34);
  --serif: Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(rgba(244, 240, 230, 0.96), rgba(244, 240, 230, 0.96)),
    url("/images/textures/paper-grain.svg");
  color: var(--soft-ink);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
}
body.age-gate-active { overflow: hidden; }
html.age-confirmed body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--oxblood); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid rgba(210, 163, 96, 0.72);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(244, 240, 230, 0.92);
  border-bottom: 1px solid rgba(13, 45, 38, 0.14);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 850; color: var(--bottle-green); }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--bottle-green);
  color: var(--ivory);
  font-family: var(--serif);
  font-weight: 760;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.16);
}
.main-nav, .site-footer nav { display: flex; gap: 22px; color: var(--muted-ink); font-size: 0.94rem; font-weight: 760; }
.main-nav a:hover, .site-footer a:hover { color: var(--brass); }

.hero {
  position: relative;
  min-height: min(760px, calc(86vh - 58px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.38fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 84px) clamp(46px, 7vw, 72px);
  overflow: hidden;
  color: var(--ivory);
  background: var(--deep-green);
}
.hero::after, .page-hero.compact::after, .bottle-hero::after, .occasion-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(7, 27, 23, 0.18), rgba(7, 27, 23, 0.18)),
    url("/images/textures/paper-grain.svg");
  opacity: 0.28;
  mix-blend-mode: screen;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
}
.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 23, 0.92) 0%, rgba(13, 45, 38, 0.82) 42%, rgba(13, 45, 38, 0.46) 100%),
    linear-gradient(0deg, rgba(7, 27, 23, 0.76), rgba(7, 27, 23, 0.12) 56%);
}
.hero-copy, .hero-note {
  position: relative;
  z-index: 1;
}
.hero-copy { max-width: 820px; }
.hero h1, .page-hero h1, .bottle-hero h1, .occasion-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 7.2vw, 7rem);
  line-height: 0.94;
  letter-spacing: 0;
}
.hero p, .page-hero p, .occasion-hero p, .lede {
  max-width: 64ch;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}
.hero-note {
  align-self: end;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 8px;
  background: rgba(7, 27, 23, 0.62);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(8px);
}
.hero-note p:last-child { margin-bottom: 0; color: rgba(255, 250, 240, 0.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 820;
  font-size: 0.95rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--brass); color: var(--deep-green); box-shadow: 0 10px 24px rgba(7, 27, 23, 0.22); }
.button.primary:hover { background: #e0b46f; color: var(--deep-green); }
.button.secondary { border-color: currentColor; color: inherit; background: transparent; }
.button.secondary:hover { border-color: var(--brass); color: var(--brass); }
.filter-reset { align-self: end; background: transparent; color: var(--oxblood); }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 40px);
}
.hero + .section { padding-top: clamp(34px, 5vw, 64px); }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}
h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1;
}
h3 { margin: 0 0 8px; font-size: 1.12rem; line-height: 1.25; }
p { margin-top: 0; }
.meta, .breadcrumb, .small {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 830;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.breadcrumb a { color: var(--brass); }

.intro-grid, .profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.intro-grid article, .profile-grid article, .market-panel, .editorial-note, .buy-panel {
  border: 1px solid rgba(13, 45, 38, 0.15);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background:
    linear-gradient(rgba(255, 250, 240, 0.88), rgba(255, 250, 240, 0.88)),
    url("/images/textures/paper-grain.svg");
  box-shadow: var(--shadow-soft);
}
.journal-panels article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section-number {
  display: block;
  color: var(--oxblood);
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 18px;
}

.feature-band, .split-feature {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.fireside-band {
  max-width: none;
  padding-left: clamp(20px, 6vw, 84px);
  padding-right: clamp(20px, 6vw, 84px);
  background: var(--bottle-green);
  color: var(--ivory);
}
.fireside-band > * { max-width: var(--max); }
.fireside-band p { color: rgba(255, 250, 240, 0.78); }
.occasion-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.occasion-link, .guide-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: var(--deep-green);
  color: var(--ivory);
  box-shadow: 0 16px 38px rgba(7, 27, 23, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.occasion-link:hover, .guide-card:hover, .bottle-card:hover, .vault-row:hover, .concierge-card:hover, .recommendation:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(7, 27, 23, 0.18);
}
.occasion-link img, .guide-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.86);
}
.occasion-link::after, .guide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 27, 23, 0.88), rgba(7, 27, 23, 0.08) 64%);
}
.occasion-link span, .guide-card div {
  position: absolute;
  z-index: 1;
  inset: auto 16px 16px;
}
.guide-card .meta { color: rgba(255, 250, 240, 0.68); }

.bottle-grid, .occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bottle-card {
  display: grid;
  grid-template-rows: 280px auto;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(13, 45, 38, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 250, 240, 0.9), rgba(255, 250, 240, 0.9)),
    url("/images/textures/paper-grain.svg");
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.bottle-image {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(13, 45, 38, 0.14), rgba(210, 163, 96, 0.16)),
    var(--parchment-2);
}
.bottle-image img {
  width: min(242px, 100%);
  height: min(242px, 100%);
  object-fit: contain;
}
.text-link { color: var(--oxblood); font-weight: 900; }
.market-story { align-items: stretch; }
.market-panel {
  display: grid;
  gap: 14px;
  background:
    linear-gradient(rgba(13, 45, 38, 0.96), rgba(13, 45, 38, 0.96)),
    url("/images/textures/paper-grain.svg");
  color: var(--ivory);
}
.market-panel div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
}
.market-panel div:last-child { border-bottom: 0; padding-bottom: 0; }
.market-panel span { color: rgba(255, 250, 240, 0.72); }

.page-hero.compact {
  position: relative;
  padding: clamp(62px, 10vw, 124px) clamp(20px, 5vw, 64px) clamp(38px, 6vw, 74px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 27, 23, 0.96), rgba(13, 45, 38, 0.92)),
    url("/images/textures/paper-grain.svg");
  color: var(--ivory);
}
.page-hero h1, .page-hero p { position: relative; z-index: 1; max-width: var(--max); margin-left: auto; margin-right: auto; }
.page-hero p { margin-top: 18px; }

.filters, .concierge-controls {
  display: grid;
  grid-template-columns: 1fr 220px 220px auto;
  gap: 12px;
  align-items: end;
}
.tasting-desk {
  padding-top: 30px;
  padding-bottom: 24px;
  margin-top: -24px;
  border: 1px solid rgba(13, 45, 38, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 250, 240, 0.91), rgba(255, 250, 240, 0.91)),
    url("/images/textures/paper-grain.svg");
  box-shadow: var(--shadow-soft);
}
.filter-field { position: relative; display: grid; gap: 6px; }
.filters .wide { min-width: min(100%, 360px); }
.search-field::after {
  content: "";
  position: absolute;
  left: 13px;
  bottom: 13px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--sage);
  border-radius: 50%;
  pointer-events: none;
}
.search-field::before {
  content: "";
  position: absolute;
  left: 27px;
  bottom: 10px;
  width: 8px;
  height: 2px;
  background: var(--sage);
  transform: rotate(45deg);
  pointer-events: none;
}
.search-field input { padding-left: 38px; }
label { color: var(--moss); font-weight: 840; font-size: 0.84rem; }
input, select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(13, 45, 38, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--ivory);
  color: var(--soft-ink);
  font: 650 0.95rem var(--sans);
  box-shadow: inset 0 1px 0 rgba(7, 27, 23, 0.04);
}
.filter-chips {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 0;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(122, 38, 53, 0.22);
  border-radius: 8px;
  background: rgba(210, 163, 96, 0.18);
  color: var(--soft-ink);
  font: 800 0.82rem var(--sans);
}
.filter-chip button {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 8px;
  background: var(--oxblood);
  color: var(--ivory);
  cursor: pointer;
  font: 900 0.78rem var(--sans);
}
.vault-list { display: grid; gap: 12px; }
.vault-row, .recommendation, .concierge-card {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(13, 45, 38, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 250, 240, 0.91), rgba(255, 250, 240, 0.91)),
    url("/images/textures/paper-grain.svg");
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.vault-row img, .recommendation img, .concierge-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  justify-self: center;
}
.recommendation img { width: 116px; height: 116px; }
.concierge-card img { width: 92px; height: 92px; }

.bottle-hero, .occasion-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(52px, 8vw, 100px) clamp(20px, 5vw, 64px);
  background: var(--deep-green);
  color: var(--ivory);
}
.bottle-portrait {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 440px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(244, 240, 230, 0.16), rgba(210, 163, 96, 0.14)),
    var(--bottle-green);
  box-shadow: var(--shadow-deep);
}
.bottle-portrait img { max-height: 390px; object-fit: contain; }
.bottle-hero > div:last-child, .occasion-hero > div:last-child { position: relative; z-index: 1; }
.verdict-seal {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 10px 0 0;
  padding: 0 14px;
  border: 1px solid rgba(210, 163, 96, 0.64);
  border-radius: 8px;
  color: var(--brass);
  font: 860 0.82rem var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}
.specs div {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 250, 240, 0.06);
}
dt { color: rgba(255, 250, 240, 0.62); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; }
dd { margin: 4px 0 0; font-weight: 820; }
.bottle-main {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
}
.editorial-note p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.38;
}
blockquote {
  margin: 24px 0 0;
  padding: 18px 0 0 20px;
  border-left: 3px solid var(--brass);
  color: var(--oxblood);
  font-weight: 850;
}
.retailer-row {
  display: grid;
  gap: 3px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.retailer-row a { color: var(--oxblood); font-weight: 900; }
.retailer-row small { color: var(--sage); }
.alcohol-warning {
  margin: 18px 0 4px;
  padding: 16px;
  border: 1px solid rgba(122, 38, 53, 0.16);
  border-radius: 8px;
  background: rgba(122, 38, 53, 0.08);
  color: var(--soft-ink);
}
.alcohol-warning p { margin: 0; color: var(--muted-ink); font-weight: 720; }

.occasion-hero {
  min-height: min(640px, 66vh);
  grid-template-columns: 1fr;
  align-items: end;
}
.occasion-backdrop {
  position: absolute;
  inset: 0;
}
.occasion-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.04);
}
.occasion-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 27, 23, 0.88), rgba(13, 45, 38, 0.58), rgba(13, 45, 38, 0.2));
}
.occasion-hero > div:last-child { max-width: var(--max); }
.recommendation { grid-template-columns: 50px 116px 1fr auto; }
.rank {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--bottle-green);
  color: var(--brass);
  font-family: var(--serif);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(210, 163, 96, 0.28);
}
.concierge { display: grid; grid-template-columns: 330px 1fr; gap: 20px; align-items: start; }
.concierge-controls {
  position: sticky;
  top: 92px;
  grid-template-columns: 1fr;
  padding: 22px;
  border: 1px solid rgba(13, 45, 38, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 250, 240, 0.91), rgba(255, 250, 240, 0.91)),
    url("/images/textures/paper-grain.svg");
  box-shadow: var(--shadow-soft);
}
.shortlist-title { margin-bottom: 4px; }
.concierge-status { margin: 0 0 12px; color: var(--muted-ink); font-weight: 820; }
.concierge-results { display: grid; gap: 12px; counter-reset: shortlist; }
.concierge-card {
  position: relative;
  grid-template-columns: 92px 1fr;
  padding-left: 58px;
  counter-increment: shortlist;
}
.concierge-card::before {
  content: counter(shortlist);
  position: absolute;
  left: 16px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--bottle-green);
  color: var(--brass);
  font-family: var(--serif);
  font-weight: 900;
}
.empty-state {
  margin: 0 0 12px;
  padding: 18px;
  border: 1px solid rgba(13, 45, 38, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 250, 240, 0.91), rgba(255, 250, 240, 0.91)),
    url("/images/textures/paper-grain.svg");
  color: var(--muted-ink);
  font-weight: 720;
}
.empty-state p { margin: 0 0 12px; }
.empty-state a { color: var(--oxblood); font-weight: 900; }
.legal-content { max-width: 800px; }
.legal-content article { padding: 28px 0; border-bottom: 1px solid var(--line); }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 27, 23, 0.88);
  color: var(--ivory);
}
html.age-confirmed .age-gate { display: none; }
.age-gate-panel {
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background:
    linear-gradient(rgba(13, 45, 38, 0.96), rgba(13, 45, 38, 0.96)),
    url("/images/textures/paper-grain.svg");
  box-shadow: var(--shadow-deep);
}
.age-gate-panel h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1;
}
.age-gate-panel p { color: rgba(255, 250, 240, 0.82); }
.resource-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.disclosure-strip {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 64px);
  background:
    linear-gradient(rgba(13, 45, 38, 0.98), rgba(13, 45, 38, 0.98)),
    url("/images/textures/paper-grain.svg");
  color: var(--ivory);
}
.disclosure-strip p { margin: 0; color: rgba(255, 250, 240, 0.78); }
.disclosure-strip a { color: var(--brass); font-weight: 900; white-space: nowrap; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 42px clamp(20px, 5vw, 64px);
  background: var(--deep-green);
  color: var(--ivory);
}
.site-footer p { max-width: 46ch; color: rgba(255, 250, 240, 0.7); }
.site-footer .small a { color: var(--brass); }

[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .hero, .feature-band, .split-feature, .bottle-hero, .bottle-main, .concierge {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; align-items: start; padding-top: 58px; }
  .hero-note { max-width: 620px; }
  .intro-grid, .profile-grid, .bottle-grid, .occasion-grid, .occasion-rail {
    grid-template-columns: repeat(2, 1fr);
  }
  .filters { grid-template-columns: 1fr 1fr; }
  .filter-reset { align-self: stretch; }
  .concierge-controls { position: static; }
}

@media (max-width: 640px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .main-nav, .site-footer nav { flex-wrap: wrap; gap: 14px; }
  .hero { padding: 30px 20px 24px; gap: 18px; }
  .hero h1 { font-size: clamp(2.35rem, 11vw, 2.82rem); }
  .hero p { font-size: 1rem; line-height: 1.55; }
  .hero-actions { margin-top: 18px; }
  .hero-note { padding: 14px 16px; }
  .hero-note .meta { margin-bottom: 8px; }
  .page-hero h1, .bottle-hero h1, .occasion-hero h1 {
    font-size: clamp(2.25rem, 9.8vw, 3rem);
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
  }
  .occasion-hero h1 { font-size: clamp(2rem, 8.6vw, 2.55rem); }
  .intro-grid, .profile-grid, .bottle-grid, .occasion-grid, .occasion-rail, .filters {
    grid-template-columns: 1fr;
  }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .vault-row, .recommendation, .concierge-card {
    grid-template-columns: 82px 1fr;
  }
  .vault-row .text-link, .recommendation .button { grid-column: 2; justify-self: start; }
  .recommendation .rank { grid-column: 1; grid-row: 1 / span 2; }
  .recommendation img { grid-column: 2; max-height: 128px; justify-self: start; }
  .concierge-card { padding-left: 16px; }
  .concierge-card::before { position: static; grid-column: 1; grid-row: 1; }
  .concierge-card img { grid-column: 1; grid-row: 2; }
  .concierge-card div { grid-column: 2; grid-row: 1 / span 2; }
  .specs { grid-template-columns: 1fr; }
  .bottle-portrait { width: 100%; min-height: 0; aspect-ratio: 4 / 3; }
  .disclosure-strip, .site-footer { flex-direction: column; }
}
