:root {
  --ink: #15130f;
  --ink-soft: #2b2923;
  --muted: #6f685e;
  --canvas: #f8f3eb;
  --paper: #eee5d8;
  --chalk: #fffdf8;
  --line: rgba(21, 19, 15, 0.14);
  --line-strong: rgba(21, 19, 15, 0.28);
  --gold: #b98a43;
  --gold-soft: #e0bf83;
  --sage: #2f413a;
  --sage-light: #728272;
  --clay: #a55b43;
  --black: #0d0c09;
  --shadow: 0 28px 80px rgba(17, 14, 9, 0.18);
  --radius: 6px;
  --max: 1240px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(185, 138, 67, 0.65);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 243, 235, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 5px;
  box-shadow: 0 12px 30px rgba(13, 12, 9, 0.18);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand-sub {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-open .nav-toggle span {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::before {
  opacity: 0;
}

.nav-open .nav-toggle span::after {
  transform: translateY(-2px) rotate(-90deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 27px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  content: "";
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
}

.nav-cta::after {
  display: none;
}

.main {
  min-height: 70vh;
}

.eyebrow,
.card-kicker,
.product-meta,
.small-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
}

.display {
  overflow-wrap: anywhere;
}

p {
  margin: 0;
}

.hero {
  background: var(--black);
  color: var(--chalk);
}

.hero-inner {
  width: min(100%, 1600px);
  min-height: calc(100dvh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(410px, 0.47fr) minmax(0, 0.53fr);
}

.hero-content {
  min-width: 0;
  padding: clamp(44px, 5vw, 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(3rem, 5.8vw, 6.4rem);
}

.hero-lede {
  max-width: 590px;
  color: rgba(255, 253, 248, 0.75);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions,
.section-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--chalk);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.light {
  border-color: rgba(255, 253, 248, 0.78);
  background: var(--chalk);
  color: var(--ink);
}

.button.outline-light {
  border-color: rgba(255, 253, 248, 0.35);
  background: transparent;
  color: var(--chalk);
}

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

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

.hero-media {
  position: relative;
  min-height: calc(100dvh - 76px);
  overflow: hidden;
  background: #211c16;
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 12, 9, 0.48), transparent 34%),
    linear-gradient(0deg, rgba(13, 12, 9, 0.45), transparent 42%);
  content: "";
}

.hero-note {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 2;
  width: min(360px, calc(100% - 64px));
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.25);
  background: rgba(13, 12, 9, 0.56);
  color: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(16px);
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--chalk);
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 500;
}

.hero-meta {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-inline: 1px solid var(--line);
  background: var(--canvas);
}

.hero-meta div {
  padding: 28px 32px;
  border-right: 1px solid var(--line);
}

.hero-meta div:last-child {
  border-right: 0;
}

.meta-label {
  display: block;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.meta-value {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.36rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.section {
  padding: 96px 0;
}

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

.section.dark {
  background: var(--ink);
  color: var(--chalk);
}

.section.paper {
  background: var(--paper);
}

.section.sage {
  background: var(--sage);
  color: var(--chalk);
}

.section-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.52fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.page-title h1 {
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

.section-heading p,
.page-title p,
.copy-block p,
.card p,
.product p,
.collection-copy p,
.step p,
.contact-card p,
.form-note {
  color: var(--muted);
  font-size: 1.02rem;
}

.dark .section-heading p,
.sage .section-heading p,
.dark .muted,
.sage .muted {
  color: rgba(255, 253, 248, 0.72);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  align-items: stretch;
}

.editorial-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--chalk);
}

.editorial-card.secondary {
  min-height: 300px;
}

.editorial-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

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

.editorial-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 12, 9, 0.78), rgba(13, 12, 9, 0.1) 58%);
  content: "";
}

.editorial-copy {
  position: absolute;
  inset: auto 28px 28px;
  z-index: 2;
  max-width: 560px;
}

.editorial-copy h3 {
  margin-top: 10px;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
}

.editorial-copy p {
  margin-top: 12px;
  color: rgba(255, 253, 248, 0.76);
}

.stack {
  display: grid;
  gap: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 58px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.image-frame {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9cfc1;
  box-shadow: var(--shadow);
}

.image-frame.short {
  min-height: 390px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.image-frame img.object-top {
  object-position: center top;
}

.image-frame::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 253, 248, 0.44);
  content: "";
  pointer-events: none;
}

.copy-block h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
}

.copy-block p {
  margin-top: 20px;
  line-height: 1.75;
}

.copy-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.copy-list li {
  position: relative;
  padding: 18px 0 18px 24px;
  border-bottom: 1px solid var(--line);
}

.copy-list li::before {
  position: absolute;
  left: 0;
  top: 28px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  content: "";
}

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--chalk);
}

