:root {
  --ink: #050505;
  --paper: #ffffff;
  --soft: #f7f4f1;
  --line: #e7ddd5;
  --muted: #71665f;
  --espresso: #201406;
  --nude: #cda581;
  --terracotta: #9a4325;
  --plum: #451928;
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 2.4vw, 34px);
  padding: 14px clamp(20px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(32, 20, 6, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.brand-word {
  display: grid;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand-word small {
  margin-top: -4px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-start;
  gap: clamp(16px, 2vw, 30px);
  min-width: 0;
  color: #1a1715;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.search-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 0;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.header-utilities {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  margin-left: auto;
}

.search-toggle svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-toggle:hover,
.search-toggle:focus-visible {
  border-color: currentColor;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(76px, 10vh, 118px) clamp(18px, 4vw, 42px) 32px;
  background: rgba(5, 5, 5, 0.48);
}

.search-overlay.is-open {
  display: flex;
}

.search-panel {
  width: min(720px, 100%);
  max-height: min(720px, calc(100vh - 110px));
  overflow: auto;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(5, 5, 5, 0.22);
}

.search-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 4vw, 30px) 0;
}

.search-panel-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 400;
}

.search-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.search-field {
  display: block;
  padding: 22px clamp(18px, 4vw, 30px);
}

.search-field input {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 2rem);
  outline: 0;
}

.search-results {
  display: grid;
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 30px) 28px;
}

.search-result {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.search-result-media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}

.search-result-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.search-result-copy strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
}

.search-result-copy span,
.search-empty {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-empty {
  margin: 0;
  padding: 8px 0 2px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  border-color: var(--terracotta);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 1360px;
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 86px) clamp(20px, 4vw, 54px) 48px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.4vw, 6.25rem);
  line-height: 0.98;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 460px;
  color: #36302b;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

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

.button-ghost {
  background: transparent;
  color: var(--ink);
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: clamp(14px, 2vw, 24px);
  align-items: end;
}

.hero-main,
.hero-side {
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.hero-main {
  position: relative;
  height: min(74vh, 780px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  background: transparent;
  transition: background 1.2s ease;
}

.hero-dot.is-active {
  background: var(--paper);
}

.hero-side {
  height: min(52vh, 560px);
  border-top: 10px solid var(--nude);
}

.intro-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.intro-marquee {
  overflow: hidden;
  padding: 16px 0;
}

.intro-marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  animation: brandTicker 42s linear infinite;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  white-space: nowrap;
  will-change: transform;
}

.intro-strip-accessible {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@keyframes brandTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes timelineGallerySlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-marquee-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
    white-space: normal;
  }

  .intro-marquee-track span:nth-child(n + 9) {
    display: none;
  }

  .timeline-gallery {
    overflow-x: auto;
  }

  .timeline-track {
    animation: none;
  }
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) clamp(20px, 4vw, 36px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading.centered {
  display: block;
  max-width: 690px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.about h2,
.heritage h2,
.social h2,
.newsletter h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 3.65rem);
  line-height: 1;
}

.section-heading a {
  border-bottom: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collections-preview {
  padding-top: clamp(34px, 5vw, 62px);
}

.best-sellers {
  max-width: var(--max);
  margin: 0 auto;
  padding-bottom: clamp(34px, 5vw, 62px);
}

.product-grid.best-seller-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  width: 100%;
}

.home-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
}

.home-collection-grid .collection-feature-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 0;
  min-width: 0;
  border-top: 1px solid var(--ink);
  background: var(--paper);
}

.home-collection-grid .collection-feature-media {
  aspect-ratio: 4 / 3;
  background: var(--soft);
}

.home-collection-grid .collection-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 158px;
  padding: clamp(18px, 2.4vw, 30px) 0 0;
}

.home-collection-grid .collection-feature-copy h3 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(1.85rem, 2.6vw, 3rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.home-collection-grid .collection-feature-copy span {
  width: max-content;
}

.collections-page,
.collection-detail-page {
  background: var(--paper);
}

.collections-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 86px) clamp(20px, 4vw, 36px) clamp(24px, 4vw, 42px);
}

.collections-hero h1,
.collection-hero h1 {
  margin-bottom: 0;
  font-size: clamp(2.75rem, 6vw, 5.75rem);
  line-height: 0.98;
}

.collections-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 36px) clamp(58px, 8vw, 92px);
}

.collection-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 32px);
}

.collection-card {
  display: block;
  min-width: 0;
  color: inherit;
}

.collection-card-media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

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

.collection-card-copy {
  padding-top: 18px;
}

.collection-card-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 2.5vw, 2.65rem);
  line-height: 1.04;
}

.collection-card-copy span {
  display: inline-block;
  border-bottom: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 200ms ease;
}

.collection-card:hover .collection-card-copy span,
.collection-card:focus-visible .collection-card-copy span {
  border-color: currentColor;
}

.collection-gateway {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.collection-gateway-copy {
  display: grid;
  gap: 8px;
  padding-top: 2px;
}

.collection-gateway-copy p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.collection-gateway-copy span {
  color: var(--espresso);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-preview-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 4px;
}

.collection-preview-product {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.collection-preview-media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}

.collection-preview-name {
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.2;
}

.collection-preview-price {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collection-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: end;
  color: inherit;
}

.collection-feature-card:hover .collection-feature-copy span,
.collection-feature-card:focus-visible .collection-feature-copy span {
  border-color: currentColor;
}

.collection-feature-media {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #5d371f;
}

.collection-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.collection-feature-copy {
  padding-bottom: clamp(8px, 2vw, 28px);
}

.collection-feature-copy h2,
.collection-feature-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 5.75rem);
  line-height: 0.92;
}

.collection-feature-copy span {
  display: inline-block;
  border-bottom: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 200ms ease;
}

