/* Domaine 1196 — Biale Skaly route build */

@font-face {
  font-family: "Adelon Serial";
  src: url("../../../design-system/project/fonts/AdelonSerial-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Adelon Serial";
  src: url("../../../design-system/project/fonts/AdelonSerial.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Adelon Serial";
  src: url("../../../design-system/project/fonts/AdelonSerial-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "ASW DIN";
  src: url("../../../design-system/project/fonts/ASW-DIN-Variable.ttf") format("truetype-variations"),
       url("../../../design-system/project/fonts/ASW-DIN-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #38383A;
  --paper: #EFEAE0;
  --paper-warm: #E6DFD2;
  --paper-deep: #D9D1C0;
  --grey: #7F7B6E;
  --gold: #7C6946;
  --blue: #CCD5DC;
  --line: color-mix(in oklab, var(--ink) 18%, transparent);
  --line-dark: color-mix(in oklab, var(--ink) 34%, transparent);
  --line-light: color-mix(in oklab, var(--paper) 22%, transparent);
  --display: "Adelon Serial", "Times New Roman", serif;
  --text: "ASW DIN", "Helvetica Neue", Arial, sans-serif;
  --max: 1440px;
  --gutter: clamp(18px, 4vw, 72px);
  --section: clamp(64px, 8vw, 132px);
  --header: 76px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  font-synthesis: none;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

p {
  margin: 0 0 1rem;
  max-width: 68ch;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

::selection {
  color: var(--paper);
  background: var(--gold);
}

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

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wrap--narrow {
  max-width: 960px;
}

.section {
  padding: var(--section) 0;
}

.section--tight {
  padding: clamp(42px, 6vw, 84px) 0;
}

.bg-ink {
  color: var(--paper);
  background: var(--ink);
}

.bg-paper {
  color: var(--ink);
  background: var(--paper);
}

.bg-warm {
  color: var(--ink);
  background: var(--paper-warm);
}

.bg-gold {
  color: var(--paper);
  background: var(--gold);
}

.bg-grey {
  color: var(--paper);
  background: var(--grey);
}

.bg-blue {
  color: var(--ink);
  background: var(--blue);
}

.kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.bg-ink .kicker,
.bg-gold .kicker,
.bg-grey .kicker {
  color: color-mix(in oklab, var(--paper) 68%, transparent);
}

.display {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.03;
  max-width: 100%;
  text-wrap: balance;
}

.display--hero {
  font-size: clamp(3.4rem, 7.7vw, 8.7rem);
  text-transform: uppercase;
}

.display--xl {
  font-size: clamp(2.65rem, 5.7vw, 6.65rem);
  text-transform: uppercase;
}

.display--lg {
  font-size: clamp(2.2rem, 5vw, 5.5rem);
}

.display--md {
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
}

.lead {
  font-family: var(--display);
  font-size: clamp(1.18rem, 1.9vw, 1.8rem);
  line-height: 1.35;
  max-width: 42rem;
}

.muted {
  color: var(--grey);
}

.bg-ink .muted,
.bg-gold .muted,
.bg-grey .muted {
  color: color-mix(in oklab, var(--paper) 68%, transparent);
}

.fine {
  font-size: .86rem;
  line-height: 1.5;
}

.btn,
.text-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 44px;
  padding: 0 1rem;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.btn:hover,
.btn.is-active,
.text-btn:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.bg-ink .btn:hover,
.bg-gold .btn:hover,
.bg-grey .btn:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.btn--solid {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.btn--solid:hover {
  color: var(--paper);
  background: var(--gold);
  border-color: var(--gold);
}

.btn--small {
  min-height: 40px;
  padding: 0 .8rem;
  font-size: .66rem;
}

.link-line {
  display: inline;
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header);
  border-bottom: 1px solid transparent;
  color: var(--ink);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}

body.is-scrolled .site-header,
body:not([data-page="home"]) .site-header {
  background: color-mix(in oklab, var(--paper) 96%, transparent);
  border-bottom-color: var(--line);
}

body[data-page="home"]:not(.is-scrolled):not(.menu-open) .site-header {
  color: var(--paper);
}

body[data-page="home"]:not(.is-scrolled):not(.menu-open) .brand img {
  filter: invert(1);
  opacity: .88;
}

body.menu-open .site-header {
  color: var(--paper);
  background: transparent;
  border-bottom-color: transparent;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: auto;
  height: 28px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(.55rem, 1.6vw, 1.2rem);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-actions a,
.header-actions button {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}

.cart-link {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: .65rem;
}

.menu-toggle__lines {
  position: relative;
  width: 24px;
  height: 13px;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform .3s var(--ease), top .3s var(--ease);
}

.menu-toggle__lines::before {
  top: 2px;
}

.menu-toggle__lines::after {
  top: 10px;
}

body.menu-open .menu-toggle__lines::before {
  top: 6px;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle__lines::after {
  top: 6px;
  transform: rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 985;
  visibility: hidden;
  background: color-mix(in oklab, var(--ink) 45%, transparent);
  opacity: 0;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}

body.menu-open .menu-overlay {
  visibility: visible;
  opacity: 1;
}

.side-menu {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 990;
  width: min(620px, 92vw);
  transform: translateX(100%);
  visibility: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow-y: auto;
  color: var(--paper);
  background: var(--ink);
  transition: transform .48s var(--ease), visibility .48s var(--ease);
}

body.menu-open .side-menu {
  transform: translateX(0);
  visibility: visible;
}

.side-menu__top,
.side-menu__foot {
  padding: 24px var(--gutter);
  border-bottom: 1px solid var(--line-light);
}

.side-menu__foot {
  border-top: 1px solid var(--line-light);
  border-bottom: 0;
}

.side-menu__grid {
  padding: clamp(30px, 5vw, 72px) var(--gutter);
  display: grid;
  gap: 2rem;
}

.side-group h2 {
  margin: 0 0 .75rem;
  color: color-mix(in oklab, var(--paper) 58%, transparent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.side-group a {
  display: block;
  padding: .18rem 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.side-group a:hover {
  color: color-mix(in oklab, var(--paper) 64%, transparent);
}

.home-hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header) + 42px) 0 clamp(34px, 5vw, 76px);
  color: var(--paper);
  background: var(--ink);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 96px);
  align-items: end;
}

.home-hero .display--hero {
  max-width: 7.2ch;
  padding-left: .045em;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.home-hero__statement {
  display: grid;
  gap: 1.25rem;
}

.home-hero__primary {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .35rem;
}

.home-hero__context {
  display: grid;
  gap: 1px;
}

.home-hero__photo {
  margin: 0;
  border: 1px solid var(--line-light);
}

.home-hero__photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-hero__photo figcaption {
  padding: .65rem .85rem;
  border-top: 1px solid var(--line-light);
  color: color-mix(in oklab, var(--paper) 68%, transparent);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-hero__actions {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line-light);
}

.home-hero__actions a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line-light);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-hero__actions a:last-child {
  border-bottom: 0;
}

.home-hero__actions a:hover {
  background: color-mix(in oklab, var(--paper) 7%, transparent);
}

.page-hero {
  padding: calc(var(--header) + clamp(34px, 6vw, 88px)) 0 clamp(34px, 5vw, 74px);
  border-bottom: 1px solid var(--line);
}

.page-hero--ink {
  color: var(--paper);
  background: var(--ink);
  border-bottom-color: var(--line-light);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
}

.page-hero__media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 1px solid currentColor;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .reveal,
.home-hero .reveal {
  opacity: 1;
  transform: none;
}

body[data-page="comingup"] .page-hero {
  padding-bottom: clamp(24px, 3.2vw, 42px);
}

body[data-page="comingup"] .page-hero__media {
  aspect-ratio: 16 / 10;
}

.anchor-bar {
  position: sticky;
  top: var(--header);
  z-index: 200;
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding: .75rem var(--gutter);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.anchor-bar a {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 .7rem;
  border: 1px solid var(--line);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(260px, .75fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 72px);
}

.manifesto-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(460px, 68vw, 760px);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.manifesto-band__media,
.manifesto-band__text {
  min-width: 0;
}

.manifesto-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manifesto-band__text {
  display: grid;
  align-content: center;
  padding: clamp(26px, 5vw, 78px);
  border-left: 1px solid var(--line);
}

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

.quarter-grid > * {
  min-width: 0;
  background: var(--paper);
}

.quarter-grid img {
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 28vw, 390px);
  object-fit: cover;
}

.collection-strip {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  min-height: 360px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.collection-strip + .collection-strip {
  border-top: 0;
}

.collection-strip__media {
  min-height: 320px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--paper-warm);
}

.collection-strip__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-strip__body {
  display: grid;
  gap: 1.1rem;
  align-content: center;
  padding: clamp(24px, 4vw, 56px);
}

.collection-strip__links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.25rem;
}

.shop-hero-preview {
  margin-top: clamp(16px, 2vw, 26px);
  display: grid;
  grid-template-columns: minmax(90px, 132px) minmax(0, 1fr);
  gap: 1px;
  max-width: 620px;
  border: 1px solid var(--line-dark);
  background: var(--line);
}

.shop-hero-preview__image,
.shop-hero-preview__body {
  min-width: 0;
  background: var(--paper-warm);
}

.shop-hero-preview__image {
  display: grid;
  place-items: center;
  padding: .75rem;
}

.shop-hero-preview__image img {
  max-height: 150px;
  object-fit: contain;
}

.shop-hero-preview__body {
  display: grid;
  align-content: center;
  gap: .45rem;
  padding: .9rem 1rem;
}

.shop-hero-preview h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 300;
  line-height: 1.08;
}

.legal-article {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
}

.shop-assortment {
  border-top: 1px solid var(--line);
}

.legal-note {
  padding: 1rem;
  border: 1px solid var(--line-dark);
  background: var(--paper-warm);
  font-size: .92rem;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
}

.legal-toc a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 .85rem;
  border: 1px solid var(--line-dark);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-cards {
  margin-top: .8rem;
}

.legal-list--ordered li {
  list-style: decimal;
}

.legal-article h2 {
  margin: 0 0 .7rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.45rem);
  font-weight: 300;
  line-height: 1.08;
}

.legal-article p,
.legal-article li {
  max-width: 78ch;
}

.legal-list {
  display: grid;
  gap: .65rem;
  padding-left: 1rem;
}

.legal-list li {
  list-style: disc;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
}

.split--reverse > :first-child {
  order: 2;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.panel {
  min-width: 0;
  padding: clamp(22px, 3.2vw, 46px);
  background: var(--paper);
}

.bg-warm .panel {
  background: var(--paper-warm);
}

.bg-ink .panel,
.bg-gold .panel,
.bg-grey .panel {
  background: transparent;
}

.panel h2,
.panel h3,
.panel h4 {
  margin: 0 0 .8rem;
}

.panel h3,
.panel h4 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.45rem, 2.6vw, 2.5rem);
  line-height: 1.08;
}

.image-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.image-grid img {
  width: 100%;
  height: clamp(260px, 46vw, 640px);
  object-fit: cover;
  background: var(--paper-deep);
}

.image-grid img:nth-child(2) {
  height: clamp(220px, 36vw, 520px);
  align-self: end;
}

.media-panel {
  display: grid;
  gap: .75rem;
}

.media-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.media-panel figcaption {
  color: var(--grey);
  font-size: .78rem;
}

.stat-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.stat-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: .95rem 1rem;
  background: var(--paper);
}

.stat-list dt {
  color: var(--grey);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.stat-list dd {
  margin: 0;
}

.list-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}

.list-table th,
.list-table td {
  padding: .9rem .75rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.list-table th {
  color: var(--grey);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

.form-row {
  display: grid;
  gap: .35rem;
}

.form-row--wide {
  grid-column: 1 / -1;
}

label {
  color: var(--grey);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: .7rem .8rem;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
}

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

.shop-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: calc(var(--header) + 18px);
  display: grid;
  gap: 1rem;
}

.filter-group {
  padding: 1rem;
  border: 1px solid var(--line);
}

.filter-group h2 {
  margin: 0 0 .75rem;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.filter-stack {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  background: var(--paper);
}

.product-card__image {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: var(--paper-warm);
}

.product-card__image img {
  max-height: 250px;
  object-fit: contain;
}

.product-card__body {
  padding: 1rem;
}

.product-card__body h3 {
  margin: 0 0 .35rem;
  font-family: var(--display);
  font-weight: 300;
  font-size: 1.55rem;
  line-height: 1.1;
}

.product-card__price {
  margin: .8rem 0 0;
  font-weight: 700;
}

.product-card__price::after {
  content: " inkl. MwSt.";
  color: var(--grey);
  font-size: .68rem;
  font-weight: 500;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.product-card__actions button {
  min-height: 48px;
  border: 0;
  background: var(--paper);
  cursor: pointer;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-card__actions button:hover {
  color: var(--paper);
  background: var(--ink);
}

.empty-state {
  padding: 2rem;
  border: 1px solid var(--line);
}

.cart-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.cart-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--paper);
}

.cart-item img {
  width: 74px;
  height: 96px;
  object-fit: contain;
  background: var(--paper-warm);
}

.event-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.event-row {
  display: grid;
  grid-template-columns: 104px minmax(130px, 188px) minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(18px, 3vw, 32px);
  background: var(--paper);
}

.event-row__media {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper-warm);
}

.event-row__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.event-date {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.event-feature-strip {
  margin-top: clamp(24px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.event-feature-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
}

.event-feature-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  background: var(--paper-warm);
}

.event-feature-card__body {
  display: grid;
  gap: .55rem;
  align-content: start;
  padding: 1rem;
}

.event-feature-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  font-weight: 300;
  line-height: 1.08;
}

.event-feature-card .btn {
  width: calc(100% + 2px);
  margin: 0 -1px -1px;
}

.calendar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}

.route-map {
  min-height: 420px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--paper-warm);
}

.route-map::before,
.route-map::after {
  content: "";
  position: absolute;
  background: var(--line);
  pointer-events: none;
}

.route-map::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.route-map::after {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
}

.route-map__pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--ink);
  background: var(--gold);
}