.card-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ded3c5;
}

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

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.card:hover img {
  transform: scale(1.04);
}

.card-body {
  padding: 24px;
}

.card h3 {
  margin-top: 10px;
  font-size: 1.58rem;
}

.card p {
  margin-top: 12px;
}

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

.product {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--chalk);
}

.product-image {
  aspect-ratio: 4 / 5;
  background: #ded3c5;
  overflow: hidden;
}

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

.product-body {
  padding: 20px;
}

.product h3 {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.3;
}

.product p {
  margin-top: 8px;
  font-size: 0.94rem;
}

.price {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.page-hero {
  min-height: 410px;
  display: grid;
  align-items: end;
  padding: 96px 0 62px;
  background:
    linear-gradient(90deg, rgba(13, 12, 9, 0.82), rgba(13, 12, 9, 0.36)),
    var(--page-image) center / cover no-repeat;
  color: var(--chalk);
}

.collections-hero {
  --page-image: url("../images/neutral-rack.jpg");
}

.lookbook-hero {
  --page-image: url("../images/hero-editorial.jpg");
}

.process-hero {
  --page-image: url("../images/studio-rack.jpg");
}

.contact-hero {
  --page-image: url("../images/accessory-table.jpg");
}

.page-title {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  max-width: 880px;
}

.page-title p {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 253, 248, 0.78);
}

.collection-list {
  display: grid;
  gap: 34px;
}

.collection-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 0.52fr);
  gap: 32px;
  align-items: stretch;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.collection-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.collection-row .image-frame {
  min-height: 360px;
}

.collection-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collection-copy h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.collection-copy p {
  margin-top: 18px;
}

.detail-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.detail-table th,
.detail-table td {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.detail-table th {
  width: 150px;
  color: var(--ink-soft);
  font-weight: 900;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.lookbook-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--chalk);
}

.lookbook-tile.tall {
  min-height: 740px;
}

.lookbook-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lookbook-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 12, 9, 0.75), rgba(13, 12, 9, 0.05));
  content: "";
}

.lookbook-caption {
  position: absolute;
  inset: auto 26px 26px;
  z-index: 2;
  max-width: 520px;
}

.lookbook-caption h2,
.lookbook-caption h3 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
}

.lookbook-caption p {
  margin-top: 10px;
  color: rgba(255, 253, 248, 0.78);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}

.step {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--chalk);
  counter-increment: step;
}

.step::before {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
  content: "0" counter(step);
}

.step h2,
.step h3 {
  font-size: 1.45rem;
}

.step p {
  margin-top: 12px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

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

.contact-card .display {
  font-size: clamp(1.65rem, 3.2vw, 2.75rem);
}

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

.contact-card a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(185, 138, 67, 0.5);
  text-underline-offset: 4px;
}

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

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

.field label {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.form-note {
  font-size: 0.92rem;
}

.site-footer {
  background: var(--black);
  color: rgba(255, 253, 248, 0.76);
  padding: 56px 0 28px;
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--chalk);
}

.footer-logo img {
  width: 42px;
  height: 42px;
}

.footer-logo strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.footer-logo > span > span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

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

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

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

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

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 14px 16px 24px;
    background: rgba(248, 243, 235, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 14px;
  }

  .hero-inner,
  .section-heading,
  .editorial-grid,
  .split,
  .split.reverse,
  .collection-row,
  .lookbook-grid,
  .contact-panel,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 62vh;
    order: -1;
  }

  .hero-content {
    padding: 48px 24px 56px;
  }

  .hero-meta,
  .cards,
  .product-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .header-inner {
    width: min(100% - 24px, var(--max));
  }

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

  .brand-name {
    font-size: 0.96rem;
    letter-spacing: 0.06em;
  }

  .brand-sub {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

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

  .hero-note {
    display: none;
  }

  .hero-actions,
  .section-actions,
  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    padding-inline: 16px;
  }

  .hero-meta,
  .cards,
  .product-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-meta div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-meta div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

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

  .section-heading {
    gap: 22px;
    margin-bottom: 30px;
  }

  .editorial-card {
    min-height: 460px;
  }

  .editorial-card.secondary,
  .lookbook-tile {
    min-height: 340px;
  }

  .lookbook-tile.tall {
    min-height: 520px;
  }

  .image-frame {
    min-height: 360px;
  }

  .image-frame.short {
    min-height: 300px;
  }

  .card-body,
  .product-body,
  .step,
  .contact-card,
  .form-card {
    padding: 22px;
  }

  .detail-table th,
  .detail-table td {
    display: block;
    width: 100%;
  }

  .detail-table td {
    padding-top: 0;
  }

  .footer-bottom {
    display: grid;
  }
}