.collection-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) clamp(20px, 4vw, 36px) clamp(56px, 8vw, 108px);
}

.collection-hero-copy {
  min-width: 0;
  max-width: 760px;
}

.collection-hero-copy p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.collection-hero-media {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #5d371f;
}

.collection-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.collection-products {
  padding-top: clamp(56px, 8vw, 104px);
  border-top: 1px solid var(--line);
}

@media (max-width: 1100px) {
  .collection-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .collection-hero-media {
    width: min(720px, 100%);
  }
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: #111;
}

.feature-card.large {
  grid-row: span 2;
  min-height: 620px;
}

.feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.68));
}

.feature-card div {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  color: var(--paper);
}

.feature-card p,
.product-info p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
}

.arrivals {
  max-width: 1320px;
  border-top: 1px solid var(--line);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
}

.product-card > a {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5.2;
  overflow: hidden;
  background: var(--soft);
}

.product-placeholder-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5.2;
  overflow: hidden;
  background: var(--soft);
}

.product-card img,
.feature-card img,
.category-card img,
.social-grid img {
  transition: transform 500ms ease;
}

.product-image-placeholder,
.collection-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(205, 165, 129, 0.24), rgba(246, 242, 238, 0.92)),
    var(--soft);
  color: var(--espresso);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  padding: 24px;
  text-align: center;
  text-transform: uppercase;
}

.collection-placeholder {
  aspect-ratio: 4 / 3;
  min-height: auto;
}

.product-card:hover img,
.feature-card:hover img,
.category-card:hover img,
.social-grid img:hover {
  transform: scale(1.035);
}

.product-info {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0 0;
}

.product-info h3 {
  margin-bottom: 2px;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 400;
  line-height: 1.18;
}

.product-info h3 button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
}

.product-info h3 button:hover {
  color: var(--terracotta);
}

.product-info p {
  color: var(--muted);
}

.product-info span {
  white-space: nowrap;
  color: var(--plum);
  font-size: 0.86rem;
  font-weight: 700;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 4vw, 36px);
}

.about-image {
  min-height: 620px;
  background: var(--soft);
}

.about-copy p:not(.eyebrow) {
  max-width: 610px;
  color: #4f463f;
  font-size: 1rem;
}

.heritage {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  padding: clamp(54px, 8vw, 88px) clamp(20px, 5vw, 76px);
  background: var(--ink);
  color: var(--paper);
}

.heritage .eyebrow {
  color: var(--nude);
}

.heritage p:last-child {
  align-self: end;
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 2vw, 1.35rem);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  display: block;
  min-height: 460px;
  overflow: hidden;
  background: var(--soft);
}

.category-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(32, 20, 6, 0.72));
}

.category-card span {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 1;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
}

.social {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(72px, 10vw, 116px) clamp(20px, 5vw, 76px);
  background: var(--soft);
}

.social-copy p:not(.eyebrow) {
  color: var(--muted);
}

.timeline-gallery {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding-block: 10px;
  touch-action: pan-y;
}

.timeline-gallery::before,
.timeline-gallery::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(34px, 6vw, 86px);
  pointer-events: none;
  content: "";
}

.timeline-gallery::before {
  left: 0;
  background: linear-gradient(90deg, var(--soft), rgba(245, 237, 224, 0));
}

.timeline-gallery::after {
  right: 0;
  background: linear-gradient(270deg, var(--soft), rgba(245, 237, 224, 0));
}

.timeline-track {
  display: flex;
  width: max-content;
  gap: clamp(10px, 1.2vw, 16px);
  animation: timelineGallerySlide 88s linear infinite;
  will-change: transform;
}

.timeline-gallery:hover .timeline-track,
.timeline-gallery.is-paused .timeline-track {
  animation-play-state: paused;
}

.timeline-slide {
  flex: 0 0 clamp(138px, 12vw, 218px);
  margin: 0;
}

.timeline-image-button {
  width: 100%;
  padding: 0;
  border: 0;
  display: block;
  background: transparent;
  cursor: zoom-in;
}

.timeline-image-button:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 5px;
}

.timeline-slide img {
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  display: block;
  object-fit: contain;
  object-position: center;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(32, 20, 6, 0.12);
  pointer-events: none;
}

body.timeline-lightbox-open {
  overflow: hidden;
}

.timeline-lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 52px);
}

.timeline-lightbox.is-open {
  display: flex;
}

.timeline-lightbox-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(19, 14, 10, 0.82);
  cursor: zoom-out;
}

.timeline-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  height: min(86vh, 820px);
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: clamp(10px, 2vw, 20px);
  align-items: center;
}

.timeline-lightbox-figure {
  min-width: 0;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  justify-items: center;
}

.timeline-lightbox-figure img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.timeline-lightbox-figure figcaption {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.timeline-lightbox-figure a {
  color: inherit;
  text-decoration: none;
}

.timeline-lightbox-figure a:hover,
.timeline-lightbox-figure a:focus-visible {
  color: var(--paper);
}

.timeline-lightbox-close,
.timeline-lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.42);
  display: inline-grid;
  place-items: center;
  background: rgba(19, 14, 10, 0.34);
  color: var(--paper);
  cursor: pointer;
}

.timeline-lightbox-close:focus-visible,
.timeline-lightbox-nav:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.timeline-lightbox-close {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 42px;
  height: 42px;
  z-index: 2;
  font-size: 1rem;
}

.timeline-lightbox-nav {
  width: 46px;
  height: 58px;
  font-size: 2.1rem;
  line-height: 1;
}

.timeline-lightbox-nav:hover,
.timeline-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.newsletter {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 4vw, 36px);
}

.newsletter-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--ink);
}

.newsletter-form input {
  min-width: 0;
  min-height: 52px;
  border: 0;
  outline: 0;
  font-size: 1rem;
}

