@font-face {
  font-family: "DIN W01 Regular";
  src: url("fonts/reference/din-w01-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sohne";
  src: url("fonts/reference/soehne-web-buch.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Financier Display";
  src: url("fonts/reference/financier-display-web-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #ffffff;
  --color-text: #181818;
  --color-heading: #181818;
  --color-accent: #111111;
  --color-accent-secondary: #8c624c;
  --color-border: #e5e5e5;
  --color-surface: #ffffff;
  --color-muted: #545454;
  --color-hover: #000000;

  --font-heading: "Financier Display", "Times New Roman", Times, serif;
  --font-body: "Sohne", Arial, sans-serif;
  --font-utility: "DIN W01 Regular", Arial, sans-serif;

  --section-padding: 36px;
  --container-max-width: 1376px;
  --grid-gap: 24px;
  --nav-height: 61px;

  --border-radius: 0px;
  --box-shadow: none;
  --transition: 0.4s linear;
  --divider: 1px solid var(--color-border);
}

@keyframes section-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.41;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition), color var(--transition), transform var(--transition);
}

a:hover {
  opacity: 0.72;
}

button,
input,
summary {
  font: inherit;
}

.small-caps {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 17px 25px 18px;
  color: #ffffff;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1), color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1),
    border-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.site-header.is-solid {
  color: #181818;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: var(--divider);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand-mark {
  justify-self: center;
  width: 130px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 16.92px;
  letter-spacing: 0.6px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.tool-link {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tool-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-header.is-solid .brand-mark img,
.site-header.is-solid .tool-link img {
  filter: none;
}

body[data-page="shop"] .site-header,
body[data-page="collection"] .site-header {
  color: #181818;
}

body[data-page="shop"] .site-header .brand-mark img,
body[data-page="shop"] .site-header .tool-link img,
body[data-page="collection"] .site-header .brand-mark img,
body[data-page="collection"] .site-header .tool-link img {
  filter: none;
}

.header-meta {
  margin: 7px 0 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  display: block;
  width: 14px;
  height: 0.8px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.35s cubic-bezier(0.645, 0.045, 0.355, 1),
    opacity 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.menu-toggle span:first-child {
  top: 3px;
}

.menu-toggle span:last-child {
  top: 9px;
}

body.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg) translate(3px, 2px);
  width: 18px;
}

body.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg) translate(3px, -2px);
  width: 18px;
}

.mobile-nav {
  display: none;
}

.site-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 25;
  width: 372px;
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(22px) saturate(1.05);
  -webkit-backdrop-filter: blur(22px) saturate(1.05);
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.site-drawer__inner {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 100%;
  padding: 111px 25px 26px;
  position: relative;
}

.site-drawer__close {
  position: absolute;
  top: 28px;
  right: 22px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.site-drawer__nav {
  display: grid;
  gap: 15px;
}

.site-drawer__nav a {
  font-size: 12px;
  font-family: var(--font-body);
  line-height: 16.92px;
  letter-spacing: 0.6px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.site-drawer__newsletter {
  margin-top: 55px;
}

.site-drawer__newsletter p {
  max-width: 22rem;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.drawer-line-field,
.line-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

.drawer-line-field input {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-utility);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.drawer-line-field input::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.drawer-line-field button,
.line-entry__action,
.region-save,
.filter-chip,
.shop-panel button,
.size-chip {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.drawer-line-field img,
.line-entry__action img {
  width: 22px;
  height: 12px;
}

.site-drawer__footer {
  align-self: end;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
}

.site-drawer__footer a {
  color: rgba(255, 255, 255, 0.92);
}

body.menu-open .site-drawer {
  transform: translateX(0);
}

.region-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: rgba(24, 24, 24, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 20px;
}

.region-dialog {
  position: relative;
  width: min(440px, 100%);
  background: #ffffff;
  padding: 34px 26px 24px;
}

.region-dialog h2 {
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1;
  letter-spacing: normal;
}

.region-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.region-field {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.region-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: #fff;
}

.region-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 50px;
  min-width: 120px;
  padding: 14px 24px;
  border: 1px solid var(--color-text);
  background: var(--color-text);
  color: #fff;
  font-family: var(--font-utility);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

main {
  padding-bottom: 48px;
}

.home-main {
  padding-bottom: 36px;
}

.hero {
  position: relative;
  min-height: 100vh;
  margin-bottom: var(--section-padding);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.1));
  pointer-events: none;
}

.hero-media {
  height: 100vh;
  min-height: 100vh;
}

.hero-media img {
  height: 100vh;
  aspect-ratio: auto;
}

.hero-media--clone img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.image-frame {
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  clip-path: inset(0 round 0);
  transition: clip-path 0.45s ease-out, transform 0.45s ease-out, opacity var(--transition);
}

.image-frame:hover img {
  clip-path: inset(1.5% 1.5% 1.5% 1.5% round 0);
  transform: scale(1.01);
}

.hero-note {
  position: absolute;
  left: 30px;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fcfcfc;
}

.hero-note img {
  width: 16px;
  height: 16px;
}

.hero-overlay-copy {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-overlay-copy img {
  width: 16px;
  height: 16px;
}

.split-module,
.statement-band,
.catalog-band,
.faq-band,
.terminal-module {
  width: min(var(--container-max-width), calc(100% - 50px));
  margin: 0 auto;
  border-top: var(--divider);
  animation: section-rise 0.85s cubic-bezier(0.23, 1, 0.32, 1) both;
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-on-scroll {
  /* scroll reveal contract: IntersectionObserver -> observer.observe(node) adds .is-visible */
  transform: translateY(18px);
}

.reveal-on-scroll.is-visible {
  transform: translateY(0);
}

.module-email--clone {
  width: min(var(--container-max-width), calc(100% - 50px));
  margin: 2px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-top: var(--divider);
}

.module-email--clone .module-email__image {
  min-height: 680px;
}

.module-email--clone .module-email__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 680px;
  padding: 47px 30px;
  background: #fff;
}

.module-email__newsletter {
  display: grid;
  gap: 32px;
}

.module-email__newsletter h1,
.module-email__newsletter h2 {
  max-width: 10ch;
}

.split-module {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  margin-top: 2px;
  animation-delay: 0.08s;
}

.split-module.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.split-module.reverse .module-media {
  order: 2;
}

.split-module.reverse .module-copy {
  order: 1;
}

.module-media {
  min-height: 520px;
}

.module-media img {
  aspect-ratio: 1 / 1;
}

.module-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 47px 30px;
}

.eyebrow {
  margin: 0 0 28px;
}

h1,
h2 {
  margin: 0;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: 26px;
  line-height: 1;
}

h2 {
  font-size: 26px;
  line-height: 1;
}

.lede {
  max-width: 32rem;
  margin: 26px 0 0;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.supporting-note {
  margin: 78px 0 0;
}

.line-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(340px, 100%);
  margin-top: 34px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--color-text);
}

.line-cta img {
  width: 22px;
  height: 12px;
  transition: transform var(--transition);
}

.line-cta:hover img {
  transform: translateX(8px);
}

.line-cta:hover {
  background-color: rgba(24, 24, 24, 0.04);
}

.line-cta.compact {
  width: 210px;
  margin-top: 0;
}

.line-entry {
  margin-top: 0;
  max-width: 320px;
}

.line-entry span {
  font-size: 10px;
  font-family: var(--font-utility);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.band-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: 36px 0 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 24px;
  padding-bottom: 36px;
}

.product-card {
  display: grid;
  gap: 14px;
}

.product-link {
  display: grid;
  gap: 14px;
}

.product-image img {
  aspect-ratio: 1 / 1;
}

.product-copy {
  display: grid;
  gap: 8px;
}

.product-copy p {
  margin: 0;
}

.product-copy span {
  color: var(--color-muted);
}

.statement-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  background-image: radial-gradient(circle at top right, rgba(140, 98, 76, 0.05), rgba(255, 255, 255, 0) 42%);
  animation-delay: 0.16s;
}

.statement-copy p,
.fact-list span {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.highlight-list,
.fact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.brand-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
}

.brand-panel img {
  width: min(260px, 70%);
  object-fit: contain;
}

.fact-list div {
  display: grid;
  gap: 4px;
}

.faq-band {
  padding: 40px 0 12px;
  animation-delay: 0.24s;
}

.shop-main {
  padding-top: 110px;
  padding-bottom: 48px;
  background: #ffffff;
}

.shop-shell,
.product-shell {
  width: min(calc(100% - 50px), 1420px);
  margin: 0 auto;
  background: #ffffff;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0 24px;
}

.filter-chip {
  padding: 0 0 10px;
  border-bottom: 1px solid var(--color-text);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: none;
}

.shop-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 240px));
  gap: 16px;
  margin-bottom: 26px;
}