.route-map__pin:nth-child(1) { left: 21%; top: 62%; }
.route-map__pin:nth-child(2) { left: 48%; top: 42%; }
.route-map__pin:nth-child(3) { left: 73%; top: 28%; }

.brand-line {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.25rem;
  align-items: center;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.6vw, 2.4rem);
  line-height: 1.12;
}

.brand-line a {
  border-bottom: 1px solid transparent;
}

.brand-line a:hover {
  border-bottom-color: currentColor;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 88px);
  align-items: end;
}

.newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem;
}

.site-footer {
  padding: clamp(46px, 7vw, 96px) 0 120px;
  color: var(--paper);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, minmax(150px, .45fr));
  gap: clamp(24px, 5vw, 80px);
}

.footer-brand img {
  width: 170px;
  height: auto;
  filter: invert(1);
  opacity: .86;
}

.footer-col h2 {
  margin: 0 0 .8rem;
  color: color-mix(in oklab, var(--paper) 62%, transparent);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: .22rem 0;
  color: color-mix(in oklab, var(--paper) 74%, transparent);
  font-size: .88rem;
}

.footer-legal {
  margin-top: clamp(28px, 4vw, 56px);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
  color: color-mix(in oklab, var(--paper) 58%, transparent);
  font-size: .78rem;
}