.newsletter-form .button {
  border-bottom: 0;
}

.newsletter-form .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-note {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--terracotta);
  font-size: 0.9rem;
}

.newsletter-consent {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 34px;
  padding: 18px clamp(20px, 5vw, 76px) 106px;
  background: var(--espresso);
  color: var(--paper);
}

.footer-trust {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.footer .brand-mark {
  border-color: var(--paper);
  color: var(--paper);
}

.footer .brand-word small,
.footer p {
  color: rgba(255, 255, 255, 0.68);
}

.footer p {
  max-width: 430px;
  margin: 22px 0 0;
}

.footer h2 {
  margin-bottom: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer a:not(.brand) {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
}

.footer a:hover {
  color: var(--paper);
}

.footer-payment-methods {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.payment-method-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.payment-method-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  opacity: 1;
}

.payment-method-logo img {
  display: block;
  height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.payment-logo-mastercard {
  width: 48px;
}

.payment-logo-visa,
.payment-logo-verve {
  width: 62px;
}

.floating-contact {
  position: fixed;
  right: clamp(16px, 2.8vw, 34px);
  bottom: clamp(34px, 5vw, 62px);
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: var(--espresso);
  color: var(--paper);
  box-shadow: 0 18px 44px rgba(32, 20, 6, 0.28);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.floating-contact svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.floating-contact:hover,
.floating-contact:focus-visible {
  background: var(--terracotta);
  box-shadow: 0 18px 42px rgba(32, 20, 6, 0.24);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    flex: none;
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px;
    background: var(--paper);
    border: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .site-header .wishlist-toggle {
    margin-left: 0;
  }

  .header-utilities {
    display: grid;
    gap: 0;
    margin-left: 0;
    margin-top: 4px;
  }

  .search-toggle {
    justify-content: flex-start;
    margin-left: 0;
    width: 100%;
    min-height: 42px;
  }

  .header-utilities .wishlist-toggle,
  .header-utilities .cart-toggle {
    width: 100%;
  }

  .search-overlay {
    padding: 72px 12px 18px;
  }

  .search-panel {
    max-height: calc(100vh - 90px);
  }

  .hero,
  .about,
  .heritage,
  .social,
  .newsletter,
  .collection-feature-card,
  .home-collection-grid,
  .collection-card-grid,
  .collection-hero {
    grid-template-columns: 1fr;
  }

  .collection-hero {
    padding-top: 64px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 740px;
  }

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

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

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

  .category-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .timeline-gallery {
    margin-inline: calc(clamp(20px, 5vw, 76px) * -1);
    padding-inline: clamp(20px, 5vw, 76px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .timeline-gallery::-webkit-scrollbar {
    display: none;
  }

  .timeline-gallery::before,
  .timeline-gallery::after {
    display: none;
  }

  .timeline-track {
    animation: none;
    will-change: auto;
  }

  .timeline-slide {
    flex-basis: min(76vw, 320px);
    scroll-snap-align: start;
  }

  .timeline-slide img {
    height: min(112vw, 430px);
  }

  .timeline-lightbox {
    padding: 14px;
  }

  .timeline-lightbox-dialog {
    width: 100%;
    height: min(88dvh, 760px);
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline-lightbox-figure {
    width: 100%;
    height: 100%;
    gap: 12px;
  }

  .timeline-lightbox-figure img {
    max-height: calc(88dvh - 88px);
  }

  .timeline-lightbox-close {
    top: 8px;
    right: 8px;
    width: 46px;
    height: 46px;
    background: rgba(19, 14, 10, 0.58);
  }

  .timeline-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 52px;
    transform: translateY(-50%);
    background: rgba(19, 14, 10, 0.42);
  }

  .timeline-lightbox-prev {
    left: 0;
  }

  .timeline-lightbox-next {
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-gallery {
    overflow-x: auto;
  }

  .timeline-track {
    animation: none;
    will-change: auto;
  }
}

@media (max-width: 680px) {
  .product-grid.best-seller-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    padding: 10px 16px;
  }

  .site-header .brand-logo {
    padding: 5px 8px;
  }

  .site-header .brand-logo img {
    width: 88px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .brand-word {
    font-size: 1rem;
  }

  .hero {
    padding: 34px 16px 36px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.5rem);
    line-height: 1;
  }

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

  .hero-main {
    height: 560px;
  }

  .hero-side {
    display: none;
  }

  .intro-marquee {
    padding: 13px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading a {
    display: inline-block;
    margin-top: 18px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .feature-card.large,
  .feature-card {
    grid-row: auto;
    min-height: 460px;
  }

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

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

  .best-seller-grid .product-info {
    display: block;
  }

  .best-seller-grid .product-info span {
    display: inline-block;
    margin-top: 4px;
  }

  .section {
    padding: 42px 20px;
  }

  .best-sellers,
  .collections-preview {
    padding-bottom: 38px;
  }

  .home-collection-grid .collection-feature-copy {
    min-height: auto;
  }

  .home-collection-grid .collection-feature-copy h3,
  .collection-card-copy h2 {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .footer-trust {
    line-height: 1.6;
  }

  .footer-payment-methods {
    justify-content: center;
    padding-top: 18px;
  }

  .payment-method-logos {
    justify-content: center;
    gap: 12px;
  }

  .floating-contact {
    right: 16px;
    bottom: 28px;
    gap: 7px;
    min-height: 42px;
    padding: 10px 13px;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .floating-contact svg {
    width: 15px;
    height: 15px;
  }

  .about-image,
  .category-card {
    min-height: 520px;
  }

  .newsletter-form div {
    grid-template-columns: 1fr;
    gap: 12px;
    border-bottom: 0;
  }

  .newsletter-form input {
    border-bottom: 1px solid var(--ink);
  }

  .newsletter-form .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .hero-main,
  .about-image,
  .category-card,
  .feature-card.large,
  .feature-card {
    min-height: 0;
    height: 480px;
  }

  .product-grid.best-seller-grid {
    gap: 12px;
  }
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  width: clamp(60px, 5.8vw, 84px);
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.3s ease;
}

.brand-logo img:hover {
  opacity: 0.75;
}

.site-header .brand-logo {
  flex: 0 0 auto;
  justify-content: center;
  padding: 6px 8px;
  background: #fff;
}

.site-header .brand-logo img {
  width: auto;
  height: clamp(62px, 4.8vw, 70px);
  object-fit: contain;
}

@media (max-width: 680px) {
  .site-header .brand-logo {
    padding: 5px 7px;
  }

  .site-header .brand-logo img {
    width: auto;
    height: 52px;
  }
}

.footer .brand-logo img {
  opacity: 0.92;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 76px);
  background: var(--espresso);
  color: var(--nude);
  text-align: center;
}

.stat-block {
  padding: 24px;
  border-right: 1px solid rgba(205, 165, 129, 0.2);
}

.stat-block:last-child {
  border-right: 0;
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--nude);
}

.stat-suffix {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--nude);
}

.stat-label {
  margin-top: 12px;
  margin-bottom: 0;
  color: rgba(205, 165, 129, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stat-block {
    border-right: 0;
    border-bottom: 1px solid rgba(205, 165, 129, 0.2);
    padding: 32px 24px;
  }

  .stat-block:last-child {
    border-bottom: 0;
  }
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(32, 20, 6, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.wishlist-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(32, 20, 6, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.cart-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.wishlist-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  width: min(420px, 100vw);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 350ms ease;
  overflow-y: auto;
}

.wishlist-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  width: min(420px, 100vw);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 350ms ease;
  overflow-y: auto;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.wishlist-drawer.is-open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.wishlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.cart-header h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wishlist-header h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink);
}

.wishlist-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink);
}

.cart-items {
  flex: 1;
  padding: 24px 28px;
}

.wishlist-items {
  flex: 1;
  padding: 24px 28px;
}

.cart-empty {
  color: var(--muted);
  font-size: 0.9rem;
}

.wishlist-empty {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.wishlist-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.wishlist-item img {
  width: 76px;
  height: 96px;
  object-fit: cover;
}

.cart-item-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 4px;
}

.wishlist-item-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 4px;
}

.cart-item-meta {
  color: var(--muted);
  font-size: 0.78rem;
}

.cart-item-measurements {
  max-width: 28ch;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.wishlist-item-price {
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.wishlist-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.75rem;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  margin-top: 8px;
}

.wishlist-item-actions button {
  background: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 10px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.wishlist-item-actions button:hover {
  background: var(--ink);
  color: var(--paper);
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--plum);
  white-space: nowrap;
}

.cart-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--line);
}

.cart-shipping,
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.cart-total {
  font-weight: 700;
  font-size: 1rem;
}

.cart-shipping-note {
  color: var(--muted);
  font-size: 0.74rem;
  margin-bottom: 20px;
}

.cart-checkout {
  width: 100%;
  text-align: center;
}

.payment-placeholder {
  background: #7d6a5a;
  border-color: #7d6a5a;
  cursor: default;
  opacity: 0.78;
  pointer-events: none;
}

.production-notice {
  background: #fff8f0;
  border-left: 3px solid #9a4325;
  border-radius: 2px;
  color: #5a3520;
  font-size: 13px;
  line-height: 1.45;
  margin: 10px 0 0;
  padding: 8px 12px;
}

.cart-production-notice {
  margin: 20px 28px 0;
}

.success-production-notice {
  display: inline-block;
  margin: 12px auto 0;
  text-align: left;
}

.wishlist-heart {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(32, 20, 6, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--espresso);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.wishlist-heart:hover,
.wishlist-heart.is-saved {
  background: var(--plum);
  color: var(--paper);
}

.wishlist-heart:hover {
  transform: translateY(-1px);
}

.product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(32, 20, 6, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.product-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.product-modal {
  position: fixed;
  inset: clamp(18px, 4vw, 48px);
  z-index: 80;
  display: none;
  max-width: 1180px;
  margin: auto;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(32, 20, 6, 0.26);
  overflow-y: auto;
}

.product-modal.is-open {
  display: block;
}

.product-modal-close {
  position: sticky;
  top: 16px;
  left: calc(100% - 54px);
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--espresso);
  cursor: pointer;
}

.product-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 4vw, 58px);
  min-height: min(760px, calc(100vh - 96px));
  padding: clamp(24px, 4vw, 54px);
}

.product-modal-media {
  min-width: 0;
}

.product-gallery-frame {
  position: relative;
}

.product-modal-image-button {
  width: 100%;
  min-height: min(72vh, 760px);
  border: 0;
  background: var(--soft);
  cursor: zoom-in;
  overflow: auto;
  padding: 0;
}

.product-modal-image-button img {
  width: 100%;
  height: 100%;
  min-height: min(72vh, 760px);
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-modal-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: min(64vh, 640px);
  background:
    linear-gradient(135deg, rgba(205, 165, 129, 0.28), rgba(255, 255, 255, 0.9)),
    var(--soft);
  color: var(--espresso);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
  padding: clamp(24px, 6vw, 52px);
  text-align: center;
  text-transform: uppercase;
}

.product-modal-image-button:disabled {
  cursor: default;
}

.product-modal-image-button.is-zoomed {
  cursor: zoom-out;
}

.product-modal-image-button.is-zoomed img {
  transform: scale(1.65);
  transform-origin: center;
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(32, 20, 6, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--espresso);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 200ms ease, color 200ms ease;
}

.product-gallery-nav:hover {
  background: var(--espresso);
  color: var(--nude);
}

.product-gallery-prev {
  left: 14px;
}

.product-gallery-next {
  right: 14px;
}

.product-gallery-counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--espresso);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.product-modal-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.product-modal-thumbnails button {
  width: 72px;
  height: 90px;
  border: 1px solid transparent;
  background: var(--soft);
  cursor: pointer;
  padding: 0;
}

.product-modal-thumbnails button.is-active {
  border-color: var(--terracotta);
}

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

.product-modal-info {
  align-self: center;
}

.product-modal-info h2 {
  margin: 8px 0 12px;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.product-modal-price {
  color: var(--plum);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-modal-description {
  margin-top: 22px;
  max-width: 44ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  white-space: pre-line;
}

.product-modal-options {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.product-modal-options-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.product-modal-options p {
  margin: 0;
  color: var(--espresso);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.product-size-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.product-size-choice {
  min-width: 58px;
  min-height: 42px;
  border: 1px solid rgba(32, 20, 6, 0.22);
  background: #fff;
  color: var(--espresso);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.product-size-choice:hover,
.product-size-choice.is-selected {
  border-color: var(--espresso);
  background: var(--espresso);
  color: #fff;
}

.product-size-choice-custom {
  min-width: 132px;
}

.product-colour-options {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(32, 20, 6, 0.1);
}

.product-colour-options[hidden] {
  display: none;
}

.product-colour-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.product-colour-choice {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(32, 20, 6, 0.22);
  background: #fff;
  color: var(--espresso);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0 14px;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.product-colour-choice span {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(32, 20, 6, 0.2);
  border-radius: 999px;
  background: var(--swatch-color, #fff);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.78);
}

.product-colour-choice:hover,
.product-colour-choice.is-selected {
  border-color: var(--espresso);
  background: var(--espresso);
  color: #fff;
}

.product-colour-choice:hover span,
.product-colour-choice.is-selected span {
  border-color: rgba(255, 255, 255, 0.82);
}

.product-custom-size {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.product-custom-size[hidden] {
  display: none;
}

.product-custom-size label {
  color: var(--espresso);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-custom-size textarea {
  width: 100%;
  min-height: 118px;
  resize: vertical;
  border: 1px solid rgba(32, 20, 6, 0.26);
  background: #fff;
  color: var(--ink);
  font: inherit;
  line-height: 1.55;
  padding: 14px 16px;
}

.product-custom-size textarea:focus {
  outline: 1px solid var(--terracotta);
  outline-offset: 2px;
}

.product-modal-options .product-size-error {
  margin-top: 12px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-transform: none;
}

.product-size-error[hidden] {
  display: none;
}

.product-modal-text-link,
.product-modal-production-link {
  border: 0;
  background: none;
  color: var(--terracotta);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0;
  text-transform: uppercase;
}

.product-modal-text-link:hover,
.product-modal-production-link:hover {
  color: var(--espresso);
}

.product-modal-production-link {
  display: inline-flex;
  margin-top: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(154, 67, 37, 0.28);
}

.product-modal-notice {
  margin-top: 24px;
}

.product-modal-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.product-modal-actions .button {
  flex: 1;
}

.purchase-confidence {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.product-modal-wishlist {
  position: static;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  font-size: 1.35rem;
}

.related-products {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.related-products h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.1;
}

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

.related-product-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.related-product-media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}

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

.related-product-media .product-image-placeholder {
  min-height: 0;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  padding: 12px;
}

.related-product-name {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.16;
}

.related-product-price {
  color: var(--plum);
  font-size: 0.8rem;
  font-weight: 700;
}

.product-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 80px) clamp(20px, 4vw, 54px) clamp(48px, 7vw, 88px);
}

.product-page-found {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.product-page-gallery {
  min-width: 0;
}

.product-page-main-image {
  margin: 0;
  background: var(--soft);
  border: 1px solid rgba(32, 20, 6, 0.08);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-page-main-image img {
  object-fit: contain;
  background: var(--soft);
}

.product-page-thumbnails {
  margin-top: 14px;
}

.product-page-info {
  position: sticky;
  top: 98px;
  min-width: 0;
}

.product-page-info h1 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4.2vw, 4.25rem);
  line-height: 1;
}

.product-page-info .product-modal-description {
  white-space: pre-line;
}

.product-page-options {
  margin-top: 28px;
}

.product-page-actions {
  margin-top: 18px;
}

.product-page-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-page-policy-links a {
  border-bottom: 1px solid rgba(32, 20, 6, 0.28);
}

.product-not-found {
  max-width: 620px;
  min-height: 46vh;
  padding: clamp(40px, 8vw, 96px) 0;
}

.product-not-found h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.product-page-related {
  margin-top: clamp(42px, 7vw, 86px);
}

.product-page-related h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.product-actions .button {
  flex: 1;
  font-size: 0.72rem;
  padding: 10px 14px;
  min-height: 40px;
}

body.info-modal-open {
  overflow: hidden;
}

.info-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(32, 20, 6, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.info-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.info-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  pointer-events: none;
  min-height: 100vh;
  min-height: 100dvh;
}

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

.info-modal {
  position: relative;
  width: min(100%, 680px);
  max-height: min(760px, calc(100vh - 42px));
  max-height: min(760px, calc(100dvh - 42px));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(28px, 5vw, 48px);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(32, 20, 6, 0.24);
  pointer-events: all;
}

.info-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--espresso);
  cursor: pointer;
}

.info-modal h2 {
  margin: 8px 0 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}

.info-modal-body {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.info-modal-body p {
  margin: 0 0 14px;
}

.info-modal-body ul {
  margin: 12px 0 18px;
  padding-left: 20px;
}

.info-modal-body a {
  color: var(--terracotta);
}

.info-modal-layer[data-info-modal-kind="shop-entry-production"] .info-modal {
  width: min(100%, 480px);
  padding: clamp(30px, 5vw, 44px);
  text-align: center;
}

.info-modal-layer[data-info-modal-kind="shop-entry-production"] .info-modal h2 {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: uppercase;
}

.info-modal-layer[data-info-modal-kind="shop-entry-production"] .info-modal-body {
  max-width: 360px;
  margin: 0 auto;
}

.info-modal-layer[data-info-modal-kind="shop-entry-production"] .info-modal-body p {
  margin-bottom: 12px;
}

.size-guide-note,
.measurement-guide,
.size-guide-info {
  color: var(--espresso);
}

.measurement-guide h3,
.size-guide-info h3 {
  margin: 18px 0 8px;
  color: var(--espresso);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.size-guide-table-wrap {
  margin: 22px 0 14px;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: #fff;
}

.size-guide-table th,
.size-guide-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--espresso);
  font-size: 0.82rem;
  text-align: center;
}

.size-guide-table th:last-child,
.size-guide-table td:last-child {
  border-right: 0;
}

.size-guide-table tr:last-child th,
.size-guide-table tr:last-child td {
  border-bottom: 0;
}

.size-guide-table thead th {
  background: var(--paper);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.size-guide-table tbody th {
  font-weight: 700;
}

.cart-toggle {
  background: none;
  border: 1px solid var(--ink);
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
  transition: background 180ms ease, color 180ms ease;
}

.wishlist-toggle {
  background: none;
  border: 1px solid var(--ink);
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
  transition: background 180ms ease, color 180ms ease;
}

.site-header .wishlist-toggle {
  margin-left: 0;
}

.cart-toggle:hover {
  background: var(--ink);
  color: var(--paper);
}

.wishlist-toggle:hover {
  background: var(--ink);
  color: var(--paper);
}

.policy-page {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 4vw, 36px);
}

.policy-content h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 48px;
}

.policy-content h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.policy-section {
  scroll-margin-top: 210px;
}

.policy-section h3 {
  color: var(--espresso);
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  margin: 32px 0 12px;
  text-transform: uppercase;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.policy-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.policy-content a {
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
}

.contact-page {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 4vw, 36px);
}

.contact-content h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 24px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.contact-links a {
  font-size: 1rem;
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
  width: fit-content;
  padding-bottom: 2px;
}

.success-page {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 4vw, 36px);
  text-align: center;
}

.success-content h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 24px;
}

.success-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.success-content a:not(.button) {
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
}

.success-content .button {
  margin-top: 32px;
}

@media (max-width: 680px) {
  .product-page {
    padding-top: 28px;
  }

  .product-page-found {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-page-info {
    position: static;
  }

  .product-page-main-image {
    aspect-ratio: 4 / 5;
  }

  .product-page-info h1 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .product-modal {
    inset: 0;
    max-width: none;
  }

  .product-modal-close {
    top: 12px;
    left: calc(100% - 50px);
  }

  .product-modal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 18px;
  }

  .product-modal-image-button {
    min-height: 68vh;
  }

  .product-modal-image-button img {
    min-height: 68vh;
  }

  .product-modal-info {
    align-self: start;
    padding-bottom: 28px;
  }

  .product-modal-actions {
    align-items: stretch;
  }

  .related-products-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .related-product-card {
    flex: 0 0 145px;
    scroll-snap-align: start;
  }
}

.shop-hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 4vw, 36px) clamp(34px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
}

.shop-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(3rem, 7.2vw, 7rem);
}

.shop-catalog {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px) clamp(16px, 3vw, 34px) clamp(72px, 9vw, 120px);
}

.shop-toolbar {
  position: sticky;
  top: 109px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.shop-toolbar-title {
  margin: 0;
  color: var(--espresso);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.shop-count {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.shop-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sort-control select {
  min-height: 38px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--espresso);
  cursor: pointer;
  font-size: 0.76rem;
  padding: 0 34px 0 12px;
  text-transform: none;
}

.collection-control {
  display: flex;
}

.filter-toggle,
.filter-close,
.empty-results button,
.active-filter-row button {
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.filter-toggle {
  min-height: 38px;
  padding: 0 16px;
}

.filter-toggle span:not(:empty) {
  color: var(--terracotta);
}

.active-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  padding: 10px 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.active-filter-row button,
.empty-results button {
  padding: 9px 12px;
}

.shop-catalog .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.shop-catalog .product-card {
  min-width: 0;
}

.shop-catalog .product-card > a {
  aspect-ratio: 3 / 4.35;
  background: #f6f2ee;
}

.shop-catalog .product-card img {
  object-fit: cover;
  object-position: center top;
}

.shop-catalog .product-info {
  align-items: flex-start;
  gap: 12px;
  padding-top: 12px;
}

.shop-catalog .product-info h3 {
  margin-bottom: 3px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.12;
}

.shop-catalog .product-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}

.shop-catalog .product-info span {
  font-size: 0.82rem;
}

.shop-catalog .product-card[hidden] {
  display: none;
}

.empty-results {
  display: grid;
  place-items: center;
  gap: 16px;
  min-height: 260px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.empty-results p {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.filter-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(32, 20, 6, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.filter-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.filter-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 65;
  display: flex;
  flex-direction: column;
  width: min(430px, 100vw);
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 300ms ease;
}

.filter-drawer.is-open {
  transform: translateX(0);
}

.filter-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 30px 20px;
  border-bottom: 1px solid var(--line);
}

.filter-header .eyebrow {
  margin-bottom: 8px;
}

.filter-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.filter-close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  padding: 0;
}

.filter-content {
  flex: 1;
  overflow-y: auto;
  padding: 10px 30px 24px;
}

.filter-group {
  margin: 0;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.filter-group legend {
  margin-bottom: 14px;
  color: var(--espresso);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.filter-options {
  display: grid;
  gap: 10px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.92rem;
}

.filter-option input {
  accent-color: var(--plum);
}

.filter-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 18px 30px 28px;
  border-top: 1px solid var(--line);
}

.checkout-page {
  padding: 132px clamp(20px, 5vw, 76px) 88px;
  background: var(--paper);
}

.checkout-hero {
  max-width: 760px;
  margin-bottom: 44px;
}

.checkout-hero h1,
.checkout-summary h2,
.checkout-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
}

.checkout-hero h1 {
  max-width: 680px;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.96;
}

.checkout-hero p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.42fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.checkout-details {
  display: grid;
  gap: 18px;
}

.checkout-panel,
.checkout-summary {
  border: 1px solid var(--line);
  background: #fff;
}

.checkout-panel {
  padding: clamp(24px, 4vw, 42px);
}

.checkout-panel-heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}

.checkout-panel-heading span {
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.checkout-panel h2,
.checkout-summary h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.checkout-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.checkout-field-grid label {
  display: grid;
  gap: 8px;
  color: var(--espresso);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkout-field-grid input,
.checkout-field-grid select,
.checkout-field-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  padding: 13px 14px;
  text-transform: none;
}

.checkout-field-grid textarea {
  resize: vertical;
}

.checkout-field-grid em {
  color: var(--muted);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.checkout-field-wide {
  grid-column: 1 / -1;
}

.checkout-zone-note,
.checkout-disabled-note,
.checkout-form-message {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.checkout-summary {
  position: sticky;
  top: 104px;
  padding: clamp(22px, 3vw, 32px);
}

.checkout-summary-heading {
  margin-bottom: 22px;
}

.checkout-summary-heading .eyebrow {
  margin-bottom: 8px;
}

.checkout-items {
  display: grid;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checkout-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: center;
}

.checkout-item img {
  width: 74px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper);
}

.checkout-item p,
.checkout-item span {
  margin: 0;
}

.checkout-item p {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.checkout-item span {
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout-item .checkout-item-measurements {
  display: block;
  margin-top: 4px;
  line-height: 1.5;
}

.checkout-item strong {
  font-size: 0.94rem;
  white-space: nowrap;
}

.checkout-totals {
  display: grid;
  gap: 12px;
  padding: 22px 0;
}

.checkout-totals div,
.success-order-summary p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
}

.checkout-totals span,
.success-order-summary span {
  color: var(--muted);
}

.checkout-grand-total {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--espresso);
  font-size: 1.08rem;
}

.checkout-production-notice {
  margin-top: 4px;
}

.checkout-confidence {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checkout-confidence p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.checkout-confidence a {
  width: max-content;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkout-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.checkout-terms input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  accent-color: var(--terracotta);
}

.checkout-terms span {
  min-width: 0;
}

.checkout-terms a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  color: var(--espresso);
  font-weight: 700;
  text-decoration-color: rgba(154, 67, 37, 0.35);
  text-underline-offset: 3px;
}

.checkout-terms a:hover {
  color: var(--terracotta);
}

.checkout-payment-button {
  width: 100%;
  margin-top: 18px;
}

.checkout-payment-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.checkout-return-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--espresso);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.success-order-summary {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

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

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .shop-toolbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-toolbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .sort-control {
    flex: 1;
  }

  .sort-control select {
    width: 100%;
  }

  .collection-control {
    display: none;
  }

  .shop-catalog .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
  }

  .shop-catalog .product-info {
    display: block;
  }

  .shop-catalog .product-info span {
    display: block;
    margin-top: 4px;
  }

  .checkout-page {
    padding-top: 112px;
  }

  .checkout-field-grid {
    grid-template-columns: 1fr;
  }

  .checkout-item {
    grid-template-columns: 64px 1fr;
  }

  .checkout-item strong {
    grid-column: 2;
  }

  .info-modal-layer {
    align-items: center;
    justify-items: center;
    padding: 12px;
  }

  .info-modal {
    width: 100%;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    padding: 30px 22px;
  }

  .product-size-choice {
    flex: 1 1 calc(33.333% - 10px);
  }

  .product-size-choice-custom {
    flex-basis: 100%;
  }

  .size-guide-table-wrap {
    margin-inline: -2px;
  }
}

@media (max-width: 360px) {
  .shop-catalog {
    padding-inline: 14px;
  }

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

  .filter-drawer {
    width: 100vw;
  }
}

/* Story page */
.story-page {
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}

.story-page .button {
  width: fit-content;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  min-height: calc(100vh - 86px);
  padding: clamp(96px, 12vw, 160px) clamp(20px, 6vw, 88px) clamp(70px, 8vw, 112px);
}

.story-hero-copy {
  max-width: 760px;
}

.story-hero-copy h1,
.story-copy h2,
.story-section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.story-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(3.05rem, 5.8vw, 5.95rem);
  line-height: 0.98;
}

.story-hero-copy h1 span {
  display: block;
}

.story-hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.82;
}

