@font-face {
  font-family: "Trade Gothic LT";
  src: url("./trade-gothic-lt.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #231f20;
  --paper: #ffffff;
  --soft: #f3f3f1;
  --accent: #231f20;
  --sale-red: #d71920;
  --line: rgba(35, 31, 32, 0.24);
  --muted: rgba(35, 31, 32, 0.58);
  --header-height: 112px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trade Gothic LT", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.67;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

body:has(.mobile-menu[open]) {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 30px;
  align-items: center;
  min-height: 112px;
  padding: 0 18px;
  border-bottom: 1px solid var(--ink);
  background: var(--sale-red);
  color: var(--paper);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
}

.header-sale-label {
  position: absolute;
  left: 50%;
  max-width: calc(100vw - 760px);
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.header-sale-label [hidden] {
  display: none;
}

.header-countdown-message {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.header-sale-label strong {
  font-weight: 700;
}

.header-newsletter-message {
  display: block;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  line-height: 1.15;
  white-space: normal;
}

.brand-logo {
  display: block;
  width: 160px;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.site-header a {
  transition: opacity 160ms ease;
}

.site-header a:hover {
  opacity: 0.48;
}

.site-header .brand-logo:hover {
  opacity: 1;
}

.intro {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: min(760px, calc(100vh - 112px));
  padding: 18px;
  border-bottom: 1px solid var(--ink);
}

.archive-intro {
  grid-template-rows: 1fr auto;
}

.intro-kicker {
  display: flex;
  justify-content: flex-end;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: normal;
}

.intro h1 {
  align-self: center;
  margin: clamp(34px, 5vh, 60px) 0;
  font-size: clamp(74px, 13vw, 220px);
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.intro-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 660px);
  gap: 18px;
  align-items: end;
}

.intro-left {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: end;
}

.intro-status {
  margin: 0;
  font-size: clamp(26px, 2.55vw, 40px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.archive-gallery {
  display: none;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: var(--soft);
}

.archive-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  animation: gallery-image-in 320ms ease both;
}

.intro-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin: 0;
}

.intro-copy p {
  margin: 0;
  max-width: 310px;
}

.intro-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.intro-dates {
  max-width: none !important;
  line-height: 1.5;
  text-transform: uppercase;
}

.intro-website {
  max-width: none !important;
  text-transform: uppercase;
}

.intro-website a {
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
}

.intro-copy .catalogue-reference {
  color: var(--ink);
  font-size: inherit;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.intro-copy .catalogue-reference:hover {
  text-decoration-thickness: 2px;
}

.catalogue {
  scroll-margin-top: calc(var(--header-height) + 58px);
}

.catalogue-tools {
  position: sticky;
  z-index: 8;
  top: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.filters {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.filters button {
  position: relative;
  flex: 0 0 auto;
  padding: 4px 0;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  text-transform: uppercase;
}

.filters button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.filters button:hover::after,
.filters button.active::after {
  transform: scaleX(1);
}

.search {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 15px;
  text-transform: uppercase;
}

.search input {
  width: 126px;
  padding: 5px 0;
  outline: 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
}

.search input::placeholder {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
}

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

.product-card::after {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--ink);
  content: "";
  pointer-events: none;
}

.product-card:nth-child(4n)::after {
  display: none;
}

@media (min-width: 1101px) {
  .product-grid:has(> .product-card:last-child:nth-child(4n)) > .product-card:nth-last-child(-n + 4),
  .product-grid:has(> .product-card:last-child:nth-child(4n + 1)) > .product-card:nth-last-child(-n + 1),
  .product-grid:has(> .product-card:last-child:nth-child(4n + 2)) > .product-card:nth-last-child(-n + 2),
  .product-grid:has(> .product-card:last-child:nth-child(4n + 3)) > .product-card:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}

.product-image-open,
.product-info-open {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.product-image-shell {
  position: relative;
}

.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--soft);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-layer {
  position: absolute;
  inset: 0;
}

.product-image-hover {
  opacity: 0;
  transition: opacity 180ms ease;
}

@media (hover: hover) {
  .product-image-open:hover .product-image-hover {
    opacity: 1;
  }
}

.image-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  background:
    linear-gradient(to bottom right, transparent 49.8%, var(--line) 50%, transparent 50.2%),
    var(--soft);
  color: var(--muted);
  font-size: 15px;
  text-transform: uppercase;
}

.product-meta {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  min-height: 92px;
  padding: 14px 14px 8px;
}

.product-meta h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.67;
  text-transform: uppercase;
}

.product-number,
.product-price,
.product-submeta {
  font-size: 15px;
  line-height: 1.67;
}

.product-number {
  color: var(--accent);
  font-weight: 400;
}

.product-price {
  white-space: nowrap;
  text-transform: uppercase;
}

.product-submeta {
  display: flex;
  gap: 18px;
  min-height: 70px;
  padding: 0 14px 14px;
  color: var(--muted);
  text-transform: uppercase;
}

.product-submeta span:first-child {
  flex: 0 0 92px;
}

.product-submeta span:last-child {
  min-width: 0;
}

.newsletter {
  scroll-margin-top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 48px;
  min-height: 360px;
  padding: 24px 18px 48px;
  border-bottom: 1px solid var(--ink);
}

.newsletter-kicker {
  margin: 0 0 30px;
  text-transform: uppercase;
}

.newsletter h2 {
  max-width: 960px;
  margin: 0 0 24px;
  font-size: clamp(38px, 5.2vw, 86px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.newsletter > div > p:last-child {
  max-width: 520px;
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
}

.newsletter-form > label:first-child {
  display: grid;
  gap: 8px;
  text-transform: uppercase;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 10px 0;
  outline: 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  font-size: 19px;
}

.newsletter-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.45;
}

.newsletter-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.newsletter-consent a {
  border-bottom: 1px solid currentColor;
}

.newsletter-form button {
  min-height: 54px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  text-transform: uppercase;
}

.newsletter-form button:hover {
  outline: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.newsletter-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter-status {
  min-height: 1.5em;
  margin: 0;
  font-size: 13px;
}

.empty-state {
  min-height: 50vh;
  padding: 42px 18px;
}

.empty-state button {
  padding: 0 0 2px;
  border-bottom: 1px solid;
  background: transparent;
  cursor: pointer;
}

footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  min-height: 290px;
  padding: 18px;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
}

footer div {
  display: flex;
  flex-direction: column;
}

footer p {
  max-width: 300px;
  margin: 0;
}

footer address {
  font-style: normal;
}

footer a {
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-links {
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a:first-child {
  color: inherit;
}

.legal-hero {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 48vh;
  padding: 18px;
  border-bottom: 1px solid var(--ink);
}

.legal-hero p {
  margin: 0;
  text-align: right;
  text-transform: uppercase;
}

.legal-hero h1 {
  align-self: end;
  max-width: 1180px;
  margin: 72px 0 0;
  font-size: clamp(58px, 10.5vw, 170px);
  font-weight: 400;
  line-height: 0.85;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.legal-document {
  border-bottom: 1px solid var(--ink);
}

.information-language-switch {
  position: sticky;
  z-index: 8;
  top: var(--header-height);
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  min-height: 58px;
  padding: 0 18px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
}

.information-language-switch button {
  position: relative;
  padding: 4px 0;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
}

.information-language-switch button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.information-language-switch button:hover::after,
.information-language-switch button.active::after {
  transform: scaleX(1);
}

.legal-language[hidden],
[data-information-language][hidden] {
  display: none;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 3fr;
  border-bottom: 1px solid var(--ink);
}

.legal-section:last-child {
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0;
  padding: 18px;
  font-size: clamp(18px, 1.7vw, 27px);
  font-weight: 400;
  line-height: 1.15;
}

.legal-copy {
  max-width: 1040px;
  padding: 18px;
  border-left: 1px solid var(--ink);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
}

.legal-copy p {
  max-width: 900px;
  margin: 0 0 1.15em;
}

.legal-copy p:last-child {
  margin-bottom: 0;
}

.legal-copy ul {
  margin: 0 0 1.15em;
  padding-left: 1.1em;
}

.legal-copy a {
  border-bottom: 1px solid currentColor;
}

.about-intro {
  padding: 18px 18px 84px;
  border-bottom: 1px solid var(--ink);
}

.about-eyebrow {
  margin: 0;
  text-align: right;
  text-transform: uppercase;
}

.about-intro h1 {
  max-width: 1060px;
  margin: clamp(42px, 7vh, 76px) 0 clamp(46px, 8vh, 92px);
  font-size: clamp(54px, 8.2vw, 132px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.about-narrative {
  max-width: 880px;
  margin-left: auto;
}

.about-narrative p {
  margin: 0 0 1.25em;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.5;
}

.about-narrative .about-lead {
  margin-bottom: 1.5em;
  font-size: clamp(24px, 2.35vw, 38px);
  line-height: 1.3;
}

.about-narrative p:last-child {
  margin-bottom: 0;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: stretch;
  padding: 14px;
  background: rgba(0, 0, 0, 0.68);
  animation: fade-in 180ms ease both;
}

.product-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(320px, 0.72fr);
  min-height: 0;
  overflow: hidden;
  background: var(--paper);
  animation: modal-in 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.modal-close {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  background: var(--paper);
  cursor: pointer;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.modal-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--soft);
}

.modal-media > img,
.modal-media > .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-image-cycle {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  cursor: e-resize;
}

.modal-image-cycle > img,
.modal-image-cycle > .image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-image-nav {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
}

.modal-image-nav button {
  width: 34px;
  height: 34px;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}

.modal-image-nav button:hover {
  background: var(--ink);
  color: var(--paper);
}

.modal-image-nav span {
  min-width: 58px;
  text-align: center;
  font-size: 13px;
}

.modal-details {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  padding: 20px;
  border-left: 1px solid var(--ink);
}

.modal-number {
  font-size: 15px;
  text-transform: uppercase;
}

.modal-details h2 {
  margin: 18px 0 0;
  font-size: clamp(32px, 3.3vw, 62px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.modal-scroll {
  min-height: 0;
  overflow-y: auto;
  padding-right: 8px;
}

.modal-description {
  padding: 20px 0 24px;
  border-top: 1px solid var(--line);
}

.modal-description p {
  margin: 0 0 0.85em;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.45;
}

.modal-description p:last-child {
  margin-bottom: 0;
}

.modal-details dl {
  margin: 0;
}

.modal-details dl div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.modal-details dt,
.modal-details dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.67;
}

.modal-details dt {
  color: var(--muted);
  text-transform: uppercase;
}

.modal-details dd {
  text-transform: uppercase;
}

.modal-details .price-values {
  display: flex;
  flex-direction: column;
}

.reserve-button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 56px;
  padding: 0 15px;
  background: var(--accent);
  color: var(--paper);
  font-size: 15px;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.reserve-button:hover {
  outline: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
}

.unavailable-label {
  display: flex;
  min-height: 56px;
  align-items: center;
  margin: 0;
  padding: 0 15px;
  border: 1px solid var(--ink);
  text-transform: uppercase;
}

.modal-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

@keyframes fade-in {
  from { opacity: 0; }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes gallery-image-in {
  from { opacity: 0; }
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card:nth-child(4n)::after {
    display: block;
  }

  .product-card:nth-child(3n)::after {
    display: none;
  }
}

@media (min-width: 541px) and (max-width: 1399px) {
  :root {
    --header-height: 96px;
  }

  .site-header {
    grid-template-columns: 150px minmax(0, 1fr) 34px;
    gap: 16px;
    min-height: var(--header-height);
    padding: 0 18px;
  }

  .brand-logo {
    width: 145px;
  }

  .header-sale-label {
    position: static;
    left: auto;
    max-width: 100%;
    transform: none;
    white-space: normal;
    font-size: clamp(14px, 1.65vw, 18px);
    line-height: 1.08;
  }

  .header-countdown-message {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 10px;
  }

  .header-newsletter-message {
    max-width: min(68vw, 620px);
    margin: 0 auto;
  }

  .desktop-nav-link {
    display: none;
  }

  .mobile-menu {
    position: relative;
    z-index: 60;
    display: block;
  }

  .mobile-menu[open]::before {
    position: fixed;
    z-index: 50;
    inset: 0;
    background: rgba(35, 31, 32, 0.66);
    content: "";
    backdrop-filter: blur(2px);
  }

  .mobile-menu summary {
    position: relative;
    z-index: 62;
    display: grid;
    width: 34px;
    height: 34px;
    padding: 8px 4px;
    align-content: space-between;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--paper);
    transform-origin: center;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .mobile-menu[open] summary {
    position: fixed;
    top: 20px;
    right: 18px;
  }

  .mobile-menu[open] summary span {
    background: var(--ink);
  }

  .mobile-menu[open] summary span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu[open] summary span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu[open] summary span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-menu nav {
    position: fixed;
    z-index: 61;
    top: 0;
    right: 0;
    display: flex;
    width: min(52vw, 300px);
    aspect-ratio: 1;
    padding: 72px 18px 18px;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--ink);
    border-top: 0;
    border-right: 0;
    background: var(--paper);
    color: var(--ink);
  }

  .mobile-menu nav a {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid var(--ink);
    font-size: 18px;
    text-transform: uppercase;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }
}

@media (min-width: 801px) and (max-width: 1100px) {
  .product-grid:has(> .product-card:last-child:nth-child(3n)) > .product-card:nth-last-child(-n + 3),
  .product-grid:has(> .product-card:last-child:nth-child(3n + 1)) > .product-card:nth-last-child(-n + 1),
  .product-grid:has(> .product-card:last-child:nth-child(3n + 2)) > .product-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 800px) {
  .intro {
    min-height: 680px;
  }

  .intro h1 {
    margin: 42px 0;
  }

  .intro-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .catalogue-tools {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .search {
    justify-content: space-between;
  }

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

  .product-card:nth-child(3n)::after {
    display: block;
  }

  .product-card:nth-child(2n)::after {
    display: none;
  }

  .product-grid:has(> .product-card:last-child:nth-child(2n)) > .product-card:nth-last-child(-n + 2),
  .product-grid:has(> .product-card:last-child:nth-child(2n + 1)) > .product-card:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

  .product-modal {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 100%;
    overflow: visible;
  }

  .modal-backdrop {
    display: block;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-media {
    height: min(58svh, 640px);
  }

  .modal-details {
    overflow: visible;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .modal-scroll {
    overflow: visible;
  }

  footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 48px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .legal-section {
    grid-template-columns: 1fr;
  }

  .legal-copy {
    max-width: none;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .about-intro {
    padding-bottom: 64px;
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 540px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    grid-template-columns: 130px minmax(0, 1fr) 34px;
    gap: 8px;
    min-height: var(--header-height);
    padding: 0 12px;
  }

  .brand-logo {
    width: 130px;
  }

  .header-sale-label {
    position: static;
    left: auto;
    max-width: 100%;
    transform: none;
    white-space: normal;
    text-align: center;
    font-size: 15px;
    line-height: 1.05;
  }

  .header-countdown-message {
    display: grid;
    gap: 1px;
    justify-items: center;
  }

  .header-sale-label strong {
    font-size: 14px;
  }

  .header-newsletter-message {
    max-width: 190px;
    border-bottom: 0;
    font-size: 12.5px;
    line-height: 1.08;
  }

  .desktop-nav-link {
    display: none;
  }

  .mobile-menu {
    position: relative;
    z-index: 60;
    display: block;
  }

  .mobile-menu[open]::before {
    position: fixed;
    z-index: 50;
    inset: 0;
    background: rgba(35, 31, 32, 0.66);
    content: "";
    backdrop-filter: blur(2px);
  }

  .mobile-menu summary {
    position: relative;
    z-index: 62;
    display: grid;
    width: 34px;
    height: 34px;
    padding: 8px 4px;
    align-content: space-between;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--paper);
    transform-origin: center;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .mobile-menu[open] summary {
    position: fixed;
    top: 20px;
    right: 12px;
  }

  .mobile-menu[open] summary span {
    background: var(--ink);
  }

  .mobile-menu[open] summary span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu[open] summary span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu[open] summary span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-menu nav {
    position: fixed;
    z-index: 61;
    top: 0;
    right: 0;
    display: flex;
    width: min(72vw, 280px);
    aspect-ratio: 1;
    padding: 72px 18px 18px;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--ink);
    border-top: 0;
    border-right: 0;
    background: var(--paper);
    color: var(--ink);
  }

  .mobile-menu nav a {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid var(--ink);
    font-size: 18px;
    text-transform: uppercase;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

  .intro-kicker span:last-child {
    display: none;
  }

  .intro h1 {
    margin: 28px 0 24px;
    font-size: clamp(48px, 15.5vw, 74px);
    line-height: 0.82;
  }

  .intro {
    min-height: 0;
    padding: 18px 14px;
  }

  .intro-footer {
    gap: 18px;
  }

  .intro-left {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .archive-gallery {
    display: grid;
  }

  .intro-status {
    font-size: 20px;
    line-height: 1.02;
  }

  .intro-copy {
    grid-template-columns: 1fr;
    gap: 14px;
    font-size: 13px;
    line-height: 1.38;
  }

  .intro-copy p {
    max-width: none;
  }

  .intro-copy a {
    grid-column: 1;
  }

  .intro-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding-top: 14px;
    font-size: 12px;
    line-height: 1.35;
  }

  .catalogue-tools {
    gap: 12px;
    padding: 10px 12px 12px;
  }

  .filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px 10px;
    overflow: visible;
  }

  .filters button {
    min-width: 0;
    font-size: 12.5px;
    text-align: left;
  }

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

  .product-image {
    aspect-ratio: 3 / 4;
  }

  .product-meta {
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 6px;
    min-height: 100px;
    padding: 9px 8px 5px;
  }

  .product-meta h2,
  .product-number,
  .product-price,
  .product-submeta {
    font-size: 12.5px;
    line-height: 1.4;
  }

  .product-price {
    grid-column: 2;
    white-space: normal;
  }

  .product-submeta {
    min-height: 66px;
    flex-direction: column;
    gap: 1px;
    padding: 0 8px 9px 39px;
  }

  .product-submeta span:first-child {
    flex: none;
  }

  footer {
    grid-template-columns: 1fr;
    min-height: 480px;
  }

  .footer-links {
    align-items: flex-start;
    justify-content: flex-end;
  }

  .newsletter {
    gap: 34px;
    min-height: 0;
    padding: 28px 12px 38px;
  }

  .newsletter-kicker {
    margin-bottom: 24px;
  }

  .newsletter h2 {
    font-size: clamp(38px, 11.5vw, 58px);
  }

  .newsletter > div > p:last-child {
    font-size: 15px;
  }

  .modal-backdrop {
    padding: 0;
  }

  .product-modal {
    grid-template-rows: auto auto;
  }

  .modal-media {
    height: 46svh;
    min-height: 280px;
    padding: 0 42px;
  }

  .modal-close {
    top: 8px;
    right: 8px;
  }

  .modal-image-nav {
    inset: 0;
    display: block;
    background: transparent;
    pointer-events: none;
  }

  .modal-image-nav button {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 42px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    pointer-events: auto;
  }

  .modal-image-nav button:first-child {
    left: 3px;
  }

  .modal-image-nav button:last-child {
    right: 3px;
  }

  .modal-image-nav span {
    position: absolute;
    bottom: 8px;
    left: 50%;
    min-width: 62px;
    padding: 4px 6px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
  }

  .modal-details {
    gap: 14px;
    padding: 16px 12px 24px;
  }

  .modal-details h2 {
    margin-top: 10px;
    font-size: 32px;
  }

  .modal-description {
    padding-top: 14px;
  }

  .modal-details dl div {
    grid-template-columns: 100px 1fr;
  }

  .reserve-button {
    min-height: 50px;
  }

  .legal-hero {
    min-height: 390px;
  }

  .legal-hero h1 {
    font-size: clamp(52px, 18vw, 88px);
    overflow-wrap: anywhere;
  }

  .about-intro {
    min-width: 0;
    padding-bottom: 48px;
    overflow: visible;
  }

  .about-eyebrow {
    text-align: left;
  }

  .about-intro h1 {
    max-width: 100%;
    margin: 44px 0 52px;
    font-size: clamp(44px, 13.4vw, 62px);
    line-height: 0.9;
  }

  .about-narrative {
    min-width: 0;
    margin-left: 0;
  }

  .about-narrative p {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}

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

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