/* ========================================================================== 
   Domaine 1196 — v03 Lafite overnight depth build
   Editorial paper system: sharp hairlines, quiet hierarchy, real photography.
   ========================================================================== */
@font-face {
  font-family: "Adelon Serial";
  src: url("../assets/fonts/AdelonSerial-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Adelon Serial";
  src: url("../assets/fonts/AdelonSerial.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Adelon Serial";
  src: url("../assets/fonts/AdelonSerial-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ASW DIN";
  src:
    url("../assets/fonts/ASW-DIN-Variable.ttf") format("truetype-variations"),
    url("../assets/fonts/ASW-DIN-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avus Pro";
  src: url("../assets/fonts/AvusPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #38383a;
  --paper: #efeae0;
  --paper-2: #e6dfd2;
  --paper-3: #d9d1c0;
  --muted: #7f7b6e;
  --gold: #7c6946;
  --blue: #ccd5dc;
  --line: rgba(56, 56, 58, 0.16);
  --line-strong: rgba(56, 56, 58, 0.34);
  --white: #f8f4ea;
  --danger: #6b3027;
  --ok: #42543d;
  --font-display: "Adelon Serial", "Times New Roman", serif;
  --font-text: "ASW DIN", "Avus Pro", "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(20px, 4vw, 64px);
  --wrap: 1320px;
  --narrow: 980px;
  --header: 86px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: none;
  --tracking: 0.16em;
  --t-hero: clamp(3.4rem, 9vw, 8.6rem);
  --t-1: clamp(2.6rem, 5.4vw, 5.6rem);
  --t-2: clamp(2rem, 3vw, 3.25rem);
  --t-3: clamp(1.35rem, 1.4vw, 1.75rem);
  --section: clamp(64px, 8vw, 128px);
}
@media (max-width: 720px) {
  :root {
    --header: 68px;
    --section: 58px;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 17px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  line-height: 1.6;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-locked {
  overflow: hidden;
}
img,
video,
picture,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}
input,
select,
textarea {
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 12px 13px;
  min-height: 46px;
  width: 100%;
}
textarea {
  min-height: 128px;
  resize: vertical;
}
label {
  display: grid;
  gap: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 650;
  color: var(--muted);
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
::selection {
  background: var(--gold);
  color: var(--paper);
}
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.narrow {
  max-width: var(--narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--section);
}
.section--tight {
  padding-block: clamp(40px, 5vw, 82px);
}
.section--paper2 {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
}
.center {
  text-align: center;
}
.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}
.kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  line-height: 1.4;
}
.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.012em;
  margin: 0;
}
.display--hero {
  font-size: var(--t-hero);
  text-transform: uppercase;
}
.display--1 {
  font-size: var(--t-1);
}
.display--2 {
  font-size: var(--t-2);
}
.display--3 {
  font-size: var(--t-3);
}
.lead {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  line-height: 1.34;
  font-weight: 300;
  margin: 0;
  color: var(--ink);
}
.lead--wide {
  max-width: 31ch;
  margin-inline: auto;
}
.body-copy {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.78;
  max-width: 68ch;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 0.82rem;
}
.caps {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
}
.version-badge {
  position: fixed;
  z-index: 1800;
  left: 18px;
  bottom: 18px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 8px 11px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.version-badge:hover {
  background: var(--ink);
  color: var(--paper);
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  height: var(--header);
  border-bottom: 1px solid transparent;
  color: var(--ink);
  transition:
    background 0.35s var(--ease),
    border 0.35s var(--ease),
    color 0.35s var(--ease);
}
.site-header.is-over-hero:not(.is-scrolled),
body.menu-open .site-header {
  color: var(--paper);
}
.site-header.is-over-hero:not(.is-scrolled) .brand img,
body.menu-open .brand img {
  filter: brightness(0) invert(1);
}
.site-header.is-scrolled {
  background: rgba(239, 234, 224, 0.96);
  border-bottom-color: var(--line);
}
.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding-inline: clamp(18px, 3vw, 54px);
  max-width: 1800px;
  margin: auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
}
.brand img {
  height: 43px;
  width: auto;
}
.nav-mini {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 30px);
  justify-self: start;
}
.nav-mini--right {
  justify-self: end;
}
.nav-link,
.tool-link,
.cart-link {
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-link {
  position: relative;
}
.nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right 0.35s var(--ease);
}
.nav-link:hover:after,
.nav-link[aria-current="page"]:after {
  right: 0;
}
.cart-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cart-count {
  min-width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  display: inline-grid;
  place-items: center;
  font-size: 0.62rem;
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.bars {
  width: 24px;
  height: 12px;
  position: relative;
}
.bars:before,
.bars:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition:
    transform 0.35s var(--ease),
    top 0.35s var(--ease);
}
.bars:before {
  top: 1px;
}
.bars:after {
  top: 10px;
}
body.menu-open .bars:before {
  top: 6px;
  transform: rotate(45deg);
}
body.menu-open .bars:after {
  top: 6px;
  transform: rotate(-45deg);
}
.lang-picker {
  display: flex;
  gap: 6px;
}
.lang-picker button {
  min-width: 30px;
  height: 28px;
  border: 1px solid transparent;
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.lang-picker button[aria-pressed="true"],
.lang-picker button:hover {
  border-color: currentColor;
}
.mobile-only {
  display: none;
}
@media (max-width: 980px) {
  .nav-mini .nav-link,
  .tool-link,
  .lang-picker {
    display: none;
  }
  .site-header__inner {
    grid-template-columns: 1fr auto 1fr;
  }
  .mobile-only {
    display: inline-flex;
  }
}
@media (max-width: 560px) {
  .brand img {
    height: 31px;
  }
  .menu-toggle span:not(.bars) {
    display: none;
  }
  .nav-mini {
    gap: 12px;
  }
  .version-badge {
    left: 10px;
    bottom: 10px;
  }
}
.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--ink);
  color: var(--paper);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.36s var(--ease),
    visibility 0.36s var(--ease);
  display: grid;
  grid-template-rows: var(--header) 1fr auto;
}
.overlay-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.overlay-menu__grid {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 64px);
  max-width: 1360px;
  width: 100%;
  margin: auto;
  padding: 32px var(--gutter);
}
.menu-group h2 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(239, 234, 224, 0.58);
  margin: 0 0 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(239, 234, 224, 0.18);
}
.menu-group a {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 1.7vw, 2rem);
  line-height: 1.22;
  margin: 0 0 13px;
  color: var(--paper);
}
.menu-group a:hover {
  color: var(--paper-3);
}
.menu-group small {
  display: block;
  font-family: var(--font-text);
  font-size: 0.72rem;
  color: rgba(239, 234, 224, 0.55);
  margin-top: 2px;
}
.overlay-menu__foot {
  border-top: 1px solid rgba(239, 234, 224, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px var(--gutter);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(239, 234, 224, 0.62);
}
@media (max-width: 900px) {
  .overlay-menu {
    display: block;
    overflow: auto;
  }
  .overlay-menu__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: calc(var(--header) + 28px);
  }
  .overlay-menu__foot {
    display: grid;
  }
  .menu-group a {
    font-size: 1.55rem;
  }
}
.hero {
  position: relative;
  min-height: min(920px, 100svh);
  background: var(--ink);
  display: grid;
  place-items: center;
  color: var(--paper);
  isolation: isolate;
}
.hero--short {
  min-height: clamp(480px, 62svh, 720px);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(56, 56, 58, 0.42);
}
.hero__inner {
  text-align: center;
  padding: calc(var(--header) + 44px) var(--gutter) 72px;
  max-width: 1120px;
  margin: auto;
}
.hero .kicker {
  color: rgba(239, 234, 224, 0.88);
}
.hero__lead {
  max-width: 31ch;
  margin: 28px auto 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.38;
}
.hero__actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn,
.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  padding: 12px 18px 10px;
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.1;
  background: transparent;
  color: inherit;
}
.btn:hover,
.arrow-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--paper {
  border-color: rgba(239, 234, 224, 0.75);
  color: var(--paper);
}
.btn--ink {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--ink:hover {
  background: transparent;
  color: var(--ink);
}
.btn--gold {
  background: var(--gold);
  color: var(--paper);
  border-color: var(--gold);
}
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}
.text-link {
  font-weight: 760;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.text-link:hover {
  color: var(--gold);
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 110px);
  align-items: start;
}
.intro-grid .lead {
  max-width: 15ch;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(30px, 5vw, 86px);
  align-items: center;
}
.split--rev {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.split--rev .split__media {
  order: 2;
}
.split__media {
  border: 1px solid var(--line);
  background: var(--paper-2);
  overflow: hidden;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.split__media--portrait img {
  aspect-ratio: 3/4;
}
.split__content h2 {
  margin-bottom: 24px;
}
.split__content p {
  color: var(--muted);
  line-height: 1.78;
}
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  border: 1px solid var(--line);
  background: rgba(239, 234, 224, 0.35);
  min-width: 0;
}
.card__media {
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  overflow: hidden;
}
.card__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.card:hover .card__media img {
  transform: scale(1.025);
}
.card__body {
  padding: 22px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 300;
  line-height: 1.12;
  margin: 0 0 12px;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}
.card__meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 750;
  color: var(--gold);
}
.editorial-list {
  display: grid;
  gap: clamp(44px, 6vw, 92px);
}
.entry {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 86px);
  align-items: center;
}
.entry:nth-child(even) {
  grid-template-columns: 0.95fr 1.05fr;
}
.entry:nth-child(even) .entry__media {
  order: 2;
}
.entry__media {
  border: 1px solid var(--line);
  overflow: hidden;
}
.entry__media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.entry__content p {
  color: var(--muted);
  line-height: 1.75;
}
.ribbon {
  border-block: 1px solid var(--line);
  padding: 26px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ribbon__track {
  display: flex;
  gap: 34px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 2.4rem);
  font-weight: 300;
  color: var(--muted);
}
.ribbon__track span:nth-child(even) {
  color: var(--gold);
}
.image-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 18px;
}
.image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
}
.image-strip img:nth-child(2) {
  aspect-ratio: 3/4;
}
.stat-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.stat {
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 750;
}
.notice {
  border: 1px solid var(--line-strong);
  padding: 20px;
  background: var(--paper-2);
  color: var(--muted);
}
.shop-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.filters {
  position: sticky;
  top: calc(var(--header) + 18px);
  border: 1px solid var(--line);
  padding: 18px;
  background: var(--paper);
}
.filter-group {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.filter-group:first-child {
  border-top: 0;
  padding-top: 0;
}
.filter-group h3 {
  margin: 0 0 12px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  border: 1px solid var(--line-strong);
  padding: 8px 10px 7px;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.chip.is-active,
.chip:hover {
  background: var(--ink);
  color: var(--paper);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  border: 1px solid var(--line);
  background: var(--paper);
  display: grid;
  grid-template-rows: auto 1fr;
}
.product-card__media {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 24px;
  position: relative;
}
.product-card__media img {
  max-height: 255px;
  width: auto;
  object-fit: contain;
}
.product-card__body {
  padding: 18px;
  display: grid;
  gap: 10px;
}
.product-card h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.45rem;
  line-height: 1.12;
  margin: 0;
}
.price {
  font-weight: 780;
  letter-spacing: 0.07em;
}
.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.quick-btn {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  padding: 10px;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 780;
  opacity: 0;
  transform: translateY(5px);
  transition: 0.24s var(--ease);
}
.product-card:hover .quick-btn,
.product-card:focus-within .quick-btn {
  opacity: 1;
  transform: none;
}
.cart-lines {
  display: grid;
  gap: 12px;
}
.cart-line {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 12px;
}
.cart-line img {
  width: 70px;
  height: 80px;
  object-fit: contain;
  background: var(--paper-2);
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
}
.summary-box {
  border: 1px solid var(--line-strong);
  padding: 22px;
  background: var(--paper-2);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-grid .full {
  grid-column: 1/-1;
}
.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.form-note {
  color: var(--ok);
  font-weight: 650;
}
.table-list {
  border-top: 1px solid var(--line);
}
.table-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr) auto;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.table-row b {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
}
.table-row span,
.table-row p {
  color: var(--muted);
  margin: 0;
}
.calendar-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.map-frame {
  min-height: 440px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.map-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.map-card {
  position: relative;
  background: rgba(239, 234, 224, 0.93);
  border: 1px solid var(--line-strong);
  padding: 24px;
  max-width: 460px;
  margin: 24px;
}
.pin-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.pin {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}
.pin:before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  background: var(--gold);
  margin-top: 7px;
}
.flight-products {
  display: grid;
  gap: 18px;
}
.flight-item {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 16px;
  background: var(--paper);
}
.flight-item img {
  max-height: 190px;
  width: auto;
  justify-self: center;
}
.flight-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}
.legal-copy {
  max-width: 900px;
  margin: auto;
  color: var(--muted);
}
.legal-copy h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  margin: 42px 0 10px;
}
.legal-copy p,
.legal-copy li {
  line-height: 1.78;
}
.legal-copy ul {
  padding-left: 1.1em;
  list-style: disc;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 44px var(--gutter) 78px;
  background: var(--paper-2);
}
.footer__grid {
  max-width: var(--wrap);
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 32px;
}
.footer img {
  height: 62px;
  width: auto;
}
.footer a:hover {
  color: var(--gold);
}
.footer h2 {
  font-size: 0.68rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.footer p,
.footer li {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0 0 8px;
}
.newsletter-band {
  border-block: 1px solid var(--line);
  padding: 36px 0;
  background: var(--paper);
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 560px;
  margin: 22px auto 0;
}
.cookie {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1700;
  width: min(430px, calc(100vw - 36px));
  border: 1px solid var(--line-strong);
  background: var(--paper);
  padding: 18px;
  display: none;
}
.cookie.is-visible {
  display: block;
}
.cookie p {
  color: var(--muted);
  margin: 0 0 14px;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(56, 56, 58, 0.62);
}
.modal.is-open {
  display: flex;
}
.modal__panel {
  width: min(920px, 100%);
  max-height: 90svh;
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  padding: 0;
}
.modal__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 20px 22px;
}
.modal__body {
  padding: 22px;
}
.modal__close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  font-size: 1.2rem;
}
.toast {
  position: fixed;
  right: 18px;
  top: calc(var(--header) + 18px);
  z-index: 1900;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  padding: 12px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s var(--ease);
}
.toast.is-on {
  transform: none;
  opacity: 1;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .card__media img,
  .quick-btn {
    transition: none;
  }
}
@media (max-width: 1100px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-line {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .intro-grid,
  .split,
  .split--rev,
  .entry,
  .entry:nth-child(even),
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .split--rev .split__media,
  .entry:nth-child(even) .entry__media {
    order: 0;
  }
  .grid--2,
  .grid--3,
  .grid--4,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .filters {
    position: static;
  }
  .table-row {
    grid-template-columns: 1fr;
  }
  .flight-item {
    grid-template-columns: 90px 1fr;
  }
  .flight-item .btn {
    grid-column: 1/-1;
  }
  .image-strip {
    grid-template-columns: 1fr 1fr;
  }
  .image-strip img:last-child {
    display: none;
  }
  .newsletter-form {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: auto;
  }
}
@media (max-width: 520px) {
  .hero__actions,
  .form-actions,
  .product-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .site-header__inner {
    padding-inline: 14px;
  }
  .cart-line {
    grid-template-columns: 56px 1fr;
  }
  .cart-line img {
    width: 56px;
    height: 70px;
  }
  .flight-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .flight-item img {
    max-height: 170px;
  }
  .modal {
    padding: 10px;
  }
  .modal__body,
  .modal__head {
    padding: 16px;
  }
  .stat-line {
    grid-template-columns: 1fr;
  }
}
.event-card-link {
  display: block;
  width: 100%;
  height: 100%;
  text-align: left;
  color: inherit;
  background: transparent;
}
.event-card-link .card__body {
  min-height: 220px;
}
.event-card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.event-card-link:hover h3 {
  color: var(--gold);
}
.source-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.source-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--paper);
}
@media (max-width: 900px) {
  .source-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 520px) {
  .source-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Overnight v03 review fixes: keep review chrome away from mobile controls. */
@media (max-width: 560px) {
  .version-badge {
    top: 18px;
    bottom: auto;
    left: 52px;
    padding: 6px 8px;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    background: rgba(239, 234, 224, 0.92);
  }
  .cookie {
    right: 10px;
    bottom: 70px;
    width: calc(100vw - 20px);
  }
  body[data-page="shop"] .hero--short {
    min-height: clamp(360px, 48svh, 460px);
  }
  body[data-page="shop"] .hero__inner {
    padding-bottom: 42px;
  }
}

.photo-essay {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.photo-essay__head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  margin-bottom: 34px;
}
.photo-essay__head .body-copy {
  margin: 0;
}
.photo-wall {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}
.photo-tile {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper-2);
  position: relative;
  min-height: 270px;
  overflow: hidden;
}
.photo-tile--wide {
  grid-column: span 2;
}
.photo-tile--tall {
  grid-row: span 2;
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.photo-tile--tall img {
  aspect-ratio: 3/5;
}
.photo-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 11px 12px 9px;
  background: rgba(56, 56, 58, 0.72);
  color: var(--paper);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.shop-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: center;
}
.shop-editorial__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.shop-editorial__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--line);
}
.shop-editorial__media img:first-child {
  grid-row: span 2;
  aspect-ratio: 3/5;
}
.shop-main {
  min-width: 0;
}
.shop-tools {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin: 0 0 18px;
}
.event-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.event-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  background: var(--paper);
  padding: 20px;
}
.event-row img {
  width: 100%;
  aspect-ratio: 5/3;
  object-fit: cover;
  border: 1px solid var(--line);
}
.event-row h2 {
  margin: 0 0 8px;
}
.event-row p {
  margin: 0;
  color: var(--muted);
}
.function-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 28px;
}
.function-strip div {
  background: var(--paper);
  padding: 20px;
}
.function-strip b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 8px;
}
.function-strip span {
  color: var(--muted);
  font-size: 0.78rem;
}
.brand-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 30px;
}
.brand-facts div {
  background: var(--paper);
  padding: 22px;
}
.brand-facts b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.brand-facts span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}
.cookie {
  box-shadow: 0 18px 60px rgba(56, 56, 58, 0.16);
}
@media (max-width: 900px) {
  .photo-essay__head,
  .shop-editorial {
    grid-template-columns: 1fr;
  }
  .photo-wall {
    grid-template-columns: 1fr 1fr;
  }
  .photo-tile--wide {
    grid-column: span 1;
  }
  .photo-tile--tall {
    grid-row: span 1;
  }
  .event-row {
    grid-template-columns: 1fr;
  }
  .function-strip,
  .brand-facts {
    grid-template-columns: 1fr 1fr;
  }
  body[data-page="shop"] .shop-main {
    order: 1;
  }
  body[data-page="shop"] .filters {
    order: 2;
  }
  .shop-tools {
    align-items: flex-start;
    display: grid;
  }
  .shop-editorial__media {
    order: -1;
  }
}
@media (max-width: 560px) {
  .photo-wall,
  .function-strip,
  .brand-facts {
    grid-template-columns: 1fr;
  }
  .photo-tile {
    min-height: 230px;
  }
  .shop-editorial__media {
    grid-template-columns: 1fr;
  }
  .shop-editorial__media img:first-child {
    grid-row: auto;
    aspect-ratio: 4/5;
  }
  .event-row {
    padding: 16px;
  }
  .source-gallery {
    margin-top: 4px;
  }
}