.story-hero-copy .button {
  margin-top: 34px;
}

.story-hero-media {
  position: relative;
  min-height: min(72vh, 760px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.story-hero-media img,
.story-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--espresso);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(74px, 10vw, 136px) clamp(20px, 5vw, 76px);
}

.story-split,
.story-founder-grid,
.story-runway-layout,
.story-recognition {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.story-copy h2,
.story-section-heading h2 {
  max-width: 780px;
  font-size: clamp(2.55rem, 5vw, 5rem);
  line-height: 1;
}

.story-copy p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.82;
}

.story-image-frame {
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.story-image-tall {
  aspect-ratio: 4 / 5;
}

.story-founder-band,
.story-press-band {
  background: var(--soft);
}

.story-founder-grid,
.story-runway-inner,
.story-press-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(74px, 10vw, 136px) clamp(20px, 5vw, 76px);
}

.story-founder-aside {
  display: grid;
  gap: 24px;
}

.story-founder-aside .story-image-frame {
  aspect-ratio: 1 / 1;
}

.story-quote {
  margin: 0;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
  border-left: 4px solid var(--terracotta);
}

.story-quote p {
  margin: 0;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(2.05rem, 4vw, 3.8rem);
  line-height: 1.04;
}

.story-quote footer {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-preserve {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  background: var(--paper);
}

.story-preserve-copy {
  max-width: 760px;
}

.story-preserve-copy h2 {
  max-width: 680px;
  margin: 0;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.8vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.story-preserve-copy p {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.82;
}

.story-preserve-media {
  width: 100%;
  margin: 0;
  justify-self: stretch;
}

.story-preserve-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(54vw, 620px);
  object-fit: contain;
  object-position: center;
}

.story-runway .eyebrow {
  color: var(--nude);
}

.story-runway h2 {
  color: var(--paper);
}

.story-runway .story-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.story-section-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.story-moments {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 40px);
}

