:root {
  --ink: #1d1c1a;
  --paper: #f4f0e8;
  --paper-soft: #faf8f3;
  --orange: #c7622d;
  --orange-dark: #9f4720;
  --blue: #314965;
  --line: rgba(29, 28, 26, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

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

button, a { font: inherit; }

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

button { color: inherit; }

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
}

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

.announcement {
  padding: 0.58rem var(--page-pad);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  background: var(--ink);
  color: var(--paper);
}

.site-header {
  min-height: 5.1rem;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 240, 232, 0.93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 4.35rem;
  border-color: var(--line);
}

.wordmark {
  width: max-content;
  font-size: clamp(1.42rem, 2vw, 1.85rem);
  font-weight: 750;
  letter-spacing: -0.07em;
}

.site-nav {
  grid-column: 2 / 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav a:not(.nav-cta) { position: relative; }

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  padding: 0.82rem 1.1rem;
  border: 1px solid var(--ink);
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible { background: var(--ink); color: var(--paper); }

.menu-button { display: none; }

.hero {
  min-height: calc(100svh - 7.4rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(26rem, 1.08fr);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 7.25rem) clamp(3rem, 6vw, 6rem) var(--page-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 6.4vw, 7.8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero h1 em,
.lookbook-heading h2 em { color: var(--orange); font-weight: 400; }

.hero-intro {
  max-width: 33rem;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.6vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.button {
  min-height: 3.35rem;
  padding: 0.9rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.74rem;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.button-dark:hover,
.button-dark:focus-visible { background: var(--orange); border-color: var(--orange); }

.button-light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.button-light:hover,
.button-light:focus-visible { background: var(--orange); color: white; border-color: var(--orange); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.86rem;
}

.text-link span { font-size: 1.1rem; transition: transform 180ms ease; }
.text-link:hover span { transform: translate(0.2rem, 0.2rem); }

.hero-notes {
  margin-top: auto;
  padding-top: clamp(3rem, 6vw, 6rem);
  display: flex;
  gap: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-notes span {
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 1px solid var(--line);
}

.hero-notes span:last-child { border: 0; margin: 0; padding: 0; }

.hero-visual {
  min-height: 42rem;
  position: relative;
  overflow: hidden;
  background: var(--blue);
}

.hero-frame { height: 100%; margin: 0; position: relative; }

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 29, 0.38), transparent 42%);
  pointer-events: none;
}

.hero-frame figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(1.2rem, 3vw, 3rem);
  right: clamp(1.2rem, 3vw, 3rem);
  bottom: 1.8rem;
  display: flex;
  justify-content: space-between;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.hero-stamp {
  position: absolute;
  right: -1.4rem;
  top: 2.7rem;
  width: 5.5rem;
  height: 5.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: -0.08em;
}

.manifesto {
  padding: clamp(5rem, 11vw, 11rem) var(--page-pad);
  display: grid;
  grid-template-columns: minmax(10rem, 0.7fr) minmax(20rem, 1.8fr) minmax(17rem, 0.8fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 6rem);
  background: var(--paper-soft);
}

.manifesto h2 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 6.3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
}

.manifesto > p:last-child {
  margin: 0;
  padding-top: 0.65rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.7;
}

.collection {
  padding: clamp(4.5rem, 8vw, 8rem) var(--page-pad) clamp(6rem, 10vw, 10rem);
  background: var(--ink);
  color: var(--paper);
}

.section-heading {
  margin-bottom: clamp(3rem, 6vw, 6rem);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.section-heading h2,
.detail-copy h2,
.lookbook-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-heading > p {
  max-width: 18rem;
  margin: 0 0 0.65rem;
  color: rgba(244, 240, 232, 0.72);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(4rem, 9vw, 10rem) clamp(1.5rem, 4vw, 4.5rem);
  align-items: start;
}

.product-card:nth-child(even) { margin-top: clamp(4rem, 10vw, 10rem); }

.product-media {
  width: 100%;
  height: clamp(27rem, 54vw, 56rem);
  padding: 0;
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  background: #ddd;
  cursor: zoom-in;
}

.product-card:not(.product-card-tall) .product-media { height: clamp(24rem, 46vw, 48rem); }

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.product-media:hover img,
.product-media:focus-visible img { transform: scale(1.035); }

.view-mark {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 240, 232, 0.93);
  color: var(--ink);
  font-size: 1.45rem;
  transition: transform 180ms ease, background 180ms ease;
}

.product-media:hover .view-mark { transform: rotate(90deg); background: var(--orange); color: white; }

.product-info {
  padding-top: 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  border-top: 1px solid rgba(244, 240, 232, 0.36);
}

.product-info h3 { margin: 0; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.product-info p { margin: 0.25rem 0 0; color: rgba(244, 240, 232, 0.62); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; }

.product-link {
  padding: 0.35rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--paper);
  font-size: 0.78rem;
  cursor: pointer;
}

.detail-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(24rem, 0.9fr);
  background: var(--paper);
}

.detail-image { min-height: 48rem; position: relative; overflow: hidden; }
.detail-image img { width: 100%; height: 100%; object-fit: cover; }

.image-label {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 0.65rem 0.85rem;
  background: rgba(250, 248, 243, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
}

.detail-copy {
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 7vw, 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-copy h2 { max-width: 12ch; }

.detail-lead {
  max-width: 31rem;
  margin: 2rem 0 3.25rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.65;
}

.detail-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }

.detail-list li {
  padding: 1.35rem 0;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.detail-list li > span { color: var(--orange); font-size: 0.72rem; letter-spacing: 0.14em; }
.detail-list strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 400; }
.detail-list p { margin: 0.25rem 0 0; color: rgba(29, 28, 26, 0.68); }

.lookbook {
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
  background: var(--paper-soft);
}

.lookbook-heading {
  margin-bottom: clamp(3rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 2rem;
}

.lookbook-heading h2 { grid-column: 2; max-width: 12ch; }
.lookbook-heading .section-kicker { grid-row: 1; grid-column: 1; }

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.58fr 0.76fr;
  align-items: start;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.lookbook-grid figure { margin: 0; }
.lookbook-main { margin-top: 6rem !important; }
.lookbook-small { margin-top: 0 !important; }
.lookbook-flat { margin-top: 13rem !important; }
.lookbook-main img { aspect-ratio: 2 / 2.8; object-fit: cover; }
.lookbook-small img { aspect-ratio: 2 / 3; object-fit: cover; }
.lookbook-flat img { aspect-ratio: 1 / 1; object-fit: cover; }
.lookbook-grid figcaption { margin-top: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem; }

.closing {
  min-height: 36rem;
  padding: 5rem var(--page-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--orange-dark);
  color: white;
}

.closing-wordmark {
  display: block;
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 750;
  letter-spacing: -0.075em;
  line-height: 0.95;
}
.closing p { margin: -1rem 0 2rem; font-family: var(--serif); font-size: 1.25rem; font-style: italic; }

.site-footer {
  padding: 4rem var(--page-pad) 2rem;
  background: var(--ink);
  color: var(--paper);
}

.footer-wordmark { display: block; font-size: clamp(2.8rem, 7vw, 7.5rem); font-weight: 750; letter-spacing: -0.075em; line-height: 0.9; }
.site-footer > p { margin: 1.5rem 0 5rem; color: rgba(244, 240, 232, 0.64); }
.footer-meta { padding-top: 1rem; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(244, 240, 232, 0.25); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; }

.product-dialog {
  width: min(72rem, calc(100% - 2rem));
  max-height: calc(100dvh - 2rem);
  margin: auto;
  padding: 0;
  border: 0;
  background: var(--paper-soft);
  color: var(--ink);
  box-shadow: 0 1.5rem 6rem rgba(0, 0, 0, 0.25);
}

.product-dialog::backdrop { background: rgba(15, 14, 13, 0.74); backdrop-filter: blur(5px); }

.dialog-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 39rem; }
.dialog-gallery { padding: 1rem; background: #ded9d0; }
.dialog-gallery > img { width: 100%; height: 33rem; object-fit: cover; }
.dialog-thumbs { margin-top: 0.75rem; display: flex; gap: 0.65rem; }
.dialog-thumb { width: 3.5rem; height: 4.3rem; padding: 0; border: 1px solid transparent; background: transparent; cursor: pointer; opacity: 0.62; }
.dialog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dialog-thumb.is-active { border-color: var(--ink); opacity: 1; }

.dialog-copy { padding: clamp(3rem, 6vw, 6rem); display: flex; flex-direction: column; justify-content: center; }
.dialog-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 400; line-height: 1; letter-spacing: -0.05em; }
.dialog-copy > p:not(.section-kicker) { margin: 1.5rem 0 2rem; font-family: var(--serif); font-size: 1.12rem; line-height: 1.65; }
.dialog-copy dl { margin: 0 0 2.25rem; border-top: 1px solid var(--line); }
.dialog-copy dl div { padding: 0.8rem 0; display: grid; grid-template-columns: 7.5rem 1fr; border-bottom: 1px solid var(--line); }
.dialog-copy dt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; }
.dialog-copy dd { margin: 0; }

.dialog-close {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper-soft);
  font-size: 1.45rem;
  cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(2rem); transition: opacity 750ms ease, transform 750ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }

  .menu-button {
    width: 2.7rem;
    height: 2.7rem;
    padding: 0.7rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) { width: 100%; height: 1px; background: var(--ink); transition: transform 180ms ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(0.18rem) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(-0.18rem) rotate(-45deg); }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 1.5rem var(--page-pad) 2rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.9rem 0; }
  .site-nav .nav-cta { margin-top: 0.75rem; padding: 0.9rem; text-align: center; }

  .hero { grid-template-columns: 1fr 0.9fr; }
  .hero-copy { padding-right: 2rem; }
  .hero h1 { font-size: clamp(3.4rem, 7.5vw, 5.4rem); }
  .hero-notes { flex-wrap: wrap; row-gap: 0.75rem; }

  .manifesto { grid-template-columns: 1fr 2.2fr; }
  .manifesto > p:last-child { grid-column: 2; }

  .detail-story { grid-template-columns: 1fr; }
  .detail-image { min-height: auto; aspect-ratio: 1.12 / 1; }
  .detail-copy { padding-left: var(--page-pad); padding-right: var(--page-pad); }

  .dialog-layout { grid-template-columns: 0.95fr 1.05fr; }
  .dialog-copy { padding: 3rem 2rem; }
}

