:root {
  --ink: #191613;
  --ink-soft: #504a43;
  --paper: #f7f4ee;
  --paper-deep: #ece7de;
  --white: #fffdf8;
  --line: rgba(25, 22, 19, 0.16);
  --accent: #a67a64;
  --accent-ink: #39251e;
  --max: 1480px;
  --nav-height: 58px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.site-nav {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--nav-height);
  padding: 0 52px;
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr);
  align-items: center;
  gap: 0;
  background: transparent;
  border-bottom: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 0 0 -22px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-nav.is-over-image::before {
  opacity: 1;
}

.site-logo {
  position: relative;
  z-index: 1;
  width: auto;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.site-logo img {
  width: auto;
  height: 42px;
  transform: scale(1.2);
  transform-origin: left center;
}

.site-nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  align-self: stretch;
  justify-self: center;
  transition: opacity 0.25s ease, transform 0.3s ease;
}

.site-nav-links li {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-nav-links a {
  position: relative;
  display: block;
  height: 100%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(25, 22, 19, 0.9);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.12s ease;
}

.site-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.18em;
  top: calc(50% + 0.76em);
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}

.site-nav-links a:hover::after,
.site-nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav-links a.is-over-image,
.site-bag.is-over-image,
.site-menu-button.is-over-image {
  color: rgba(255, 253, 248, 0.98);
  text-shadow: 0 1px 2px rgba(12, 10, 9, 0.34);
}

.site-nav-actions {
  position: relative;
  z-index: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 13px;
}

.site-shop-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(30, 27, 24, 0.82), rgba(30, 27, 24, 0.58));
  color: #fff;
  padding: 8px 18px;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  backdrop-filter: blur(18px) saturate(170%);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.07);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-shop-link::before {
  content: "";
  position: absolute;
  inset: -80% -20%;
  z-index: -1;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.28) 50%, transparent 62%);
  transform: translateX(-42%);
  transition: transform 0.5s ease;
}

.site-shop-link:hover {
  background: linear-gradient(135deg, rgba(48, 43, 39, 0.9), rgba(48, 43, 39, 0.68));
  color: #fff;
  box-shadow:
    0 13px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.site-nav.is-over-image .site-shop-link {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.14));
  color: #fff;
}

.site-nav.is-over-image .site-shop-link:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.2));
  color: #fff;
}

.site-shop-link:hover::before { transform: translateX(42%); }
.site-shop-link:active { transform: scale(0.98); }

.site-bag {
  position: relative;
  width: 34px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.site-bag-icon {
  position: relative;
  width: 18px;
  height: 17px;
  margin-top: 5px;
  border: 1.5px solid currentColor;
}

.site-bag-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -7px;
  width: 7px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.site-bag-count {
  position: absolute;
  right: -1px;
  top: 1px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.56rem;
  line-height: 1;
}

.site-bag.is-over-image .site-bag-count {
  background: var(--white);
  color: var(--ink);
}

.site-nav.is-compact {
  transform: translateY(-100%);
}

body.collection-filter-active .site-nav {
  transform: translateY(-100%);
  visibility: hidden;
}

.site-menu-button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.site-menu-lines,
.site-menu-lines::before,
.site-menu-lines::after {
  width: 20px;
  height: 1px;
  background: currentColor;
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-menu-lines {
  position: relative;
}

.site-menu-lines::before,
.site-menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.site-menu-lines::before { top: -6px; }
.site-menu-lines::after { top: 6px; }

.site-menu-button[aria-expanded="true"] .site-menu-lines {
  background: transparent;
}

.site-menu-button[aria-expanded="true"] .site-menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.site-menu-button[aria-expanded="true"] .site-menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.23em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 52px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.display-title,
.section-title,
.product-title,
.brand-wordmark {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.display-title {
  font-size: clamp(4rem, 8.4vw, 8.8rem);
}

.display-title em,
.section-title em {
  color: var(--accent);
  font-weight: 300;
}

.section-title {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.lede {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.8;
}

.button-primary,
.button-secondary,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 25px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.button-primary:hover {
  background: var(--accent-ink);
  border-color: var(--accent-ink);
}

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

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

.text-link {
  min-height: auto;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.page-shell {
  min-height: 100vh;
}

.hero-full {
  position: relative;
  min-height: min(86svh, 920px);
  padding: calc(var(--nav-height) + 70px) clamp(24px, 5vw, 76px) 72px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
  transform: scale(1.01);
}

.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 15, 13, 0.78) 0%, rgba(18, 15, 13, 0.38) 46%, rgba(18, 15, 13, 0.08) 74%), linear-gradient(0deg, rgba(18, 15, 13, 0.48), transparent 55%);
}

.hero-full-content {
  position: relative;
  z-index: 1;
  width: min(820px, 92%);
}

.hero-full .lede {
  color: rgba(255, 253, 248, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-full .button-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.hero-full .button-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.hero-full .liquid-glass-action {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.14));
  color: #fff;
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  backdrop-filter: blur(18px) saturate(170%);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.hero-full .liquid-glass-action::before {
  content: "";
  position: absolute;
  inset: -90% -20%;
  z-index: -1;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.28) 50%, transparent 62%);
  transform: translateX(-42%);
  transition: transform 0.5s ease;
}

.hero-full .liquid-glass-action:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
  color: #fff;
}