.story-moment {
  max-width: 250px;
}

.story-moment-marker {
  display: block;
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.story-moment h3 {
  margin: 0;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 400;
  line-height: 1.12;
}

.story-moment p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.story-moment-feature .story-moment-marker {
  color: var(--plum);
}

.story-runway {
  background: #050505;
  color: var(--paper);
}

.story-subtitle {
  color: var(--nude) !important;
  font-size: 0.78rem !important;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-runway .button-light {
  margin-top: 28px;
  background: var(--nude);
  color: var(--espresso);
}

.story-runway-media {
  display: block;
  background: #050505;
}

.story-runway-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 860px);
  object-fit: contain;
}

.story-look-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(46px, 7vw, 76px);
  background: rgba(205, 165, 129, 0.28);
}

.story-look-card {
  min-height: 230px;
  padding: clamp(22px, 3vw, 32px);
  background: #050505;
}

.story-look-card h3 {
  margin: 0;
  color: var(--nude);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2.15rem);
  font-weight: 400;
}

.story-look-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.story-shop-link,
.story-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-shop-link {
  color: var(--nude);
}

.story-link:hover,
.story-shop-link:hover {
  color: var(--plum);
}

.story-award-card {
  padding: clamp(34px, 5vw, 58px);
  background: var(--plum);
  color: var(--paper);
}

