:root {
  --ink: #1f211d;
  --paper: #f4efdf;
  --paper-deep: #e5dcc8;
  --coral: #eb765f;
  --butter: #f3d76b;
  --blue: #a9c9d2;
  --sage: #9dab83;
  --line: rgba(31, 33, 29, .24);
  --white-line: rgba(255, 255, 255, .3);
  --display: "Unbounded", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
img { width: 100%; height: 100%; display: block; object-fit: cover; }

.skip-link {
  position: fixed;
  top: -60px;
  left: 18px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
}
.skip-link:focus { top: 18px; }

.site-header {
  min-height: 82px;
  padding: 12px 3.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: relative;
  z-index: 20;
}
.brand {
  width: min-content;
  display: flex;
  flex-direction: column;
  font: 600 20px/.78 var(--display);
  letter-spacing: -.08em;
}
.brand span:last-child { margin-left: 31px; color: var(--coral); }
.site-header nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 32px); font-size: 14px; font-weight: 600; }
.site-header nav a { min-height: 44px; display: inline-flex; align-items: center; }
.site-header nav a:not(.nav-cta):hover { text-decoration: underline; text-underline-offset: 5px; }
.nav-cta {
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }
.menu-toggle {
  display: none;
  min-width: 76px;
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  position: relative;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  min-width: 0;
  padding: clamp(70px, 11vh, 130px) 3.5vw 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kicker, .overline {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 900px;
  margin: 28px 0 38px;
  font: 500 clamp(54px, 8.5vw, 138px)/.83 var(--display);
  letter-spacing: -.085em;
  text-transform: uppercase;
}
.hero h1 em { color: var(--coral); font-style: normal; }
.hero-lead {
  max-width: 640px;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}
.hero-actions { margin-top: 22px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button {
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
}
.button-dark { background: var(--ink); color: var(--paper); }
.button-paper { background: var(--paper); color: var(--ink); }
.arrow-link { min-height: 44px; display: inline-flex; align-items: center; gap: 12px; font-weight: 700; font-size: 14px; }
.arrow-link span { font-size: 25px; }
.hero-stage {
  margin: 0;
  min-height: 660px;
  overflow: hidden;
  position: relative;
  background: var(--blue);
  border-left: 1px solid var(--line);
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,33,29,.03) 55%, rgba(31,33,29,.48));
  pointer-events: none;
}
.hero-stage img { position: absolute; inset: 0; object-position: center 42%; }
.stage-tag {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 9px 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(244, 239, 223, .88);
  backdrop-filter: blur(5px);
  z-index: 2;
}
.stage-caption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  margin: 0;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--paper);
  z-index: 2;
  text-shadow: 0 1px 14px rgba(31, 33, 29, .45);
}
.hero-side-note {
  position: absolute;
  left: 12px;
  bottom: 22px;
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.fact-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--butter);
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  font: 500 clamp(14px, 1.5vw, 21px) var(--display);
}
.fact-rail span { min-height: 72px; padding: 16px 2vw; display: flex; align-items: center; border-right: 1px solid var(--ink); }
.fact-rail span:last-child { border-right: 0; }