@media (max-width: 720px) {
  .announcement { font-size: 0.62rem; }
  .site-header { min-height: 4.6rem; }
  .site-header.is-scrolled { min-height: 4rem; }

  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: auto; padding: 4.5rem var(--page-pad) 3rem; }
  .hero h1 { font-size: clamp(3.15rem, 16vw, 5.35rem); }
  .hero-intro { font-size: 1.08rem; }
  .hero-notes { padding-top: 3.5rem; }
  .hero-visual { min-height: 38rem; }
  .hero-stamp { right: -1.1rem; top: 1.5rem; width: 4.5rem; height: 4.5rem; }

  .manifesto { padding-top: 5.5rem; padding-bottom: 5.5rem; grid-template-columns: 1fr; gap: 1.8rem; }
  .manifesto > p:last-child { grid-column: 1; }

  .section-heading { align-items: start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; gap: 4.5rem; }
  .product-card:nth-child(even) { margin-top: 0; }
  .product-media,
  .product-card:not(.product-card-tall) .product-media { height: min(142vw, 43rem); }
  .product-info h3 { font-size: 1.45rem; }
  .product-link { white-space: nowrap; }

  .lookbook-heading { grid-template-columns: 1fr; }
  .lookbook-heading h2,
  .lookbook-heading .section-kicker { grid-column: 1; }
  .lookbook-heading h2 { grid-row: 2; }
  .lookbook-grid { grid-template-columns: 1.1fr 0.8fr; }
  .lookbook-main { margin-top: 2rem !important; grid-row: span 2; }
  .lookbook-small { margin-top: 0 !important; }
  .lookbook-flat { margin-top: 0 !important; }

  .site-footer > p { margin-bottom: 3rem; }
  .footer-meta { flex-direction: column; }

  .product-dialog { width: calc(100% - 1rem); max-height: calc(100dvh - 1rem); }
  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-gallery > img { height: min(94vw, 31rem); }
  .dialog-copy { padding: 2.5rem 1.4rem; }
  .dialog-copy dl div { grid-template-columns: 6.3rem 1fr; }
  .dialog-close { position: fixed; top: 1.1rem; right: 1.1rem; }
}

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