:root {
  --ink: #171513;
  --coal: #2c2925;
  --smoke: #6d665e;
  --paper: #f7f3ec;
  --porcelain: #fffdf8;
  --silver: #c9c2b6;
  --moss: #4e5a43;
  --oxblood: #681d23;
  --blush: #d5ada6;
  --line: rgba(23, 21, 19, 0.14);
  --shadow: 0 24px 70px rgba(23, 21, 19, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--porcelain);
  padding: 12px 16px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
  background: rgba(23, 21, 19, 0.9);
  color: var(--porcelain);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
}

.brand-sub {
  color: rgba(255, 253, 248, 0.68);
  font-size: 11px;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.mobile-menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.78);
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a[aria-current="page"],
.nav-links a:hover,
.mobile-menu a[aria-current="page"],
.mobile-menu a:hover {
  background: rgba(255, 253, 248, 0.1);
  color: var(--porcelain);
}

.nav-action,
.menu-toggle,
.button,
.filter-button {
  min-height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  color: inherit;
  background: transparent;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-action:hover,
.button:hover,
.filter-button:hover {
  transform: translateY(-1px);
}

.nav-action {
  color: var(--porcelain);
}

.menu-toggle {
  display: none;
  color: var(--porcelain);
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
}

.mobile-menu.is-open {
  display: grid;
  gap: 4px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 18px;
}

.hero {
  min-height: calc(86dvh - 76px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--porcelain);
  background: var(--ink);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 21, 19, 0.82), rgba(23, 21, 19, 0.38) 48%, rgba(23, 21, 19, 0.18)),
    linear-gradient(0deg, rgba(23, 21, 19, 0.78), rgba(23, 21, 19, 0.06) 42%);
  z-index: 1;
}

.hero img,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 52px;
  display: grid;
  gap: 34px;
}

.eyebrow {
  color: var(--oxblood);
  font-weight: 700;
}

.hero .eyebrow,
.page-hero .eyebrow,
.dark-band .eyebrow {
  color: var(--blush);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.04;
  margin: 0;
  font-weight: 700;
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  font-size: clamp(52px, 9vw, 112px);
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
}

h3 {
  font-size: clamp(24px, 3vw, 36px);
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 630px;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border-color: var(--line);
  color: var(--ink);
  background: var(--porcelain);
}

.button.primary {
  border-color: var(--oxblood);
  background: var(--oxblood);
  color: var(--porcelain);
}

.button.dark {
  border-color: rgba(255, 253, 248, 0.42);
  color: var(--porcelain);
  background: rgba(255, 253, 248, 0.08);
}

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

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

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 253, 248, 0.22);
  border: 1px solid rgba(255, 253, 248, 0.22);
}

.hero-strip article {
  padding: 18px;
  background: rgba(23, 21, 19, 0.32);
}

.hero-strip strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 20px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.section.compact {
  padding: 58px 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.section-header p {
  color: var(--smoke);
  font-size: 18px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr;
  gap: 22px;
  align-items: stretch;
}

.image-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--silver);
}

.image-panel img,
.tile-image img,
.product-card img,
.look-card img,
.story-image img {
  height: 100%;
  object-fit: cover;
}

.image-panel .panel-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
}

.panel-caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
}

.edit-stack {
  display: grid;
  gap: 22px;
}

.edit-card {
  display: grid;
  grid-template-columns: 152px 1fr;
  gap: 18px;
  align-items: stretch;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.edit-card:first-child {
  border-top: 0;
  padding-top: 0;
}

.tile-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--silver);
}

.edit-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.edit-card p,
.product-card p,
.look-card p,
.story-copy p,
.contact-copy p,
.field-note {
  color: var(--smoke);
}

.dark-band {
  background: var(--ink);
  color: var(--porcelain);
}

.dark-band .section-header p,
.dark-band .feature-list p {
  color: rgba(255, 253, 248, 0.72);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 253, 248, 0.16);
  border: 1px solid rgba(255, 253, 248, 0.16);
}

.feature-list article {
  min-height: 230px;
  padding: 26px;
  background: var(--ink);
}

.feature-list strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 28px;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  background: var(--porcelain);
  border: 1px solid var(--line);
}

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

.product-card picture,
.product-card > img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--silver);
}

.product-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--smoke);
  font-size: 14px;
}

.product-card h3 {
  font-size: 24px;
}

.price {
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-button {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

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

.page-hero {
  min-height: 480px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--porcelain);
  background: var(--ink);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 54px;
}

.page-hero-content p {
  max-width: 640px;
  margin-top: 18px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 20px;
}

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

.look-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.72fr);
  min-height: 440px;
  border: 1px solid var(--line);
  background: var(--porcelain);
}

.look-card:nth-child(3n) {
  grid-column: 1 / -1;
}

.look-card picture,
.look-card > img {
  min-height: 360px;
  overflow: hidden;
}

.look-card-body {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 30px;
}

.look-number {
  color: var(--oxblood);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.story-split {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 42px;
  align-items: center;
}

.story-image {
  min-height: 560px;
  overflow: hidden;
  background: var(--silver);
}

.story-copy {
  display: grid;
  gap: 22px;
}

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

.proof-item {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 22px;
}

.contact-card,
.contact-form {
  border: 1px solid var(--line);
  background: var(--porcelain);
  padding: 26px;
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 26px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--porcelain);
  color: var(--ink);
  padding: 12px 14px;
  border-radius: 0;
}

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

.site-footer {
  background: var(--ink);
  color: var(--porcelain);
}

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.footer-meta {
  color: rgba(255, 253, 248, 0.68);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 320ms ease, transform 320ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

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

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links,
  .nav-action {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .hero-strip,
  .section-header,
  .editorial-grid,
  .feature-list,
  .story-split,
  .contact-layout,
  .proof-grid {
    grid-template-columns: 1fr;
  }

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

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

  .look-card:nth-child(3n) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    width: min(1180px, calc(100% - 24px));
    min-height: 68px;
  }

  .brand-sub {
    display: none;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .section {
    width: min(1180px, calc(100% - 24px));
    padding: 58px 0;
  }

  .hero {
    min-height: calc(78dvh - 68px);
  }

  .hero-content,
  .page-hero-content {
    width: min(1180px, calc(100% - 24px));
    padding-bottom: 38px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 31px;
    line-height: 1.08;
  }

  .hero-copy,
  .page-hero-content p {
    font-size: 17px;
  }

  .hero-strip {
    display: none;
  }

  .edit-card {
    grid-template-columns: 1fr;
  }

  .tile-image {
    aspect-ratio: 16 / 10;
  }

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

  .image-panel,
  .story-image {
    min-height: 420px;
  }

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