:root {
  --ink: #171713;
  --paper: #f0ede5;
  --paper-deep: #e5e0d5;
  --line: rgba(23, 23, 19, 0.2);
  --olive: #727665;
  --clay: #a66b51;
  --muted: #707887;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "neue-haas-grotesk-text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { background: var(--ink); color: var(--paper); }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  padding: 0 3.5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, color .35s ease;
}
.site-header.scrolled {
  background: rgba(240, 237, 229, .9);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.wordmark { display: inline-flex; align-items: center; width: max-content; }
.brand-logo { display: block; width: 108px; height: auto; }
.site-header nav { display: flex; gap: 2rem; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.site-header nav a, .header-cta { transition: opacity .2s ease; }
.site-header nav a:hover, .header-cta:hover { opacity: .55; }
.header-cta { justify-self: end; padding: 12px 16px; border: 1px solid var(--ink); background: var(--ink); color: var(--paper); font-size: .68rem; letter-spacing: .04em; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 0 3.5vw;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(240,237,229,.92) 0%, rgba(240,237,229,.74) 28%, rgba(240,237,229,.08) 58%, rgba(23,23,19,.08) 100%);
}
.hero-media { position: absolute; inset: 0; }
.hero-copy { position: relative; z-index: 2; width: min(49vw, 720px); min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 120px 0 135px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 28px; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { display: block; width: 24px; height: 1px; background: currentColor; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.055em; line-height: .9; margin: 0; }
h1 { font-size: clamp(4.2rem, 7.8vw, 9rem); }
h1 em, h2 em { font-weight: 400; color: var(--olive); }
.hero-intro { max-width: 510px; margin: 38px 0 30px; font-size: clamp(1rem, 1.25vw, 1.28rem); line-height: 1.55; letter-spacing: -.015em; }
.text-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; width: max-content; padding: 14px 17px; border: 1px solid var(--ink); background: rgba(240,237,229,.1); color: var(--ink); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; transition: background .2s ease, color .2s ease; }
.text-link:hover { background: var(--ink); color: var(--paper); }
.text-link span { font-size: 1rem; transition: transform .3s var(--ease); }
.text-link:hover span { transform: translate(4px, 4px); }

.hero-photo { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: saturate(.8) contrast(.98); }
.hero-footer { position: absolute; z-index: 2; left: 3.5vw; right: 3.5vw; bottom: 28px; display: grid; grid-template-columns: 1fr 1fr 1fr; padding-top: 18px; border-top: 1px solid rgba(23,23,19,.36); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-footer p { margin: 0; }
.hero-footer p:nth-child(2) { text-align: center; }
.hero-footer p:last-child { text-align: right; }

.collection { padding: 150px 3.5vw 0; }
.section-heading { display: grid; grid-template-columns: .72fr 1.55fr .73fr; align-items: end; margin-bottom: 70px; }
.section-heading .eyebrow { align-self: start; margin-top: 8px; }
.section-heading h2 { font-size: clamp(3.4rem, 6vw, 7.2rem); }
.section-heading > p:last-child { max-width: 310px; margin: 0 0 4px 30px; line-height: 1.55; font-size: .88rem; }
.section-heading.collection-title-only { display: block; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ink); border: 1px solid var(--ink); }
.product-card { background: var(--paper); }
.product-meta { display: flex; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.product-visual { position: relative; aspect-ratio: 4 / 5; display: grid; place-items: center; overflow: hidden; background: #d8d3c7; }
.product-tee .product-visual { background: #bfc1b6; }
.product-visual::after { content: ""; position: absolute; inset: 0; opacity: .22; pointer-events: none; background-image: radial-gradient(rgba(23,23,19,.35) .6px, transparent .6px); background-size: 5px 5px; }
.product-visual > img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.76) contrast(.98); transition: transform 1.1s var(--ease), filter .5s ease; }
.product-shirt .product-visual > img, .product-tee .product-visual > img { object-position: center center; }
.product-card:hover .product-visual > img { transform: scale(1.018); filter: saturate(.88) contrast(1); }
.fabric-note { position: absolute; z-index: 2; padding: 8px 10px; background: rgba(240,237,229,.88); border: 1px solid rgba(23,23,19,.25); font-family: Georgia, serif; font-size: .75rem; font-style: italic; }
.note-one { top: 28%; left: 8%; }
.note-two { right: 7%; bottom: 22%; }
.product-copy { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 30px; align-items: baseline; min-height: 102px; padding: 26px 22px; }
.product-copy h3 { font-family: Georgia, serif; font-size: 1.5rem; font-weight: 400; margin: 0; }
.product-copy p { margin: 0; font-size: .8rem; line-height: 1.55; }

.campaign-banner { position: relative; height: min(76vw, 930px); margin: 100px -3.5vw 0; overflow: hidden; background: #d7cfbf; }
.campaign-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 56%, rgba(23,23,19,.42)); pointer-events: none; }
.campaign-banner > img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.82) contrast(.98); }
.campaign-banner figcaption { position: absolute; z-index: 2; left: 3.5vw; right: 3.5vw; bottom: 3.5vw; display: flex; justify-content: space-between; align-items: end; color: #fff; }
.campaign-banner figcaption p { margin: 0 0 8px; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; }
.campaign-banner figcaption h2 { font-size: clamp(4rem, 8vw, 9rem); text-align: right; }
.campaign-banner figcaption h2 em { color: #d9dbce; }

.material-story { margin: 0 -3.5vw; padding: 1px; background: var(--ink); color: var(--paper); display: grid; grid-template-columns: 1.08fr .92fr; gap: 1px; }
.material-photo { position: relative; min-height: 820px; margin: 0; overflow: hidden; background: #d7cfbf; }
.material-photo img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(.98); }
.material-photo figcaption { position: absolute; left: 24px; bottom: 24px; padding: 9px 11px; background: rgba(240,237,229,.9); color: var(--ink); font-size: .61rem; letter-spacing: .12em; text-transform: uppercase; }
.material-content { min-width: 0; padding: 78px 5vw 42px; background: var(--ink); display: flex; flex-direction: column; }
.material-story h2 { max-width: 580px; font-size: clamp(3.2rem, 5.3vw, 6.5rem); }
.material-story .principles { margin-top: auto; padding-top: 70px; }
.principles article { display: grid; grid-template-columns: 1fr; padding: 22px 0; border-top: 1px solid rgba(240,237,229,.24); }
.principles h3 { margin: 0 0 10px; font-family: Georgia, serif; font-weight: 400; font-size: 1.5rem; }
.principles p { max-width: 450px; margin: 0; color: rgba(240,237,229,.66); font-size: .78rem; line-height: 1.6; }
.material-note { padding-top: 26px; border-top: 1px solid rgba(240,237,229,.24); margin: 12px 0 0; font-size: .62rem; line-height: 1.45; letter-spacing: .06em; color: rgba(240,237,229,.55); }

.launch { padding: 0; }
.launch-strip { grid-column: 1 / -1; display: grid; grid-template-columns: .72fr 1.28fr; gap: 9vw; align-items: start; padding-bottom: 45px; border-bottom: 1px solid rgba(245,241,232,.3); }
.launch-strip > p { margin: 0; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.launch-strip ol { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 0; padding: 0; }
.launch-strip li { color: rgba(245,241,232,.62); font-family: Georgia, serif; font-size: .92rem; }
.launch-strip li span { display: block; margin-bottom: 8px; color: rgba(245,241,232,.46); font-family: "neue-haas-grotesk-text", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; }
.launch-strip li.is-current { color: #f5f1e8; }
.launch-strip li.is-current span { color: #f5f1e8; }
.eyebrow.light { color: rgba(240,237,229,.65); }

.preference-panel { padding: 58px 5vw 72px; background: var(--olive); color: #f5f1e8; display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 55px 9vw; }
.preference-intro { display: block; padding-top: 2px; }
.preference-intro h2 { color: #f5f1e8; font-size: clamp(3.5rem, 5.7vw, 6.5rem); }
.preference-intro .eyebrow { margin-bottom: 32px; }
.preference-intro > p:last-child { max-width: 300px; margin: 30px 0 0; color: rgba(245,241,232,.7); font-size: .8rem; line-height: 1.6; }
.tally-shell { width: 100%; min-width: 0; padding: 22px 22px 0; overflow: hidden; background: #f0ede5; color: var(--ink); border: 1px solid rgba(23,23,19,.18); border-radius: 8px; box-shadow: 0 28px 90px rgba(23,23,19,.14); }
.tally-shell iframe { display: block; width: 96.15%; border: 0; background: transparent; zoom: 1.04; }
.form-privacy { margin: 0; padding: 16px 24px 18px; border-top: 1px solid rgba(23,23,19,.14); color: rgba(23,23,19,.58); font-size: .66rem; line-height: 1.5; letter-spacing: .02em; }
.form-privacy a { border-bottom: 1px solid currentColor; }
.contact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 12px; padding-bottom: 28px; }
.contact-fields label { display: grid; gap: 10px; }
.contact-fields label > span { font-size: .61rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(245,241,232,.7); }
.contact-fields small { margin-left: 7px; font-size: inherit; font-weight: 400; color: rgba(245,241,232,.42); }
.contact-fields input,
.contact-fields textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(245,241,232,.42); border-radius: 0; padding: 3px 0 13px; background: transparent; color: #f5f1e8; font: inherit; font-size: .9rem; line-height: 1.5; outline: none; resize: vertical; transition: border-color .2s ease; }
.contact-fields input::placeholder,
.contact-fields textarea::placeholder { color: rgba(245,241,232,.42); }
.contact-fields input:focus,
.contact-fields textarea:focus { border-color: #f5f1e8; }
.contact-note { grid-column: 1 / -1; }
fieldset { min-width: 0; margin: 0; padding: 24px 0 26px; border: 0; border-top: 1px solid rgba(245,241,232,.3); }
legend { width: 100%; padding: 0 0 18px; font-family: Georgia, serif; font-size: 1.25rem; }
legend span { display: inline-block; width: 42px; font-family: "neue-haas-grotesk-text", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: .58rem; letter-spacing: .1em; color: rgba(245,241,232,.55); }
.choice-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding-left: 42px; }
.choice-row button { min-height: 44px; padding: 10px 12px; border: 1px solid rgba(245,241,232,.4); background: transparent; color: #f5f1e8; cursor: pointer; font-size: .69rem; letter-spacing: .04em; transition: color .22s ease, background .22s ease, border-color .22s ease; }
.choice-row button:hover, .choice-row button[aria-pressed="true"] { background: #f5f1e8; border-color: #f5f1e8; color: var(--ink); }
.swatches button { display: flex; align-items: center; justify-content: center; gap: 8px; }
.swatch { width: 12px; height: 12px; border-radius: 50%; background: linear-gradient(90deg, #191917 50%, #e7e1d6 50%); border: 1px solid rgba(245,241,232,.35); }
.swatch.earth { background: linear-gradient(90deg, #7a593f 50%, #b29a75 50%); }
.swatch.muted { background: linear-gradient(90deg, #68746b 50%, #78818f 50%); }
.preference-actions { display: flex; gap: 18px; align-items: center; margin: 18px 0 12px 42px; }
.save-button { flex: 1; display: flex; justify-content: space-between; align-items: center; min-height: 52px; padding: 0 18px; border: 1px solid #f5f1e8; background: #f5f1e8; color: var(--ink); cursor: pointer; }
.save-button span { font-size: 1.1rem; transition: transform .2s ease; }
.save-button:hover span { transform: translateX(5px); }
.copy-button { min-height: 52px; padding: 0 16px; border: 1px solid rgba(245,241,232,.4); background: transparent; color: #f5f1e8; cursor: pointer; }
.copy-button:disabled { opacity: .42; cursor: not-allowed; }
.form-status { margin: 0 0 0 42px; min-height: 1.2em; color: rgba(245,241,232,.62); font-size: .62rem; letter-spacing: .05em; }

footer { min-height: 110px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding: 0 5vw; background: var(--ink); color: var(--paper); font-size: .63rem; letter-spacing: .07em; text-transform: uppercase; }
footer p { margin: 0; text-align: center; }
footer .legal-links { display: flex; justify-content: flex-end; gap: 20px; }
footer .legal-links a { border-bottom: 1px solid transparent; }
footer .legal-links a:hover { border-color: currentColor; }
.wordmark.inverse .brand-logo { width: 108px; }

.legal-page { min-height: 100vh; background: var(--paper); }
.legal-header { position: static; background: var(--paper); border-bottom: 1px solid var(--line); }
.legal-header .header-cta { background: transparent; color: var(--ink); }
.legal-main { width: min(920px, calc(100% - 40px)); margin: 0 auto; padding: 100px 0 130px; }
.legal-kicker { margin: 0 0 24px; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.legal-main h1 { max-width: 800px; font-size: clamp(4rem, 8vw, 7.5rem); }
.legal-summary { max-width: 680px; margin: 36px 0 72px; font-size: 1.05rem; line-height: 1.65; }
.legal-content { max-width: 720px; }
.legal-content section { padding: 32px 0; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 16px; font-family: Georgia, "Times New Roman", serif; font-size: 1.75rem; letter-spacing: -.025em; line-height: 1.15; }
.legal-content p, .legal-content li { font-size: .9rem; line-height: 1.75; }
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 0; padding-left: 20px; }
.legal-content a { border-bottom: 1px solid currentColor; }
.legal-updated { margin-top: 52px; color: rgba(23,23,19,.58); font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero-copy { width: min(64vw, 620px); }
  .hero-footer { display: flex; justify-content: space-between; }
  .hero-footer p:nth-child(2) { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .section-heading > p:last-child { margin: 0; }
  .product-grid { grid-template-columns: 1fr; }
  .material-story, .preference-panel { grid-template-columns: 1fr; }
  .material-photo { min-height: 66vw; }
  .launch-strip { grid-template-columns: 1fr; gap: 24px; }
  .launch-strip ol { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
  .site-header { height: 66px; padding: 0 20px; }
  .header-cta { padding: 11px 12px; font-size: .58rem; }
  .hero { padding: 0 20px; }
  .hero::after { background: linear-gradient(180deg, rgba(240,237,229,.08) 0%, rgba(240,237,229,.12) 38%, rgba(240,237,229,.68) 68%, rgba(240,237,229,.94) 100%); }
  .hero-copy { width: 100%; justify-content: flex-end; padding: 0 0 145px; }
  h1 { font-size: clamp(3.7rem, 17vw, 5.1rem); }
  .hero-intro { max-width: 88%; margin-top: 24px; font-size: .88rem; }
  .hero-photo { object-position: 66% center; }
  .hero-footer p { max-width: 45%; line-height: 1.5; }
  .collection { padding-left: 20px; padding-right: 20px; }
  .collection { padding-top: 100px; }
  .section-heading { margin-bottom: 45px; }
  .product-visual { height: auto; min-height: 0; }
  .product-copy { grid-template-columns: 1fr; gap: 10px; align-items: start; min-height: 0; }
  .campaign-banner { height: 76svh; min-height: 580px; margin: 80px -20px 0; }
  .campaign-banner > img { object-position: center; }
  .campaign-banner figcaption { left: 20px; right: 20px; bottom: 24px; display: block; }
  .campaign-banner figcaption h2 { margin-top: 12px; text-align: left; font-size: clamp(3.5rem, 17vw, 5rem); }
  .material-story { margin-left: -20px; margin-right: -20px; padding: 1px; }
  .material-photo { min-height: 74vw; }
  .material-content { padding: 66px 20px 34px; }
  .material-story .principles { padding-top: 58px; }
  .material-note { text-align: left; line-height: 1.5; }
  .launch { padding: 0; }
  .preference-panel { margin: 0; padding: 48px 20px 50px; gap: 46px; }
  .preference-intro { grid-template-columns: 1fr; gap: 24px; }
  .preference-intro .eyebrow { margin-bottom: 24px; }
  .preference-intro > p:last-child { margin: 0; }
  .tally-shell { width: 100%; margin: 0; padding: 14px 14px 0; border-radius: 7px; box-shadow: none; }
  .form-privacy { padding: 14px 16px 16px; }
  .launch-strip { padding-bottom: 34px; }
  .launch-strip ol { grid-template-columns: 1fr 1fr; gap: 22px 16px; }
  .choice-row { grid-template-columns: 1fr; padding-left: 0; }
  .choice-row button { text-align: left; justify-content: flex-start; }
  .preference-actions { margin-left: 0; flex-direction: column; align-items: stretch; }
  .contact-fields { grid-template-columns: 1fr; gap: 20px; }
  .contact-note { grid-column: auto; }
  .form-status { margin-left: 0; }
  footer { margin: 0; padding: 28px 20px; min-height: 150px; grid-template-columns: 1fr 1fr; gap: 30px; }
  footer { grid-template-columns: 1fr auto; }
  footer p { display: none; }
  footer .legal-links { gap: 16px; }
  .legal-header nav { display: none; }
  .legal-main { padding: 72px 0 90px; }
  .legal-main h1 { font-size: clamp(3.5rem, 16vw, 5rem); }
  .legal-summary { margin: 28px 0 52px; }
}

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