.mobile-lang {
  display: none;
}
.nav-mini--right .mobile-lang {
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 980px) {
  .nav-mini--right .mobile-lang {
    display: inline-flex;
  }
  .nav-mini--right {
    gap: 14px;
  }
}
body.is-locked .version-badge {
  display: none;
}

.home-gateway {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}
.home-gateway h2 {
  max-width: 13ch;
}
.gateway-list {
  border-top: 1px solid var(--line-strong);
}
.gateway-list a {
  display: grid;
  grid-template-columns: 52px minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.22s var(--ease);
}
.gateway-list a:hover {
  color: var(--gold);
}
.gateway-list span {
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.gateway-list b {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  font-weight: 300;
  line-height: 1.1;
}
.gateway-list em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
}
.events-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  margin-bottom: 30px;
}
.events-intro .body-copy {
  margin: 0;
}
.cookie {
  left: 18px;
  right: 18px;
  bottom: 18px;
  width: auto;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  box-shadow: none;
}
.cookie.is-visible {
  display: grid;
}
.cookie .chip-row {
  justify-content: flex-end;
}
.cookie p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .home-gateway,
  .events-intro {
    grid-template-columns: 1fr;
  }
  .gateway-list a {
    grid-template-columns: 42px 1fr;
  }
  .gateway-list em {
    grid-column: 2;
  }
  .cookie {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .cookie .chip-row {
    justify-content: flex-start;
  }
}
@media (max-width: 560px) {
  body[data-page="shop"] .section--tight {
    padding-top: 30px;
  }
  .shop-tools .chip-row {
    width: 100%;
  }
  .shop-tools .btn {
    flex: 1;
  }
  .product-card__media {
    min-height: 220px;
    padding: 18px;
  }
  .product-card__media img {
    max-height: 190px;
  }
  .quick-btn {
    opacity: 1;
    transform: none;
    position: static;
    margin-top: 12px;
  }
  .cookie {
    left: 10px;
    right: 10px;
    bottom: 70px;
    width: auto;
  }
}