.story-award-card span {
  color: var(--nude);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.story-award-card strong {
  display: block;
  margin-top: 36px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.98;
}

.story-award-card p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
}

.story-award-poster-frame {
  width: min(100%, 430px);
  margin: 0;
  justify-self: center;
  background: var(--paper);
}

.story-award-poster-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.story-award-poster-frame figcaption {
  margin-top: 18px;
}

.story-video-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--espresso);
  background: var(--paper);
  color: var(--espresso);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.story-video-trigger:hover,
.story-video-trigger:focus-visible {
  background: var(--espresso);
  color: var(--paper);
  outline: none;
}

body.story-video-modal-open {
  overflow: hidden;
}

.story-video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(5, 5, 5, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.story-video-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.story-video-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  pointer-events: none;
}

.story-video-modal-layer.is-open {
  display: grid;
}

.story-video-modal {
  position: relative;
  width: min(100%, 420px);
  max-height: calc(100vh - 42px);
  background: #050505;
  pointer-events: all;
  box-shadow: 0 26px 86px rgba(5, 5, 5, 0.42);
}

.story-video-modal video {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 42px);
  aspect-ratio: 9 / 16;
  object-fit: contain;
}

.story-video-modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: var(--paper);
  color: var(--espresso);
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(5, 5, 5, 0.28);
}