.versions-badge {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 900;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 .52rem;
  border: 1px solid color-mix(in oklab, var(--ink) 24%, transparent);
  color: var(--ink);
  background: var(--paper);
  opacity: .42;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.versions-badge:focus-visible,
.versions-badge:hover {
  opacity: 1;
}

.modal,
.cart-drawer {
  position: fixed;
  z-index: 1200;
}

.modal {
  inset: 0;
  display: none;
  place-items: center;
  padding: var(--gutter);
  background: color-mix(in oklab, var(--ink) 58%, transparent);
}

.modal.is-open {
  display: grid;
}

.modal__sheet {
  width: min(780px, 100%);
  max-height: min(84svh, 820px);
  overflow: auto;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.modal__head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.modal__head button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.modal__body {
  padding: clamp(18px, 3vw, 36px);
}

.cart-drawer {
  inset: 0 0 0 auto;
  width: min(460px, 94vw);
  display: none;
  grid-template-rows: auto 1fr auto;
  border-left: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  visibility: hidden;
  pointer-events: none;
}

.cart-drawer.is-open {
  display: grid;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer__head,
.cart-drawer__foot {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

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

.cart-drawer__body {
  overflow: auto;
}

.cookie {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
  width: min(520px, calc(100vw - 32px));
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1rem;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.cookie.is-visible {
  display: grid;
}

.cookie.cookie--inline {
  position: static;
  width: auto;
  margin: 0 var(--gutter);
}

.cookie__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: .5rem;
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1300;
  transform: translateY(12px);
  opacity: 0;
  max-width: min(460px, calc(100vw - 32px));
  padding: .9rem 1rem;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.toast.is-visible {
  transform: none;
  opacity: 1;
}

.tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}

.tab-panel[hidden] {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: .01ms;
    animation-duration: .01ms;
    animation-iteration-count: 1;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .grid-4,
  .quarter-grid,
  .product-grid,
  .event-feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  body[data-page="shop"] .page-hero {
    padding-top: calc(var(--header) + 26px);
    padding-bottom: 24px;
  }
  body[data-page="shop"] .page-hero .lead {
    font-size: 1.08rem;
    line-height: 1.32;
  }
  body[data-page="shop"] .shop-assortment {
    padding-top: 32px;
  }
  body[data-page="shop"] .shop-sidebar {
    order: -1;
  }

  :root {
    --header: 64px;
  }
  .header-actions .hide-mobile {
    display: none;
  }
  .home-hero__grid,
  .manifesto-band__grid,
  .page-hero__grid,
  .section-head,
  .split,
  .newsletter,
  .collection-strip,
  .shop-layout,
  .cart-page {
    grid-template-columns: 1fr;
  }
  .manifesto-band__grid {
    min-height: 0;
  }
  .manifesto-band__media {
    min-height: 360px;
  }
  .manifesto-band__text,
  .collection-strip__media {
    border-left: 0;
    border-right: 0;
  }
  .split--reverse > :first-child {
    order: 0;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .quarter-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
  }
  .page-hero {
    padding-bottom: clamp(28px, 7vw, 56px);
  }
  body[data-page="shop"] .page-hero__media {
    display: none;
  }
  .shop-hero-actions {
    margin-top: 1rem;
  }
  .image-grid {
    grid-template-columns: 1fr;
  }
  .image-grid img,
  .image-grid img:nth-child(2) {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .event-row {
    grid-template-columns: 82px minmax(0, 1fr);
  }
  .event-row__media {
    grid-column: 1 / -1;
  }
  .event-row > :last-child {
    grid-column: 1 / -1;
  }
  .event-feature-strip {
    grid-template-columns: 1fr;
  }
  .newsletter form,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-row--wide {
    grid-column: auto;
  }
  .stat-list div {
    grid-template-columns: 1fr;
    gap: .35rem;
  }
}

@media (max-width: 560px) {
  .brand img {
    height: 22px;
  }
  .header-actions {
    gap: .35rem;
  }
  .menu-toggle span:last-child,
  .header-actions .optional-mobile {
    display: none;
  }
  .home-hero {
    min-height: auto;
    padding-top: calc(var(--header) + 72px);
    padding-bottom: 34px;
  }
  .display--hero {
    font-size: clamp(3.05rem, 14vw, 5.7rem);
  }
  .display--xl {
    font-size: clamp(2.45rem, 12vw, 4.85rem);
  }
  .home-hero__context {
    gap: .75rem;
  }
  .home-hero__actions a {
    display: grid;
    gap: .3rem;
    padding: .78rem;
  }
  .shop-hero-preview {
    grid-template-columns: 92px minmax(0, 1fr);
  }
  .shop-hero-preview__image img {
    max-height: 112px;
  }
  .shop-hero-preview__body {
    padding: .75rem;
  }
  .event-feature-card {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto auto;
  }
  .event-feature-card img {
    grid-row: 1 / 3;
    height: 100%;
    aspect-ratio: auto;
  }
  .event-feature-card__body {
    padding: .78rem .85rem .45rem;
  }
  .event-feature-card .btn {
    grid-column: 2;
    width: auto;
    min-height: 38px;
    margin: 0 .85rem .78rem;
  }
  .home-hero__photo img {
    aspect-ratio: 3 / 2;
  }
  .shop-hero-actions .btn {
    min-height: 42px;
    padding: 0 .72rem;
    font-size: .62rem;
  }
  .cookie {
    right: 10px;
    bottom: 10px;
    width: min(420px, calc(100vw - 20px));
    grid-template-columns: 1fr;
    padding: .68rem .72rem;
  }
  .versions-badge {
    top: 74px;
    bottom: auto;
  }
  .cookie p {
    margin-bottom: .35rem;
    font-size: .8rem;
    line-height: 1.35;
  }
  .cookie__actions .btn {
    min-height: 38px;
  }
  .btn--small {
    min-height: 44px;
  }
  .cart-item {
    grid-template-columns: 56px 1fr;
  }
  .cart-item > :last-child {
    grid-column: 1 / -1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* Round 13 review refinements: Biale Skaly poster force, event breathing room, mobile switcher restraint. */
.home-hero--poster {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line-light);
}

.home-hero__poster-mark {
  position: absolute;
  right: max(-.1em, -6vw);
  top: calc(var(--header) + clamp(4px, 1.5vw, 28px));
  z-index: -1;
  color: color-mix(in oklab, var(--paper) 7%, transparent);
  font-family: var(--display);
  font-size: clamp(11rem, 35vw, 42rem);
  font-weight: 300;
  letter-spacing: -.09em;
  line-height: .72;
  pointer-events: none;
  white-space: nowrap;
}

.home-hero--poster .home-hero__grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, .94fr);
  align-items: stretch;
  min-height: min(780px, calc(100svh - var(--header) - 80px));
}

.home-hero--poster .home-hero__statement {
  align-content: center;
  padding: clamp(20px, 3.5vw, 58px) clamp(16px, 3vw, 48px) clamp(20px, 3.5vw, 58px) 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.home-hero--poster .display--hero {
  font-size: clamp(3.75rem, 8.9vw, 10.7rem);
  line-height: .88;
  max-width: 6.1ch;
}

.home-hero--poster .display--hero em {
  font-style: italic;
}

.home-hero--poster .lead {
  max-width: 34rem;
  color: color-mix(in oklab, var(--paper) 88%, transparent);
}

.home-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(12px, 2vw, 26px) 0 0;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.home-hero__facts div {
  min-width: 0;
  padding: .82rem .9rem;
  background: var(--ink);
}

.home-hero__facts dt {
  color: color-mix(in oklab, var(--paper) 54%, transparent);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-hero__facts dd {
  margin: .28rem 0 0;
  color: var(--paper);
  font-size: .86rem;
}

.home-hero--poster .home-hero__context {
  align-self: stretch;
  grid-template-rows: minmax(0, 1fr) auto auto;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.home-hero--poster .home-hero__photo {
  border: 0;
  background: var(--ink);
}

.home-hero--poster .home-hero__photo img {
  height: 100%;
  min-height: clamp(360px, 54vw, 720px);
  aspect-ratio: auto;
  object-fit: cover;
}

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

.home-hero__folio img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--ink);
}

.home-hero--poster .home-hero__actions {
  border: 0;
}

body[data-page="comingup"] .event-feature-strip {
  gap: clamp(14px, 2vw, 28px);
  border: 0;
  background: transparent;
}

body[data-page="comingup"] .event-feature-card {
  border: 1px solid var(--line);
}

body[data-page="comingup"] .event-feature-card img {
  aspect-ratio: 4 / 3;
}

body[data-page="comingup"] .event-feature-card__body {
  gap: .7rem;
  padding: clamp(1.05rem, 2vw, 1.55rem);
}

.event-feature-card__date,
.event-feature-card__time {
  margin: 0;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.event-feature-card__date {
  color: var(--gold);
  font-size: .72rem;
}

.event-feature-card__time {
  color: var(--ink);
  font-size: .82rem;
}

body[data-page="comingup"] .event-row {
  grid-template-columns: 116px minmax(170px, 240px) minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(24px, 3.5vw, 44px);
}

.steinbach-service {
  padding: clamp(26px, 4.5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
}

.steinbach-service__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, .96fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.steinbach-service__panel {
  display: grid;
  align-content: center;
  gap: 1rem;
  min-width: 0;
  padding: clamp(22px, 3.4vw, 48px);
  background: var(--paper);
}

.steinbach-service__panel--facts {
  background: var(--paper-warm);
}

.steinbach-service__panel .stat-list {
  margin: 0;
}

@media (max-width: 840px) {
  .home-hero--poster .home-hero__grid,
  .steinbach-service__grid {
    grid-template-columns: 1fr;
  }
  .home-hero--poster .home-hero__statement {
    padding-right: 0;
  }
  .home-hero--poster .home-hero__context {
    min-height: 0;
  }
  .home-hero__facts {
    grid-template-columns: 1fr;
  }
  body[data-page="comingup"] .event-row {
    grid-template-columns: 82px minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .home-hero__poster-mark {
    right: -.18em;
    top: calc(var(--header) + 8px);
    font-size: clamp(8.8rem, 48vw, 16rem);
  }
  .home-hero--poster .display--hero {
    font-size: clamp(3.35rem, 18vw, 6.25rem);
  }
  .home-hero--poster .home-hero__photo img {
    min-height: 330px;
  }
  .home-hero__folio img {
    aspect-ratio: 4 / 3;
  }
  body[data-page="comingup"] .event-feature-strip {
    gap: .85rem;
  }
  body[data-page="comingup"] .event-feature-card {
    grid-template-columns: 118px minmax(0, 1fr);
  }
  body[data-page="comingup"] .event-feature-card__body {
    padding: .85rem .85rem .5rem;
  }
  body[data-page="comingup"] .event-feature-card__date,
  body[data-page="comingup"] .event-feature-card__time {
    font-size: .64rem;
  }
  .versions-badge {
    top: auto;
    right: 8px;
    bottom: 8px;
    left: auto;
    min-height: 24px;
    padding: 0 .42rem;
    border-color: color-mix(in oklab, var(--ink) 22%, transparent);
    opacity: .3;
    font-size: .5rem;
    letter-spacing: .06em;
  }
  .versions-badge:focus-visible,
  .versions-badge:hover {
    opacity: 1;
  }
}

.home-hero--poster .home-hero__grid {
  position: relative;
  z-index: 1;
}

.home-hero__poster-mark {
  z-index: 0;
}