.route-fallback {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 36vw);
  gap: 1px;
  background: var(--ink);
  color: var(--ink);
}
.route-fallback__copy,
.route-fallback__media {
  background: var(--paper);
  padding: clamp(28px, 6vw, 84px);
}
.route-fallback h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 108px);
  font-weight: 400;
  line-height: 0.92;
  margin: 16px 0 24px;
  letter-spacing: 0;
}
.route-fallback p {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.6;
}
.route-fallback nav,
.route-fallback__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.route-fallback a,
.route-fallback button {
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 12px 16px;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}
.route-fallback form {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin-top: 28px;
}
.route-fallback label {
  display: grid;
  gap: 8px;
}
.route-fallback input {
  border: 1px solid rgba(23, 22, 18, 0.32);
  border-radius: 0;
  background: var(--paper);
  padding: 12px 14px;
}
.route-fallback article {
  border-top: 1px solid rgba(23, 22, 18, 0.18);
  margin-top: 28px;
  padding-top: 20px;
}
.route-fallback article h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 400;
  margin: 0 0 10px;
}
.route-fallback__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 1px;
  padding: 1px;
}
.route-fallback__media img {
  width: 100%;
  min-height: 220px;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 560px) {
  .route-fallback {
    grid-template-columns: 1fr;
  }
  .route-fallback__copy {
    padding: 88px 18px 28px;
  }
  .route-fallback__media {
    grid-template-columns: 1fr 1fr;
  }
  .route-fallback__media img {
    min-height: 160px;
  }
}