.shop-panel {
  display: none;
  padding: 18px;
  border: var(--divider);
  background: #fff;
}

.shop-panel.is-open {
  display: grid;
  gap: 10px;
}

.shop-panel button {
  padding: 0;
  text-align: left;
  font-size: 12px;
  line-height: 1.6;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 20px;
  background: #ffffff;
}

.shop-card,
.shop-look {
  display: grid;
  gap: 12px;
}

.shop-card__link {
  display: grid;
  gap: 12px;
}

.shop-card__media {
  position: relative;
  overflow: hidden;
}

.shop-card__media img,
.shop-look img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.shop-card__media img + img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.shop-card:hover .shop-card__media img + img {
  opacity: 1;
}

.shop-card h3,
.shop-look h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.shop-card p,
.shop-look p {
  margin: 0;
  color: var(--color-muted);
}

.shop-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 32px 0 0;
}

.shop-pagination a,
.shop-pagination span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-shell {
  padding-top: 110px;
  padding-bottom: 48px;
  background: #ffffff;
}

.product-grid-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) 250px;
  gap: 28px;
  align-items: start;
}

.product-rail,
.product-buy-rail {
  position: sticky;
  top: 108px;
  background: #ffffff;
}

.product-rail h1 {
  max-width: none;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.product-price {
  margin: 10px 0 20px;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.accordion-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.accordion-item {
  border-bottom: var(--divider);
}

.accordion-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 13px 0;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary img {
  width: 11px;
  height: 11px;
  opacity: 0.9;
}

.accordion-item ul,
.accordion-item p {
  margin: 0 0 14px;
  padding-left: 14px;
  color: var(--color-muted);
  line-height: 1.55;
  font-size: 10px;
  letter-spacing: 0.03em;
}

.accordion-item p {
  padding-left: 0;
}

.size-row {
  display: grid;
  gap: 14px;
  margin-top: 0;
}

.size-chip {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.size-select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  color: var(--color-text);
  font-family: var(--font-utility);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.add-to-bag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 14px 22px;
  background: var(--color-text);
  color: #fff;
  font-family: var(--font-utility);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: 100%;
}

.product-gallery {
  display: grid;
  gap: 18px;
  background: #ffffff;
}

.product-gallery-stage {
  display: grid;
  place-items: center;
  min-height: 760px;
  background: #f7f7f7;
}

.product-gallery-stage img {
  width: min(78%, 780px);
  max-height: 680px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-related {
  margin-top: 48px;
}

.shop-look-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.faq-list {
  display: grid;
}

.faq-item {
  border-top: var(--divider);
}

.faq-item:last-child {
  border-bottom: var(--divider);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary img {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}

.faq-item[open] summary img {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 48rem;
  margin: 0 0 20px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.terminal-module {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 0;
  margin-top: 36px;
  animation-delay: 0.32s;
}

.terminal-brand {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terminal-brand img {
  width: min(180px, 45%);
  object-fit: contain;
  aspect-ratio: 1 / 1;
}

.terminal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 47px 30px;
}

.terminal-copy a[href^="mailto:"] {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.terminal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-top: 42px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--container-max-width), calc(100% - 50px));
  margin: 0 auto;
  padding: 18px 0 40px;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: var(--color-muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer div {
  display: inline-flex;
  gap: 16px;
}

.page-main {
  padding-top: 110px;
  padding-bottom: 48px;
}

.page-hero,
.page-section,
.page-copy,
.page-policy {
  width: min(var(--container-max-width), calc(100% - 50px));
  margin: 0 auto;
  border-top: var(--divider);
}

.page-hero {
  display: grid;
  gap: 24px;
  padding: 32px 0;
}

.page-hero p,
.page-copy p,
.page-policy p,
.page-policy li {
  max-width: 48rem;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.page-copy,
.page-policy {
  display: grid;
  gap: 20px;
  padding: 32px 0;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
  padding: 32px 0 40px;
}

.page-card {
  display: grid;
  gap: 16px;
}

.page-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.meta-list {
  display: grid;
  gap: 18px;
  padding: 0;
  list-style: none;
}

.meta-list strong {
  display: block;
  margin-bottom: 6px;
}

.form-stack {
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.form-stack label {
  display: grid;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-stack input,
.form-stack textarea {
  width: 100%;
  padding: 14px 0 10px;
  border: 0;
  border-bottom: 1px solid var(--color-text);
  background: transparent;
  color: var(--color-text);
}

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

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid var(--color-text);
  background: transparent;
  transition: background-color var(--transition), color var(--transition);
}

.button-link:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
}

.page-policy ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 1024px) {
  .header-tools {
    gap: 10px;
  }

  .mobile-nav {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(320px, calc(100vw - 48px));
    display: grid;
    gap: 18px;
    align-content: start;
    padding: 110px 24px 24px;
    background: rgba(255, 255, 255, 0.985);
    border-right: var(--divider);
    transform: translateX(-105%);
    transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  body.menu-open .mobile-nav {
    transform: translateX(0);
  }

  body.menu-open .site-header {
    color: var(--color-text);
  }

  .mobile-nav a {
    color: var(--color-text);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .split-module,
  .split-module.reverse,
  .statement-band,
  .terminal-module {
    grid-template-columns: 1fr;
  }

  .split-module.reverse .module-media,
  .split-module.reverse .module-copy {
    order: initial;
  }

  .module-media,
  .terminal-brand {
    min-height: auto;
  }

  .section-heading,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-grid {
    grid-template-columns: 1fr;
  }

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

  .shop-panels {
    grid-template-columns: 1fr;
  }

  .product-grid-layout {
    grid-template-columns: 1fr;
  }

  .product-rail,
  .product-buy-rail {
    position: static;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 16px 16px;
  }

  .header-row {
    grid-template-columns: 32px 1fr auto;
  }

  .brand-mark {
    font-size: 24px;
  }

  .header-meta {
    font-size: 9px;
  }

  .hero-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    justify-content: center;
    text-align: center;
  }

  .split-module,
  .catalog-band,
  .statement-band,
  .faq-band,
  .terminal-module,
  .site-footer,
  .page-hero,
  .page-section,
  .page-copy,
  .page-policy {
    width: calc(100% - 32px);
  }

  .module-copy,
  .terminal-copy {
    padding: 32px 18px;
  }

  .product-grid,
  .shop-grid,
  .shop-look-grid {
    grid-template-columns: 1fr;
  }

  .module-media img,
  .terminal-brand img {
    aspect-ratio: 4 / 5;
  }

  .site-drawer {
    width: calc(100vw - 32px);
  }

  .module-email--clone {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }

  .module-email--clone .module-email__image,
  .module-email--clone .module-email__content {
    min-height: auto;
  }

  .module-email--clone .module-email__content {
    padding: 34px 18px 40px;
  }

  .module-email__newsletter h1 {
    max-width: none;
    font-size: 2rem;
  }

  .shop-shell,
  .product-shell {
    width: calc(100% - 32px);
  }

  .product-gallery-stage {
    min-height: auto;
  }

  .product-gallery-stage img {
    width: 100%;
    max-height: none;
  }

  .product-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-tools {
    gap: 8px;
  }

  .tool-link {
    width: 16px;
    height: 16px;
  }

  h1 {
    max-width: none;
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .line-cta,
  .line-cta.compact {
    width: 100%;
  }
}

/* Fidelity rebuild overrides */
body[data-page="shop"] .header-meta,
body[data-page="collection"] .header-meta,
body[data-page="product"] .header-meta {
  display: none;
}

body[data-page="home"] .catalog-band {
  display: none;
}

.asset-proof-vault {
  display: none;
}

body[data-page="home"] .hero-media--clone img {
  object-fit: cover;
  object-position: center center;
  background: #f5f2eb;
}

body[data-page="home"] .module-email--clone {
  width: min(1200px, calc(100% - 50px));
  margin-top: 72px;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
  min-height: 640px;
}

body[data-page="home"] .module-email__newsletter h1 {
  font-size: 2.7rem;
  line-height: 1.05;
}

body[data-page="shop"] .shop-toolbar,
body[data-page="shop"] .shop-panels,
body[data-page="collection"] .shop-toolbar,
body[data-page="collection"] .shop-panels {
  display: none;
}

body[data-page="shop"] .shop-shell,
body[data-page="collection"] .shop-shell {
  width: min(1540px, calc(100% - 50px));
  padding-top: 78px;
}

body[data-page="shop"] .shop-grid,
body[data-page="collection"] .shop-grid,
body[data-page="product"] .shop-look-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 6px;
}

body[data-page="shop"] .shop-card,
body[data-page="collection"] .shop-card,
body[data-page="product"] .shop-look {
  gap: 8px;
}

body[data-page="shop"] .shop-card__link,
body[data-page="collection"] .shop-card__link {
  gap: 8px;
}

body[data-page="shop"] .shop-card__media img,
body[data-page="collection"] .shop-card__media img,
body[data-page="product"] .shop-look img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: transparent;
}

body[data-page="shop"] .shop-card h3,
body[data-page="collection"] .shop-card h3,
body[data-page="product"] .shop-look h3 {
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="shop"] .shop-card p,
body[data-page="collection"] .shop-card p,
body[data-page="product"] .shop-look p {
  font-size: 10px;
  line-height: 1.3;
}

body[data-page="shop"] .shop-pagination,
body[data-page="collection"] .shop-pagination {
  display: none;
}

body[data-page="product"] .product-shell {
  width: min(1280px, calc(100% - 50px));
  padding-top: 82px;
}

body[data-page="product"] .product-reference-stage {
  position: relative;
  min-height: calc(100vh - 130px);
  border-top: var(--divider);
}

body[data-page="product"] .product-shipping-alert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 18px;
  margin: 28px auto 0;
  background: #f39a08;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

body[data-page="product"] .product-reference-copy {
  position: absolute;
  left: 24px;
  bottom: 88px;
  width: 238px;
}

body[data-page="product"] .product-heading-group h1 {
  margin: 0;
  max-width: none;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

body[data-page="product"] .product-heading-group .product-price {
  margin: 2px 0 18px;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

body[data-page="product"] .product-reference-copy .accordion-list {
  margin-top: 0;
}

body[data-page="product"] .product-reference-copy .accordion-item summary {
  padding: 15px 0;
  font-size: 9px;
  letter-spacing: 0.12em;
}

body[data-page="product"] .product-reference-copy .accordion-item ul,
body[data-page="product"] .product-reference-copy .accordion-item p {
  font-size: 10px;
  line-height: 1.6;
}

body[data-page="product"] .product-top-media,
body[data-page="product"] .product-supporting-media {
  display: none;
}

body[data-page="product"] .product-grid-layout,
body[data-page="product"] .product-gallery,
body[data-page="product"] .product-buy-rail {
  display: none;
}

body[data-page="product"] .product-related {
  margin-top: 24px;
  padding-top: 28px;
  border-top: var(--divider);
}

body[data-page="product"] .product-related h2 {
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.product-reference-page .product-shell--reference {
  width: min(1180px, calc(100% - 50px));
  padding-top: 82px;
}

body.product-reference-page .product-shell--reference .product-reference-stage--capture {
  min-height: 0;
  padding-top: 28px;
  border-top: var(--divider);
}

body.product-reference-page .product-shell--reference .product-shipping-alert,
body.product-reference-page .product-shell--reference .product-reference-copy,
body.product-reference-page .product-shell--reference .product-related {
  display: none;
}

body.product-reference-page .product-shell--reference .product-reference-shot {
  display: block;
  width: 100%;
  border: 1px solid rgba(24, 24, 24, 0.1);
  background: #f5f2eb;
}

body.product-reference-page .product-shell--reference .product-reference-shot img {
  display: block;
  width: 100%;
  height: auto;
}

body.product-ald-page .product-shell--ald {
  width: min(1380px, calc(100% - 50px));
  padding-top: 86px;
}

body.product-ald-page .product-ald-stage {
  display: grid;
  grid-template-columns: minmax(240px, 0.28fr) minmax(0, 0.9fr) minmax(240px, 0.28fr);
  gap: 28px;
  align-items: start;
  min-height: calc(100vh - 150px);
  padding: 28px 0 56px;
  border-top: var(--divider);
}

body.product-ald-page .product-ald-media {
  order: 2;
  display: grid;
  gap: 16px;
}

body.product-ald-page .product-ald-gallery {
  display: grid;
  gap: 16px;
}

body.product-ald-page .product-ald-gallery[data-gallery-ready="true"] {
  display: block;
}

body.product-ald-page .product-ald-gallery-item {
  background: #f4f0e8;
  border: 1px solid rgba(24, 24, 24, 0.08);
}

body.product-ald-page .product-ald-gallery[data-gallery-ready="true"] .product-ald-gallery-item {
  display: none;
}

body.product-ald-page .product-ald-gallery[data-gallery-ready="true"] .product-ald-gallery-item.is-active {
  display: block;
}

body.product-ald-page .product-ald-media img {
  display: block;
  width: 100%;
  height: auto;
}

body.product-ald-page .product-ald-gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

body.product-ald-page .product-ald-gallery-dot {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

body.product-ald-page .product-ald-gallery-dot::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.24);
  transform: translate(-50%, -50%);
}

body.product-ald-page .product-ald-gallery-dot.is-active::before {
  background: #111111;
}

body.product-ald-page .product-shipping-alert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 18px;
  margin: 0 0 12px;
  background: #f39a08;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
}

body.product-ald-page .product-ald-copy {
  order: 1;
  width: 100%;
  max-width: 250px;
  position: sticky;
  top: 112px;
}

body.product-ald-page .product-ald-copy .eyebrow {
  margin: 0 0 8px;
}

body.product-ald-page .product-heading-group h1 {
  margin: 0;
  max-width: none;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
}

body.product-ald-page .product-heading-group .product-price {
  margin: 6px 0 18px;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

body.product-ald-page .product-ald-copy .accordion-list {
  margin-top: 16px;
}

body.product-ald-page .product-ald-copy .accordion-item summary {
  padding: 13px 0;
  font-size: 9px;
  letter-spacing: 0.12em;
}

body.product-ald-page .product-ald-copy .accordion-item ul,
body.product-ald-page .product-ald-copy .accordion-item p {
  font-size: 10px;
  line-height: 1.6;
}

body.product-ald-page .product-ald-copy .accordion-item ul {
  padding-left: 16px;
}

body.product-ald-page .product-meta-note {
  margin-top: 18px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.product-ald-page .product-rail-block {
  margin-top: 24px;
  padding-top: 16px;
  border-top: var(--divider);
}

body.product-ald-page .product-rail-heading {
  margin: 0 0 12px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.product-ald-page .product-rail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 10px;
}

body.product-ald-page .product-rail-block--recent .product-rail-grid {
  grid-template-columns: 1fr;
}

body.product-ald-page .product-rail-card {
  display: grid;
  gap: 8px;
  color: #111111;
  text-decoration: none;
}

body.product-ald-page .product-rail-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  background: #f4f0e8;
  border: 1px solid rgba(24, 24, 24, 0.08);
}

body.product-ald-page .product-rail-block--recent .product-rail-card-image {
  aspect-ratio: 1.15;
}

body.product-ald-page .product-rail-card-title {
  font-size: 10px;
  line-height: 1.45;
}

body.product-ald-page .product-rail-card-price {
  margin-top: -2px;
  font-size: 10px;
  line-height: 1.4;
  color: rgba(17, 17, 17, 0.7);
}

body.product-ald-page .product-ald-buy {
  order: 3;
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
  max-width: 250px;
}

body.product-ald-page .product-ald-purchase-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.product-ald-page .product-ald-swatch-row,
body.product-ald-page .product-ald-size-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.product-ald-page .product-ald-swatch,
body.product-ald-page .product-ald-size {
  min-width: 56px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(24, 24, 24, 0.16);
  background: #ffffff;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.product-ald-page .product-ald-swatch.is-active,
body.product-ald-page .product-ald-size.is-active {
  border-color: #111111;
}

body.product-ald-page .product-ald-add {
  width: 100%;
  min-height: 48px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.product-ald-page .product-ald-helper {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.72);
}

body.product-ald-page .site-footer {
  margin-top: 20px;
}

.support-split,
.support-shell {
  width: min(1280px, calc(100% - 50px));
  margin: 0 auto;
  padding-top: 78px;
}

.support-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.38fr) minmax(0, 0.62fr);
  gap: 40px;
}

.support-split__image img,
.support-hero-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-split__image {
  min-height: 620px;
}

.support-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  max-width: 520px;
}

.support-split__content h1,
.support-narrow h1 {
  margin: 0;
  max-width: none;
  font-size: 3rem;
  line-height: 1.05;
}

.support-split__content p,
.support-narrow p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

.support-hero-band {
  overflow: hidden;
  border-top: var(--divider);
}

.support-hero-band img {
  aspect-ratio: 16 / 5;
}

.support-nav-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: var(--divider);
  border-bottom: var(--divider);
}

.support-nav-strip a,
.support-nav-strip span {
  flex: 1 1 120px;
  padding: 14px 16px;
  border-right: var(--divider);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.support-nav-strip a:last-child,
.support-nav-strip span:last-child {
  border-right: 0;
}

.support-narrow {
  width: min(520px, calc(100% - 50px));
  margin: 0 auto;
  padding: 34px 0 60px;
}

.support-form,
.policy-stack {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.support-form label {
  display: grid;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-form input,
.support-form textarea {
  padding: 12px 0;
  border: 0;
  border-bottom: var(--divider);
  background: transparent;
  color: var(--color-text);
}

.support-form textarea {
  min-height: 96px;
  resize: vertical;
}

.support-form button {
  margin-top: 8px;
  min-height: 48px;
  border: 0;
  background: var(--color-text);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 12px;
}

.editorial-card {
  display: grid;
  gap: 8px;
}

.editorial-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.editorial-card h2 {
  margin: 0;
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-card p {
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  body[data-page="home"] .hero-media--clone img {
    object-fit: cover;
    object-position: center;
  }

  body[data-page="home"] .module-email--clone {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }

  body[data-page="shop"] .shop-shell,
  body[data-page="collection"] .shop-shell,
  body[data-page="product"] .product-shell {
    width: calc(100% - 32px);
  }

  body[data-page="shop"] .shop-grid,
  body[data-page="collection"] .shop-grid,
  body[data-page="product"] .shop-look-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 6px;
  }

  body[data-page="product"] .product-reference-stage {
    min-height: auto;
    padding-top: 12px;
  }

  body[data-page="product"] .product-shipping-alert {
    display: flex;
    width: calc(100% - 48px);
    margin: 18px auto 20px;
    min-height: 72px;
    padding: 18px;
    font-size: 15px;
    line-height: 1.35;
    text-align: center;
  }

  body[data-page="product"] .product-top-media {
    display: block;
    margin: 0 0 18px;
    padding: 26px 0;
    background: #f7f4ef;
  }

  body[data-page="product"] .product-top-media img {
    width: min(72%, 320px);
    margin: 0 auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: #f7f4ef;
  }

  body[data-page="product"] .product-reference-copy {
    position: static;
    width: auto;
    margin: 0;
    display: grid;
  }

  body[data-page="product"] .product-reference-copy .accordion-list {
    order: 1;
    margin-bottom: 28px;
  }

  body[data-page="product"] .product-heading-group {
    order: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
  }

  body[data-page="product"] .product-heading-group h1 {
    font-size: 15px;
    line-height: 1.45;
  }

  body[data-page="product"] .product-related {
    margin-top: 36px;
  }

  .support-split,
  .support-shell {
    width: calc(100% - 32px);
  }

  .support-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .support-split__image {
    min-height: auto;
  }

  .support-split__content h1,
  .support-narrow h1 {
    font-size: 2.2rem;
  }

  .support-nav-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-nav-strip a,
  .support-nav-strip span {
    border-right: 0;
    border-bottom: var(--divider);
  }

  .support-narrow {
    width: calc(100% - 32px);
  }

  .editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 8px;
  }

  body.product-ald-page .product-shell--ald {
    width: calc(100% - 32px);
    padding-top: 94px;
  }

  body.product-ald-page .product-ald-stage {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.product-ald-page .product-ald-copy,
  body.product-ald-page .product-ald-buy {
    position: static;
    max-width: none;
  }

  body.product-ald-page .product-ald-media {
    order: 1;
  }

  body.product-ald-page .product-ald-copy {
    order: 2;
  }

  body.product-ald-page .product-ald-buy {
    order: 3;
  }

  body.product-ald-page .product-heading-group h1 {
    font-size: 18px;
    line-height: 1.15;
  }

  body.product-ald-page .product-ald-gallery {
    gap: 10px;
  }

  body.product-ald-page .product-rail-grid {
    gap: 12px 8px;
  }

  body.product-ald-page .product-ald-swatch-row,
  body.product-ald-page .product-ald-size-row {
    gap: 8px;
  }
}