.hero-full .liquid-glass-action:hover::before {
  transform: translateX(42%);
}

.hero-full .text-link {
  color: var(--white);
  align-self: center;
}

.content-band {
  padding: clamp(54px, 6vw, 92px) clamp(24px, 5vw, 76px);
}

.content-band-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(38px, 5vw, 70px);
}

.section-note {
  max-width: 430px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.brands-directory {
  background: var(--paper);
}

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

.brand-portals .brand-portal:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  min-height: clamp(520px, 48vw, 720px);
}

.brand-portal {
  position: relative;
  min-height: clamp(500px, 58vw, 760px);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.brand-portal-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--object-position, center);
  transition: transform 0.8s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.brand-portal-placeholder,
.brand-hero-placeholder,
.brand-chapter-placeholder {
  display: grid;
  place-items: center;
  background: #819083;
}

.brand-portal-placeholder {
  position: absolute;
  inset: 0;
}

.brand-portal-placeholder span,
.brand-hero-placeholder span {
  color: rgba(255, 253, 248, 0.16);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 15vw, 13rem);
  line-height: 1;
}

.brand-portal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(17, 14, 12, 0.5), rgba(17, 14, 12, 0.02) 58%);
}

.brand-portal:hover .brand-portal-image {
  transform: scale(1.035);
}

.brand-portal-content {
  position: absolute;
  z-index: 2;
  inset: auto clamp(28px, 4vw, 58px) clamp(32px, 4vw, 58px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
}

.brand-portal-name {
  margin: 6px 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.1rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.95;
}

.brand-portal-desc {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  line-height: 1.65;
}

.brand-portal-arrow {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.brand-portal:hover .brand-portal-arrow {
  background: var(--white);
  color: var(--ink);
}

.quiet-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}

.quiet-intro-copy {
  padding-top: 8px;
}

.quiet-intro-copy p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.85;
}

.collection-filter-bar {
  position: sticky;
  z-index: 80;
  top: var(--nav-height);
  min-height: 70px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: rgba(247, 244, 238, 0.96);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: top 0.3s ease;
}

body.nav-is-hidden .collection-filter-bar,
body.collection-filter-active .collection-filter-bar {
  top: 0;
}

.filter-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-list::-webkit-scrollbar { display: none; }

.filter-button {
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--ink);
}

.filter-button:focus {
  outline: none;
  box-shadow: none;
}

.filter-button:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

.catalog-count {
  color: var(--ink-soft);
  font-size: 0.72rem;
  white-space: nowrap;
}