/* Lafite editorial repair: paper cover, deliberate commerce, quieter modals. */
.home-cover {
  min-height: 100svh;
  padding: calc(var(--header) + clamp(42px, 7vw, 100px)) var(--gutter)
    clamp(28px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  grid-template-rows: 1fr auto;
  gap: clamp(24px, 5vw, 78px);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.home-cover__paper {
  max-width: 760px;
  padding-left: clamp(0px, 5vw, 72px);
}
.home-cover__mark {
  width: clamp(48px, 6vw, 82px);
  margin-bottom: clamp(44px, 8vw, 116px);
  opacity: 0.86;
}
.home-cover h1 {
  font-size: clamp(4.8rem, 12vw, 12rem);
  line-height: 0.86;
  letter-spacing: -0.018em;
  text-transform: none;
  max-width: 7ch;
}
.home-cover__paper p {
  margin: clamp(28px, 4vw, 52px) 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.home-cover__image {
  margin: 0;
  border: 1px solid var(--line-strong);
  background: var(--paper-2);
  align-self: stretch;
  min-height: min(640px, 68svh);
  display: grid;
  grid-template-rows: 1fr auto;
}
.home-cover__image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.home-cover__image figcaption {
  border-top: 1px solid var(--line);
  padding: 13px 14px 11px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 740;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.home-cover__routes {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 2.4vw, 34px);
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.home-cover__routes a {
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
.home-cover__routes a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.shop-cover {
  padding: calc(var(--header) + clamp(42px, 7vw, 96px)) 0 clamp(40px, 6vw, 92px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.shop-cover__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 82px);
  align-items: end;
}
.shop-cover__copy .body-copy {
  margin-top: 22px;
}
.shop-cover__actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.shop-cover__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.shop-cover__proof article {
  min-width: 0;
  background: var(--paper-2);
  padding: clamp(14px, 2vw, 24px);
  display: grid;
  gap: 10px;
}
.shop-cover__proof img {
  width: 100%;
  height: clamp(150px, 18vw, 230px);
  object-fit: contain;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 12px;
}
.shop-cover__proof span,
.product-facts dt {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.shop-cover__proof b {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-weight: 300;
  line-height: 1.08;
}
.shop-cover__proof small {
  color: var(--muted);
  line-height: 1.5;
}
.product-facts {
  display: grid;
  gap: 1px;
  margin: 4px 0 8px;
  background: var(--line);
  border: 1px solid var(--line);
}
.product-facts div {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  background: var(--paper);
  padding: 8px 10px;
}
.product-facts dt,
.product-facts dd {
  margin: 0;
}
.product-facts dd {
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.38;
}
.product-detail {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(20px, 4vw, 52px);
  align-items: start;
}
.product-detail__media {
  background: var(--paper-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 24px;
}
.product-detail__media img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
}
.product-detail__copy .body-copy {
  margin-top: 18px;
}
.brand-editorial {
  border-bottom: 1px solid var(--line);
}
.brand-editorial__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}
.brand-editorial .lead {
  max-width: 28ch;
}
.modal {
  background: rgba(239, 234, 224, 0.78);
}
.modal__panel {
  width: min(860px, 100%);
  background: var(--paper);
  box-shadow: none;
}
.modal__head {
  background: var(--paper-2);
}
.cookie {
  background: var(--paper);
  border-color: var(--line-strong);
}

@media (max-width: 920px) {
  .home-cover,
  .shop-cover__grid,
  .brand-editorial__grid,
  .product-detail {
    grid-template-columns: 1fr;
  }
  .home-cover__paper {
    padding-left: 0;
  }
  .home-cover__mark {
    margin-bottom: 38px;
  }
  .home-cover__image {
    min-height: 52svh;
  }
  .home-cover__routes {
    justify-content: flex-start;
  }
  .shop-cover__proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-cover {
    min-height: auto;
    padding-top: calc(var(--header) + 34px);
    gap: 30px;
  }
  .home-cover h1 {
    font-size: clamp(4rem, 22vw, 6.6rem);
  }
  .home-cover__image {
    min-height: 380px;
  }
  .home-cover__routes {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .shop-cover {
    padding-top: calc(var(--header) + 28px);
  }
  .shop-cover__proof article {
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
  }
  .shop-cover__proof img {
    grid-row: span 3;
    height: 118px;
  }
  .product-facts div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .product-detail__media {
    min-height: 250px;
  }
}

/* Keep the consent affordance present but out of the primary review composition. */
.cookie {
  left: auto;
  right: 18px;
  bottom: 18px;
  width: min(430px, calc(100vw - 36px));
  grid-template-columns: 1fr;
}
.cookie.is-visible {
  display: block;
}
.cookie .chip-row {
  justify-content: flex-start;
}
@media (max-width: 560px) {
  .cookie {
    left: 10px;
    right: 10px;
    bottom: 12px;
    width: auto;
  }
}

/* Mobile shop legibility after replacing the dark commerce hero with paper. */
@media (max-width: 560px) {
  .version-badge {
    top: 18px;
    bottom: auto;
  }
  .shop-cover {
    overflow: hidden;
  }
  .shop-cover__copy h1 {
    max-width: 8.6ch;
    font-size: clamp(3.15rem, 15vw, 4.8rem);
    line-height: 0.96;
    overflow-wrap: anywhere;
  }
  .shop-cover__copy .body-copy {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

@media (max-width: 560px) {
  .shop-cover__copy .body-copy {
    max-width: 30ch;
  }
  .cart-link span:first-child {
    display: none;
  }
  .cart-link {
    gap: 0;
  }
}


/* Round 13: source fallback depth and rendered first-viewport fixes. */
.route-fallback__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 26px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}
.route-fallback__facts div {
  background: var(--paper);
  padding: 14px;
}
.route-fallback__facts dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.route-fallback__facts dd {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.15;
}
.fallback-products,
.fallback-events {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}
.fallback-product,
.fallback-events article {
  background: var(--paper);
  margin: 0;
  padding: 16px;
  border-top: 0;
}
.fallback-product {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}
.fallback-product img {
  width: 96px;
  height: 132px;
  object-fit: contain;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.fallback-product strong {
  display: block;
  margin-top: 8px;
  font-size: 1.1rem;
}
.fallback-product--priority {
  grid-template-columns: 130px minmax(0, 1fr);
  border: 1px solid var(--line-strong);
  margin-top: 24px;
}
.fallback-product--priority img {
  width: 130px;
  height: 178px;
}
.fallback-product--priority .kicker {
  margin-bottom: 8px;
}
.fallback-events nav {
  margin-top: 14px;
}
.route-fallback textarea,
.route-fallback select {
  border: 1px solid rgba(23, 22, 18, 0.32);
  min-height: 110px;
}
.route-fallback select {
  min-height: 46px;
  background: var(--paper);
  padding: 12px 14px;
}
.shop-cover-product .btn {
  justify-content: center;
  margin-top: 14px;
  width: 100%;
}
.event-priority {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  padding: clamp(18px, 3vw, 32px) var(--gutter);
  background: var(--paper);
  border-block: 1px solid var(--line-strong);
}
.event-priority h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
}
.event-priority p {
  margin: 8px 0 0;
  color: var(--muted);
}
.steinbach-service-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  border-bottom: 1px solid var(--line-strong);
}
.steinbach-service-band div {
  min-height: 112px;
  padding: 22px var(--gutter);
  background: var(--blue);
  color: var(--ink);
}
.steinbach-service-band span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.steinbach-service-band b {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 300;
  line-height: 1.1;
}
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}
.cart-support,
.account-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}
.cart-empty {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(18px, 3vw, 30px);
}
.cart-recs {
  display: grid;
  gap: 1px;
  margin-top: 22px;
  border: 1px solid var(--line);
  background: var(--line);
}
.rec-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  background: var(--paper);
  padding: 14px;
  align-items: center;
}
.rec-card img {
  width: 88px;
  height: 112px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.rec-card b,
.account-panel__row b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 300;
  line-height: 1.14;
}
.rec-card span,
.account-panel__row span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 4px;
}
.rec-card strong {
  display: block;
  margin: 8px 0 10px;
}
.account-panel {
  border: 1px solid var(--line);
  background: var(--line);
  display: grid;
  gap: 1px;
}
.account-panel__row {
  background: var(--paper);
  padding: 18px;
}
body[data-page="coming-up"] .hero--short {
  min-height: 42svh;
}
@media (max-width: 920px) {
  .event-priority,
  .steinbach-service-band {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .route-fallback__facts,
  .event-priority,
  .steinbach-service-band {
    grid-template-columns: 1fr;
  }
  .fallback-product {
    grid-template-columns: 76px minmax(0, 1fr);
  }
  .fallback-product img {
    width: 76px;
    height: 110px;
  }
  .fallback-product--priority {
    grid-template-columns: 88px minmax(0, 1fr);
    margin-top: 18px;
  }
  .fallback-product--priority img {
    width: 88px;
    height: 124px;
  }
  .shop-cover__proof {
    grid-template-columns: 1fr;
    order: -1;
    margin-bottom: 12px;
  }
  .shop-cover-product {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    text-align: left;
  }
  .shop-cover-product img {
    grid-row: span 4;
    height: 132px;
  }
  .shop-cover-product .btn {
    grid-column: 2;
    min-height: 42px;
    padding: 10px 12px;
  }
  body[data-page="coming-up"] .hero--short {
    min-height: 36svh;
  }
}

@media (max-width: 900px) {
  .cart-layout,
  .cart-support,
  .account-overview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .rec-card {
    grid-template-columns: 74px minmax(0, 1fr);
  }
  .rec-card img {
    width: 74px;
    height: 98px;
  }
  body[data-page="shop"] .shop-cover__copy {
    margin-top: 4px;
  }
}