.story-press-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.story-press-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.story-press-source {
  margin: 0;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-press-card h3 {
  margin: 20px 0 0;
  color: var(--espresso);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.12;
}

.story-press-card p:not(.story-press-source):not(.story-press-date) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.story-press-date {
  margin: 14px 0 0;
  color: var(--nude);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-press-card .story-link {
  margin-top: auto;
  padding-top: 30px;
}

@media (max-width: 980px) {
  .story-hero,
  .story-split,
  .story-founder-grid,
  .story-preserve,
  .story-runway-layout,
  .story-recognition {
    grid-template-columns: 1fr;
  }

  .story-hero {
    min-height: auto;
    padding-top: 82px;
  }

  .story-hero-media {
    min-height: auto;
    max-height: 720px;
  }

  .story-runway-media {
    max-width: 680px;
  }

  .story-award-poster-frame {
    justify-self: start;
  }

  .story-preserve-media {
    max-width: 680px;
  }

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

@media (max-width: 680px) {
  .story-hero {
    padding: 62px 20px 58px;
  }

  .story-hero-copy h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.35rem);
    line-height: 1.02;
  }

  .story-hero-copy h1 span {
    display: inline;
  }

  .story-section,
  .story-founder-grid,
  .story-runway-inner,
  .story-press-inner {
    padding: 64px 20px;
  }

  .story-preserve-media img {
    max-height: none;
  }

  .story-moments {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .story-moment {
    max-width: 100%;
  }

  .story-look-grid,
  .story-press-grid {
    grid-template-columns: 1fr;
  }

  .story-look-card,
  .story-press-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .collection-preview-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .collection-preview-product {
    grid-template-columns: 74px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
  }

  .collection-preview-media {
    grid-row: span 2;
  }

  .collection-preview-name,
  .collection-preview-price {
    min-width: 0;
  }

  .search-result {
    grid-template-columns: 64px minmax(0, 1fr);
  }
}