.filter-bag {
  flex: 0 0 auto;
  margin-right: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

body.nav-is-hidden .filter-bag {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px) clamp(16px, 2vw, 30px);
}

.product-card {
  position: relative;
  min-width: 0;
  color: inherit;
}

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

.product-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8e3db;
  contain: layout paint;
}

.product-card-media::before {
  content: "";
  position: absolute;
  inset: -12px;
  background: var(--card-backdrop) center / cover no-repeat;
  filter: blur(12px);
  opacity: 0.22;
  transform: scale(1.04);
}

.product-card-media-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
}

.product-card-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: var(--object-position, center);
  transform: scale(var(--card-zoom, 1));
  transform-origin: var(--object-position, center);
  transition: opacity 0.08s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(var(--card-zoom, 1));
}

.product-card-arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 253, 248, 0.9);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-card:hover .product-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

.product-card-gallery-controls,
.product-gallery-nav {
  position: absolute;
  z-index: 3;
  isolation: isolate;
  overflow: hidden;
  left: 50%;
  bottom: 14px;
  min-height: 38px;
  display: inline-grid;
  grid-template-columns: 36px auto 36px;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(30, 27, 24, 0.76), rgba(30, 27, 24, 0.46));
  color: #fff;
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  backdrop-filter: blur(18px) saturate(170%);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(255, 255, 255, 0.07);
}

.product-card-gallery-controls::before,
.product-gallery-nav::before {
  content: "";
  position: absolute;
  inset: -90% -20%;
  z-index: -1;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.24) 50%, transparent 62%);
  transform: translateX(-42%);
  transition: transform 0.5s ease;
}

.product-card-gallery-controls:hover::before,
.product-gallery-nav:hover::before {
  transform: translateX(42%);
}

.product-card-gallery-controls button,
.product-gallery-nav button {
  width: 36px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1rem;
  cursor: pointer;
}

.product-card-gallery-controls button:hover,
.product-gallery-nav button:hover {
  background: rgba(255, 255, 255, 0.14);
}

.product-card-gallery-controls button:focus-visible,
.product-gallery-nav button:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.9);
  outline-offset: -3px;
}

.product-card-gallery-controls span,
.product-gallery-nav span {
  min-width: 44px;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 7px rgba(0, 0, 0, 0.55);
}

.product-card-gallery-controls b,
.product-gallery-nav b {
  font-weight: inherit;
}

.product-card-copy {
  display: block;
  padding-top: 15px;
  color: inherit;
  text-decoration: none;
}

.product-card-brand {
  color: var(--accent-ink);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.product-card-name {
  margin: 7px 0 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
  line-height: 1.08;
}

.product-card-price {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.brand-hero {
  position: relative;
  min-height: 92svh;
  padding: calc(var(--nav-height) + 62px) clamp(24px, 5vw, 76px) 70px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.brand-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--object-position, center);
}

.brand-hero.is-split-campaign {
  background: var(--campaign-background, #9b9899);
}

.brand-hero.is-split-campaign .brand-hero-image {
  inset: 0 0 0 auto;
  width: min(62vw, 1120px);
  object-fit: contain;
  object-position: right bottom;
}

.brand-hero.is-split-campaign::after {
  background:
    linear-gradient(90deg, rgba(17, 14, 12, 0.88) 0%, rgba(17, 14, 12, 0.66) 39%, rgba(17, 14, 12, 0.08) 72%),
    linear-gradient(0deg, rgba(17, 14, 12, 0.5), transparent 52%);
}

.brand-hero-placeholder {
  position: absolute;
  inset: 0;
}

.brand-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 14, 12, 0.76), rgba(17, 14, 12, 0.16) 60%), linear-gradient(0deg, rgba(17, 14, 12, 0.58), transparent 55%);
}

.brand-hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.brand-wordmark {
  margin-top: 14px;
  font-size: clamp(5.2rem, 11.5vw, 12rem);
}

.brand-wordmark.has-logo {
  width: auto;
  font-size: 0;
}