.section { padding: 110px 4vw; border-bottom: 1px solid var(--line); }
.section-mark {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-mark span:first-child {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}
.section-mark-light span:first-child { border-color: currentColor; }
.section h2 {
  font: 500 clamp(40px, 5.7vw, 88px)/.98 var(--display);
  letter-spacing: -.07em;
}
.manifesto { display: grid; grid-template-columns: .25fr 1fr; gap: 5vw; }
.manifesto-copy { max-width: 1280px; }
.manifesto h2 { max-width: 1150px; margin: 24px 0 58px; }
.manifesto h2 i, .request h2 i { font-style: normal; color: var(--coral); }
.split-copy { margin-left: 31%; display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; }
.split-copy p { margin: 0; font-size: 17px; line-height: 1.65; }

.capsules { background: var(--ink); color: var(--paper); }
.section-head {
  margin: 48px 0 70px;
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  gap: 7vw;
  align-items: end;
}
.section-head h2, .section-head p { margin: 0; }
.section-head p { max-width: 450px; color: #cbc7ba; line-height: 1.7; }
.lookbook-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items: start;
}
.look { min-width: 0; }
.look-main { grid-row: span 2; }
.look-offset { margin-top: 90px; }
.look-media { min-height: 0; aspect-ratio: 4/3; margin: 0; border: 1px solid var(--white-line); position: relative; overflow: hidden; background: #ece9e5; }
.look-main .look-media, .look-offset .look-media { min-height: 0; aspect-ratio: 4/5; }
.look-media-blue { aspect-ratio: 1; }
.look-media-blue img { object-position: center 42%; }
.look-media img { transition: transform .55s ease; }
.look:hover .look-media img { transform: scale(1.018); }
.look-media-coral { border-bottom: 7px solid var(--coral); }
.look-media-blue { border-bottom: 7px solid var(--blue); }
.look-media-sage { border-bottom: 7px solid var(--sage); }
.look-meta {
  padding: 18px 0 38px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 18px;
  align-items: baseline;
  border-top: 1px solid var(--white-line);
}
.look-meta span { color: #aaa79d; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.look-meta h3 { margin: 0; font: 500 clamp(20px, 2.3vw, 34px) var(--display); letter-spacing: -.05em; }
.look-description {
  max-width: 620px;
  margin: -20px 0 25px 118px;
  color: #bbb7ab;
  font-size: 14px;
  line-height: 1.65;
}
.capsules > .button { margin-top: 30px; }

.made-layout { margin-top: 52px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 8vw; }
.made-title-wrap h2 { max-width: 740px; margin-top: 24px; }
.quality-list { border-top: 1px solid var(--line); }
.quality-list article {
  min-height: 170px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 52px 1fr 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.quality-list article > span { font: 500 14px var(--display); color: var(--coral); }
.quality-list h3 { margin: 0; font: 500 clamp(19px, 2vw, 28px) var(--display); letter-spacing: -.04em; }
.quality-list p { margin: 0; line-height: 1.65; color: #5d5f57; }

.age-note {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7vw;
  align-items: center;
  background: var(--butter);
}
.age-number {
  margin: 0;
  font: 500 clamp(88px, 15vw, 230px)/.8 var(--display);
  letter-spacing: -.1em;
}
.age-note h2 { margin: 24px 0 32px; font-size: clamp(35px, 4.6vw, 72px); }
.age-note > div > p:last-child { max-width: 720px; margin: 0; font-size: 17px; line-height: 1.7; }

.process { background: var(--blue); }
.process-grid { margin-top: 45px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 10vw; }
.process-grid h2 { margin: 0; font-size: clamp(36px, 5vw, 74px); }
.process ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.process li { min-height: 94px; display: grid; grid-template-columns: 70px 1fr; align-items: center; border-bottom: 1px solid var(--ink); }
.process li span { font: 500 14px var(--display); }
.process li p { margin: 0; font-size: 17px; font-weight: 600; }

.request {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  background: var(--coral);
}
.request .overline { margin-top: 64px; }
.request h2 { margin: 24px 0 30px; }
.request-intro > p:last-child { max-width: 560px; line-height: 1.7; font-size: 17px; }
.contact-card { margin-top: 45px; padding-top: 20px; border-top: 1px solid var(--ink); }
.contact-card span { display: block; margin-bottom: 10px; font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-card a { font: 500 clamp(15px, 1.5vw, 21px) var(--display); text-decoration: underline; text-underline-offset: 5px; }
.contact-card p { margin: 10px 0 0; font-size: 14px; }
.request form { align-self: center; display: flex; flex-direction: column; gap: 25px; }
.request label { display: flex; flex-direction: column; gap: 9px; font-size: 14px; font-weight: 700; }
.request input, .request textarea {
  width: 100%;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  resize: vertical;
}
.request input:focus, .request textarea:focus { border-bottom-width: 3px; }
.request .consent { min-height: 44px; flex-direction: row; align-items: center; font-weight: 500; }
.consent input { width: 20px; height: 20px; flex: 0 0 auto; }
.consent a { text-decoration: underline; text-underline-offset: 3px; }
.request button { align-self: flex-start; }
.form-status { min-height: 22px; margin: 0; font-size: 14px; font-weight: 700; }

footer {
  padding: 56px 4vw;
  display: grid;
  grid-template-columns: .65fr 1fr 1.2fr .8fr;
  gap: 4vw;
  align-items: start;
  background: var(--paper-deep);
}
.brand-footer { font-size: 25px; }
.footer-note p, .footer-meta p { margin-bottom: 7px; font-size: 14px; }
.footer-links, .footer-meta { display: flex; flex-direction: column; gap: 4px; font-size: 14px; }
.footer-links a, .footer-meta a { width: fit-content; min-height: 44px; display: inline-flex; align-items: center; }
.footer-links span { color: #737267; }
.studio-credit { margin-top: 12px; text-decoration: underline; text-underline-offset: 4px; }

.legal-page { min-height: 100vh; background: var(--paper); }
.legal-header {
  min-height: 82px;
  padding: 12px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.legal-back { min-height: 44px; display: inline-flex; align-items: center; font-size: 14px; font-weight: 700; }
.legal-main { width: min(920px, calc(100% - 44px)); margin: 0 auto; padding: 90px 0 120px; }
.legal-main .kicker { color: #6c6c62; }
.legal-main h1 { margin: 25px 0 50px; font: 500 clamp(42px, 7vw, 86px)/.95 var(--display); letter-spacing: -.075em; }
.legal-main h2 { margin: 42px 0 15px; font: 500 clamp(20px, 2.5vw, 30px) var(--display); letter-spacing: -.04em; }
.legal-main p, .legal-main li { font-size: 16px; line-height: 1.7; }
.demo-notice { padding: 20px; border: 1px solid var(--ink); background: var(--butter); font-weight: 600; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid #315e79;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header nav { gap: 13px; }
  .hero { grid-template-columns: 1fr 42%; }
  .hero h1 { font-size: clamp(48px, 8vw, 82px); }
  .manifesto { grid-template-columns: 1fr; }
  .split-copy { margin-left: 18%; }
  .made-layout, .process-grid { gap: 5vw; }
  .look-meta { grid-template-columns: 82px 1fr; }
  .look-meta span:last-child { grid-column: 2; }
  .look-description { margin-left: 100px; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-header { min-height: 70px; padding-inline: 22px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    padding: 18px 22px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
  }
  .nav-open .site-header nav { display: flex; }
  .site-header nav a { min-height: 48px; font-size: 14px; }
  .nav-cta { justify-content: center; margin-top: 8px; }
  .hero {
    min-height: calc(100svh - 70px);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(300px, 42svh) auto;
  }
  .hero-stage { grid-row: 1; min-height: 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .hero-stage img { object-position: center 35%; }
  .hero-copy { grid-row: 2; min-height: 0; padding: 28px 22px 38px; }
  .hero h1 { font-size: clamp(42px, 13vw, 60px); margin-block: 18px 22px; line-height: .88; }
  .hero-lead { font-size: 16px; }
  .hero-actions { margin-top: 12px; gap: 16px; }
  .hero-side-note { display: none; }
  .stage-caption { right: 18px; bottom: 15px; }
  .stage-tag { left: 18px; top: 18px; }
  .fact-rail { grid-template-columns: 1fr 1fr; }
  .fact-rail span { min-height: 62px; padding-inline: 16px; }
  .fact-rail span:nth-child(2) { border-right: 0; }
  .fact-rail span:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .section { padding: 78px 22px; }
  .section h2 { font-size: clamp(36px, 11vw, 56px); }
  .manifesto h2 { margin-bottom: 38px; }
  .split-copy { margin-left: 0; grid-template-columns: 1fr; gap: 14px; }
  .section-head { grid-template-columns: 1fr; gap: 22px; margin-block: 42px 48px; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .look-offset { margin-top: 0; }
  .look-media { min-height: 0; }
  .look-description { margin-left: 0; }
  .made-layout, .age-note, .process-grid, .request { grid-template-columns: 1fr; }
  .made-layout { gap: 25px; }
  .quality-list article { grid-template-columns: 38px 1fr; min-height: 0; }
  .quality-list article p { grid-column: 2; }
  .process-grid { gap: 45px; }
  .age-note { gap: 45px; }
  .request { gap: 52px; }
  .request .overline { margin-top: 44px; }
  footer { padding: 48px 22px; grid-template-columns: 1fr; gap: 28px; }
  .legal-header { min-height: 70px; padding-inline: 22px; }
  .legal-main { padding-block: 65px 90px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav-cta, .look-media img { transition: none; }
  .look:hover .look-media img { transform: none; }
}