.brand-wordmark.has-logo img {
  display: block;
  width: auto;
  max-width: min(70vw, 350px);
  height: clamp(78px, 8vw, 116px);
}

.brand-hero-tagline {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, 0.8);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.75;
}

.brand-chapter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: center;
}

.brand-chapter-image {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--paper-deep);
}

.brand-chapter-placeholder {
  aspect-ratio: 5 / 6;
  padding: 30px;
  color: rgba(255, 253, 248, 0.82);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-collection-empty {
  max-width: 680px;
  padding: 34px 0 4px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.brand-collection-empty p { margin: 0; }

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

.brand-chapter-copy p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.85;
}

.brand-values-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-value {
  padding: 38px clamp(22px, 3vw, 50px);
  border-right: 1px solid var(--line);
}

.brand-value:last-child { border-right: 0; }

.brand-value-number {
  margin-bottom: 48px;
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.brand-value-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.brand-value p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.story-hero {
  min-height: 78svh;
  display: grid;
  grid-template-columns: minmax(460px, 0.85fr) minmax(0, 1.15fr);
  padding-top: var(--nav-height);
  background: #1f1c19;
  color: var(--white);
}

.story-hero-copy {
  padding: clamp(54px, 6vw, 94px) clamp(28px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-hero .display-title {
  max-width: 650px;
  margin-top: 20px;
  font-size: clamp(4rem, 5.6vw, 6.2rem);
  line-height: 0.9;
}

.story-hero-image {
  min-height: 72svh;
  overflow: hidden;
}

.story-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.story-hero .lede {
  max-width: 540px;
  margin-top: 26px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 1rem;
  line-height: 1.7;
}

.story-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.story-principle {
  position: relative;
  min-height: 520px;
  padding: 0;
  display: grid;
  grid-template-rows: clamp(230px, 18vw, 340px) 1fr;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.story-principle-image {
  min-width: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.story-principle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.story-principle:hover .story-principle-image img {
  transform: scale(1.035);
}

.story-principle-copy {
  padding: 28px 30px 34px;
}

.story-principle-index {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  min-width: 42px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(25, 22, 19, 0.72);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.story-principle h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.story-principle p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.timeline {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 9vw, 140px);
}

.timeline-list {
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-year {
  color: var(--accent-ink);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.timeline-item h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
}

.timeline-item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.journal-lead {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 720px;
  background: #24201c;
  color: var(--white);
}

.journal-lead-image {
  overflow: hidden;
}

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

.journal-lead-image.is-product-shot,
.journal-card-image.is-product-shot {
  background: #fff;
}

.journal-lead-image.is-product-shot img,
.journal-card-image.is-product-shot img {
  object-fit: contain;
}

.journal-lead-copy {
  padding: clamp(48px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.journal-lead-copy p {
  color: rgba(255, 253, 248, 0.7);
  line-height: 1.8;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 62px);
}

.journal-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.journal-card:hover .journal-card-image img {
  transform: scale(1.035);
}

.journal-card-meta {
  margin-top: 18px;
  color: var(--accent-ink);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journal-card h3 {
  margin: 10px 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 2.7vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.journal-card p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(60px, 9vw, 150px);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 70px;
}

.contact-details {
  display: grid;
  gap: 24px;
}

.contact-detail-label {
  margin-bottom: 5px;
  color: var(--accent-ink);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.contact-detail-value {
  color: var(--ink-soft);
  line-height: 1.65;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
}

.form-field {
  display: grid;
  gap: 9px;
}

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

.form-field label {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 12px 0;
  outline: none;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--ink);
}

.contact-form-message {
  grid-column: 1 / -1;
  min-height: 20px;
  color: var(--accent-ink);
  font-size: 0.8rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
}

.faq-list details[open] summary::after { content: "-"; }

.faq-list details p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 28px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.product-detail {
  width: min(100%, 1660px);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 32px) clamp(20px, 4vw, 62px) clamp(52px, 6vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

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

.product-thumbnails {
  display: grid;
  align-content: start;
  gap: 12px;
}

.gallery-thumb {
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid transparent;
  background: var(--paper-deep);
  overflow: hidden;
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--ink);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: var(--thumb-position, center);
  transform: scale(var(--thumb-zoom, 1));
  transform-origin: var(--thumb-position, center);
}

.product-main-media {
  position: relative;
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: #f0ede7;
  overflow: hidden;
}

.product-main-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -24px;
  background: #f0ede7 var(--gallery-backdrop, none) center / cover no-repeat;
  filter: blur(18px) saturate(0.7);
  opacity: 0.24;
  transform: scale(1.05);
  pointer-events: none;
}

.product-main-media img {
  position: absolute;
  inset: 0;
  display: block;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: contain;
  object-position: var(--object-position, center);
  transform: scale(var(--gallery-zoom, 1));
  transform-origin: var(--object-position, center);
  transition: opacity 0.08s ease, transform 0.14s ease;
  cursor: pointer;
}

.product-main-media img:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: -5px;
}

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

.product-lightbox {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #514f4b;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.product-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.product-lightbox-toolbar,
.product-lightbox-nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
}

.product-lightbox-toolbar {
  min-height: 72px;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px 18px;
}

.product-lightbox-button,
.product-lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  color: #fff;
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.product-lightbox-button {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 500 1rem/1 "DM Sans", Arial, sans-serif;
  cursor: pointer;
}

.product-lightbox-button:hover,
.product-lightbox-nav button:hover {
  background: rgba(255, 255, 255, 0.24);
}

.product-lightbox-stage {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0 36px;
  touch-action: none;
  cursor: default;
}

.product-lightbox-frame {
  position: relative;
  width: min(calc(100vw - 72px), calc((100vh - 180px) * 4 / 3));
  max-width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #efebe4;
  cursor: default;
}

.product-lightbox-frame.is-zoomed {
  cursor: grab;
}

.product-lightbox-frame.is-dragging {
  cursor: grabbing;
}

.product-lightbox-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: var(--lightbox-position, center);
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
  transform: translate3d(var(--lightbox-x, 0), var(--lightbox-y, 0), 0) scale(var(--lightbox-zoom, 1));
  transition: transform 0.16s ease;
}

.product-lightbox-frame.is-dragging .product-lightbox-image {
  transition: none;
}

.product-lightbox-footer {
  min-height: 92px;
  padding: 12px 18px 20px;
  display: grid;
  place-items: center;
}

.product-lightbox-nav {
  overflow: hidden;
  border-radius: 999px;
  display: grid;
  grid-template-columns: 48px minmax(76px, auto) 48px;
}

.product-lightbox-nav button {
  width: 48px;
  height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.15rem;
  cursor: pointer;
}

.product-lightbox-count {
  min-width: 76px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.product-main-media .product-gallery-nav {
  bottom: 18px;
}

.product-gallery-nav i {
  font-style: normal;
}

.product-info {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
  padding-top: 12px;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-brand-mark {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  color: var(--accent-ink);
}

.product-brand-mark.has-logo {
  width: auto;
}

.product-brand-mark.has-logo img {
  display: block;
  width: auto;
  max-width: 170px;
  height: 48px;
}

.product-brand-mark.brand-celeste img,
.product-brand-mark.brand-indi-roots img {
  filter: brightness(0);
  opacity: 0.76;
}

.product-brand-mark.is-wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.product-title {
  margin-top: 18px;
  font-size: clamp(3.3rem, 5vw, 5.8rem);
}

.product-price {
  margin-top: 20px;
  font-size: 1rem;
}

.product-description {
  margin: 26px 0 32px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.option-group {
  margin-top: 26px;
}

.option-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.swatch-list,
.choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.swatch,
.choice-button {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.swatch {
  width: 42px;
  padding: 0;
  background: var(--swatch-color);
  box-shadow: inset 0 0 0 4px var(--paper);
}

.swatch.is-active,
.choice-button.is-active {
  border-color: var(--ink);
}

.purchase-row {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 12px;
  margin-top: 30px;
}

.product-purchase-row {
  grid-template-columns: 116px minmax(138px, 1fr) minmax(126px, 0.82fr);
}

.quantity-stepper {
  height: 54px;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  border: 1px solid var(--ink);
}

.quantity-stepper button {
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.quantity-value {
  text-align: center;
}

.add-to-bag,
.buy-now {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.add-to-bag {
  background: transparent;
  color: var(--ink);
}

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

.add-to-bag:hover {
  background: var(--paper-deep);
}

.buy-now:hover {
  background: var(--accent-ink);
  border-color: var(--accent-ink);
}

.product-purchase-row [hidden],
.product-service-note [hidden] {
  display: none !important;
}

.product-purchase-row button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.product-service-note {
  margin: 16px 0 28px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.6;
}

.product-accordions {
  border-top: 1px solid var(--line);
}

.product-accordions details {
  border-bottom: 1px solid var(--line);
}

.product-accordions summary {
  padding: 19px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  list-style: none;
  cursor: pointer;
}

.product-accordions summary::-webkit-details-marker { display: none; }
.product-accordions summary::after { content: "+"; }
.product-accordions details[open] summary::after { content: "-"; }

.product-accordions p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.product-dimensions > p { padding-bottom: 10px; }

.dimension-unit-switch {
  display: flex;
  gap: 7px;
  padding: 0 0 20px;
}

.dimension-unit-switch button {
  min-width: 44px;
  height: 34px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: transparent;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.dimension-unit-switch button.is-active {
  border-color: var(--ink);
  color: var(--ink);
}

.product-dimension-option .dimension-unit-switch { padding-bottom: 0; }

.related-products {
  background: var(--paper-deep);
  padding-top: clamp(52px, 6vw, 82px);
  padding-bottom: clamp(60px, 7vw, 96px);
}

.cart-page {
  min-height: 74svh;
  padding: calc(var(--nav-height) + 64px) clamp(24px, 5vw, 76px) clamp(70px, 8vw, 110px);
}

.cart-heading-row {
  width: min(100%, var(--max));
  margin: 20px auto 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.cart-page > .eyebrow,
.cart-layout {
  width: min(100%, var(--max));
  margin-inline: auto;
}

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

.cart-empty {
  padding: 44px 0;
  color: var(--ink-soft);
}

.cart-item {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 116px;
  height: 132px;
  object-fit: contain;
  background: var(--paper-deep);
}

.cart-item-brand {
  color: var(--accent-ink);
  font-size: 0.61rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cart-item-name {
  margin: 6px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.cart-item-meta {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.cart-remove {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  padding: 0 0 4px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.toast {
  position: fixed;
  z-index: 1200;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100vw - 48px));
  padding: 15px 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.8rem;
  line-height: 1.5;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 80px clamp(24px, 5vw, 76px) 34px;
  background: #1c1916;
  color: var(--paper);
}

.footer-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.7fr);
  gap: clamp(36px, 6vw, 90px);
}

.footer-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.92;
}

.footer-intro {
  max-width: 420px;
  margin-top: 22px;
  color: rgba(247, 244, 238, 0.58);
  line-height: 1.75;
}

.footer-heading {
  margin-bottom: 22px;
  color: rgba(247, 244, 238, 0.42);
  font-size: 0.62rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li { margin-top: 13px; }

.footer-links a {
  color: rgba(247, 244, 238, 0.75);
  font-size: 0.82rem;
}

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

.footer-bottom {
  width: min(100%, var(--max));
  margin: 70px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 244, 238, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(247, 244, 238, 0.38);
  font-size: 0.68rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-hero {
  padding: calc(var(--nav-height) + 88px) clamp(24px, 5vw, 76px) 78px;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.legal-hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 1050px;
  margin: 20px 0 30px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 8vw, 8.2rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.legal-hero h1 em {
  color: var(--accent);
  font-weight: 300;
}

.legal-effective {
  margin-bottom: 14px;
  color: var(--accent-ink);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-layout {
  width: min(calc(100% - clamp(48px, 10vw, 152px)), var(--max));
  margin: 0 auto;
  padding: 84px 0 112px;
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 790px);
  justify-content: space-between;
  gap: clamp(54px, 8vw, 120px);
}

.legal-index {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
  align-self: start;
  display: grid;
  gap: 12px;
}

.legal-index-title {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-index a {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.legal-index a:hover { color: var(--ink); }

.legal-document section {
  scroll-margin-top: calc(var(--nav-height) + 24px);
  padding: 0 0 54px;
  border-bottom: 1px solid var(--line);
}

.legal-document section + section { padding-top: 54px; }

.legal-document h2 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.legal-document p,
.legal-document li,
.legal-document address {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.8;
}

.legal-document p { margin: 0 0 18px; }

.legal-document ul,
.legal-document ol {
  margin: 0 0 22px;
  padding-left: 1.35rem;
}

.legal-document li + li { margin-top: 8px; }

.legal-document strong {
  color: var(--ink);
  font-weight: 500;
}

.legal-document a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-document address {
  margin: 0 0 22px;
  font-style: normal;
}

.legal-contact-line {
  margin: -4px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

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

@media (max-width: 980px) {
  .site-nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 18px;
    padding: 0 22px;
  }

  .site-logo img { height: 34px; }
  .site-nav-links {
    grid-column: auto;
    grid-row: auto;
    flex-wrap: nowrap;
    gap: clamp(10px, 1.8vw, 18px);
    width: 100%;
  }
  .site-nav-links a { font-size: 0.58rem; letter-spacing: 0.16em; }
  .site-shop-link {
    min-height: 32px;
    padding: 7px 14px;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .story-principles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-full {
    min-height: 82svh;
    padding-bottom: 44px;
  }

  .hero-full::after {
    background: linear-gradient(0deg, rgba(18, 15, 13, 0.78), rgba(18, 15, 13, 0.08) 72%);
  }

  .brand-portals { grid-template-columns: 1fr; }
  .brand-portals .brand-portal:last-child:nth-child(odd) { grid-column: auto; }
  .brand-portal { min-height: 600px; }
  .quiet-intro,
  .brand-chapter,
  .timeline,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-values-strip { grid-template-columns: 1fr; }
  .brand-value { border-right: 0; border-bottom: 1px solid var(--line); }
  .brand-value:last-child { border-bottom: 0; }
  .story-hero { grid-template-columns: 1fr; }
  .story-hero-copy { min-height: 52svh; }
  .story-hero-image { min-height: 48svh; }
  .journal-lead { grid-template-columns: 1fr; }
  .journal-lead-image { min-height: 55svh; }
  .journal-grid { grid-template-columns: 1fr; gap: 54px; }
  .product-detail { grid-template-columns: 1fr; }
  .product-info { position: static; }
  .product-main-media { min-height: 0; height: auto; }
  .cart-item { grid-template-columns: 96px minmax(0, 1fr) auto; }
  .cart-item img { width: 96px; height: 112px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .legal-index {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 34px;
    border-bottom: 1px solid var(--line);
  }
  .legal-index-title { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  :root { --nav-height: 76px; }

  .site-nav {
    grid-template-columns: auto auto;
    row-gap: 6px;
    padding: 0 18px 8px;
  }

  .site-nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 4px;
    align-self: start;
    height: auto;
  }

  .site-nav-links li,
  .site-nav-links a {
    height: auto;
  }

  .site-nav-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .site-shop-link { padding-inline: 12px; }
  .site-menu-button { display: none; }
}

@media (max-width: 620px) {
  .display-title { font-size: clamp(3.5rem, 18vw, 5.4rem); }
  body[data-page="brands"] .hero-full .display-title,
  body[data-page="contact"] .hero-full .display-title {
    max-width: 350px;
    font-size: clamp(3.15rem, 14vw, 3.7rem);
    line-height: 0.88;
  }
  body[data-page="collections"] .hero-full .display-title {
    max-width: 330px;
    font-size: clamp(3.25rem, 14.5vw, 4rem);
    line-height: 0.9;
  }
  body[data-page="collections"] .hero-full-content { width: 100%; }
  body[data-page="collections"] .hero-full::after {
    background:
      linear-gradient(90deg, rgba(18, 15, 13, 0.72) 0%, rgba(18, 15, 13, 0.26) 72%, rgba(18, 15, 13, 0.06) 100%),
      linear-gradient(0deg, rgba(18, 15, 13, 0.78), rgba(18, 15, 13, 0.08) 72%);
  }
  .section-title { font-size: clamp(2.7rem, 14vw, 4.3rem); }
  .content-band { padding-inline: 20px; }
  .legal-hero { padding: calc(var(--nav-height) + 54px) 20px 54px; }
  .legal-hero h1 { font-size: clamp(3.4rem, 16vw, 4.8rem); }
  .legal-layout {
    width: calc(100% - 40px);
    padding: 58px 0 80px;
  }
  .legal-index { grid-template-columns: 1fr; }
  .legal-index-title { grid-column: auto; }
  .legal-document section { padding-bottom: 42px; }
  .legal-document section + section { padding-top: 42px; }
  .hero-full { padding-inline: 20px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button-primary,
  .hero-actions .button-secondary { width: 100%; }
  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .brand-portal { min-height: 510px; }
  .brand-portal-content { grid-template-columns: 1fr; }
  .brand-portal-arrow { display: none; }
  .brand-portal-desc { font-size: 0.86rem; }
  .collection-filter-bar {
    gap: 12px;
    padding: 0 14px;
  }
  .filter-list {
    flex: 0 1 240px;
    min-width: 0;
  }
  .filter-button { padding-inline: 15px; }
  .product-grid { gap: 34px 12px; }
  .product-card-name { font-size: 1.45rem; }
  .product-card-gallery-controls {
    bottom: 9px;
    min-height: 34px;
    grid-template-columns: 32px auto 32px;
  }
  .product-card-gallery-controls button {
    width: 32px;
    height: 34px;
  }
  .brand-hero { min-height: 84svh; padding-inline: 20px; }
  .brand-hero.is-split-campaign .brand-hero-image {
    inset: 0;
    width: 100%;
    object-fit: cover;
    object-position: center 56%;
  }
  .brand-wordmark { font-size: clamp(4.7rem, 24vw, 7.2rem); }
  .brand-wordmark.has-logo img { height: 82px; }
  .brand-chapter { gap: 38px; }
  .story-principles { grid-template-columns: 1fr; }
  .story-principle { min-height: 470px; }
  .timeline-item { grid-template-columns: 62px 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .form-field.is-wide { grid-column: auto; }
  .product-detail { padding-inline: 14px; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-thumbnails { grid-template-columns: repeat(3, 1fr); grid-row: 2; }
  .product-main-media { height: auto; }
  .product-lightbox-toolbar { min-height: 64px; padding: 10px 12px; }
  .product-lightbox-button { width: 40px; height: 40px; }
  .product-lightbox-stage { padding-inline: 12px; }
  .product-lightbox-frame {
    width: min(calc(100vw - 24px), calc((100svh - 164px) * 4 / 3));
  }
  .product-lightbox-footer { min-height: 80px; padding-bottom: 14px; }
  .purchase-row { grid-template-columns: 100px 1fr; }
  .product-purchase-row { grid-template-columns: 100px 1fr; }
  .product-purchase-row .buy-now { grid-column: 1 / -1; }
  .cart-heading-row { align-items: flex-start; flex-direction: column; }
  .cart-item { grid-template-columns: 82px 1fr; }
  .cart-item img { width: 82px; height: 96px; }
  .cart-remove { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
