:root {
  --ink: #161414;
  --paper: #f5f0e8;
  --paper-2: #ebe4d9;
  --mango: #ffb000;
  --mango-soft: #ffd15a;
  --clay: #7d3f2b;
  --sage: #70745f;
  --white: #fffdf9;
  --line: rgba(22, 20, 20, .16);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 232, .94);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 76px;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand img { width: 176px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}
.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .25s ease;
}
.site-nav a:hover::after { width: 100%; }
.nav-cta {
  padding: 12px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}
.menu-toggle { display: none; }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 47% 53%;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  min-height: 760px;
  padding: clamp(70px, 8vw, 125px) clamp(30px, 5vw, 82px) 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.eyebrow {
  margin: 0 0 25px;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(80px, 10vw, 170px);
  line-height: .72;
  letter-spacing: -.07em;
}
.hero h1 span { display: block; }
.hero h1 span:last-child {
  margin-left: .48em;
  color: var(--mango);
  font-style: italic;
}
.hero-intro {
  max-width: 560px;
  margin: 52px 0 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.28;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: #fff; }
.text-link { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; text-decoration: none; }
.text-link span { margin-left: 6px; }
.hero-note {
  position: absolute;
  left: clamp(30px, 5vw, 82px);
  right: clamp(30px, 5vw, 82px);
  bottom: 28px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-note p { margin: 0; }
.hero-media { position: relative; min-height: 760px; background: #2b2421; overflow: hidden; }
.hero-media > img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), transparent 50%, rgba(0,0,0,.45));
  pointer-events: none;
}
.hero-stamp {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255,255,255,.65);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: .08em;
}
.hero-stamp span { color: var(--mango-soft); }
.hero-caption {
  position: absolute;
  z-index: 2;
  left: 25px;
  bottom: 18px;
  color: #fff;
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.ticker { overflow: hidden; background: var(--ink); color: var(--paper); border-bottom: 1px solid #000; }
.ticker-track {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  padding: 0 26px;
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: .17em;
  font-weight: 800;
}
.ticker i { color: var(--mango); font-style: normal; }

.section-pad { padding: clamp(85px, 10vw, 150px) clamp(24px, 5vw, 76px); }
.section-number { font-size: 10px; letter-spacing: .17em; font-weight: 800; margin-bottom: 44px; }
.intro { max-width: 1500px; margin: 0 auto; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 130px); align-items: start; }
.intro h2, .section-head h2, .feature h2, .lookbook h2, .material-story h2, .about-band h2, .cta-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.04em;
}
.intro h2 { font-size: clamp(54px, 7vw, 106px); line-height: .93; margin: 0; }
.intro-copy { max-width: 610px; }
.intro-copy .lead { font-family: var(--serif); font-size: clamp(25px, 2.4vw, 34px); line-height: 1.28; margin: 0 0 30px; }
.intro-copy p:not(.lead) { font-size: 15px; line-height: 1.8; margin: 0; max-width: 520px; }

.collection { background: var(--paper-2); }
.section-head { max-width: 1500px; margin: 0 auto 55px; display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.section-head h2 { font-size: clamp(50px, 6vw, 88px); margin: 0; line-height: .95; }
.section-head > p { max-width: 330px; margin: 0; font-family: var(--serif); font-size: 20px; line-height: 1.35; }
.collection-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: 420px 380px;
  gap: 18px;
}
.collection-card { position: relative; overflow: hidden; min-height: 0; background: #ddd4c7; }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.collection-card:hover img { transform: scale(1.025); }
.collection-card-tall { grid-row: 1 / span 2; }
.collection-card-wide { grid-column: 2; }
.collection-card-small { grid-column: 2; }
.card-overlay { position: absolute; inset: auto 0 0; padding: 34px; color: #fff; background: linear-gradient(180deg, transparent, rgba(0,0,0,.75)); }
.card-overlay.light { color: #fff; }
.card-overlay p { margin: 0 0 8px; font-size: 9px; letter-spacing: .16em; font-weight: 800; }
.card-overlay h3 { margin: 0; font-family: var(--serif); font-size: clamp(33px, 3vw, 51px); font-weight: 400; }
.card-overlay span { display: block; margin-top: 9px; font-size: 12px; line-height: 1.5; max-width: 380px; }
.text-card { background: var(--mango); display: grid; place-items: center; }
.text-card-inner { padding: 35px; }
.mini-label { font-size: 9px; font-weight: 800; letter-spacing: .17em; }
.text-card h3 { font-family: var(--serif); font-size: clamp(32px, 3.5vw, 55px); line-height: 1; font-weight: 400; margin: 24px 0 22px; }
.text-card p { font-size: 13px; line-height: 1.65; max-width: 430px; }
.text-card a { display: inline-block; margin-top: 16px; font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; text-decoration: none; }

.feature { display: grid; grid-template-columns: 55% 45%; min-height: 820px; background: var(--ink); color: var(--paper); }
.feature-image { min-height: 700px; overflow: hidden; }
.feature-image img { height: 100%; object-fit: cover; object-position: center; }
.feature-copy { padding: clamp(65px, 8vw, 130px) clamp(38px, 6vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.feature h2 { font-size: clamp(48px, 5vw, 76px); line-height: .98; margin: 0 0 30px; }
.feature-copy > p:not(.eyebrow) { font-size: 15px; line-height: 1.8; color: #c8c2ba; max-width: 540px; }
.feature-list { list-style: none; padding: 0; margin: 32px 0 38px; border-top: 1px solid rgba(255,255,255,.15); }
.feature-list li { display: flex; align-items: center; gap: 22px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-family: var(--serif); font-size: 20px; }
.feature-list span { font-family: var(--sans); font-size: 9px; letter-spacing: .15em; color: var(--mango-soft); }
.button-accent { align-self: flex-start; background: var(--mango); color: var(--ink); }

.lookbook { max-width: 1500px; margin: 0 auto; }
.lookbook-title-wrap { max-width: 1000px; margin-bottom: 60px; }
.lookbook h2 { font-size: clamp(60px, 8vw, 118px); line-height: .88; margin: 0; }
.lookbook-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(28px, 5vw, 70px); align-items: start; }
.lookbook-main { margin: 0; }
.lookbook-main img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
.lookbook-main figcaption { padding: 16px 0; display: grid; grid-template-columns: 90px 1fr; gap: 18px; font-size: 12px; line-height: 1.55; border-bottom: 1px solid var(--line); }
.lookbook-main figcaption span { font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.lookbook-notes { padding-top: 80px; }
.lookbook-notes article { padding: 26px 0 30px; border-top: 1px solid var(--line); }
.lookbook-notes article:last-child { border-bottom: 1px solid var(--line); }
.lookbook-notes span { font-size: 9px; font-weight: 800; letter-spacing: .15em; color: var(--clay); }
.lookbook-notes h3 { font-family: var(--serif); font-size: 33px; margin: 14px 0 10px; font-weight: 400; }
.lookbook-notes p { margin: 0; font-size: 13px; line-height: 1.65; max-width: 390px; }

.material-story { display: grid; grid-template-columns: 1.1fr .9fr; background: #d7d2c4; padding-top: 110px; padding-bottom: 110px; gap: 80px; align-items: end; }
.material-copy h2 { font-size: clamp(48px, 6vw, 86px); line-height: .96; margin: 0 0 28px; max-width: 800px; }
.material-copy > p { max-width: 680px; font-size: 15px; line-height: 1.8; }
.material-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 45px; }
.material-stats div { border-top: 1px solid rgba(22,20,20,.35); padding-top: 13px; }
.material-stats strong { display: block; font-size: 11px; letter-spacing: .14em; }
.material-stats span { display: block; font-family: var(--serif); font-size: 16px; margin-top: 5px; color: rgba(22,20,20,.72); }
.material-quote { background: var(--clay); color: #fff; padding: clamp(40px, 5vw, 70px); }
.material-quote blockquote { margin: 0 0 40px; font-family: var(--serif); font-size: clamp(34px, 4vw, 58px); line-height: 1.05; }
.material-quote span { font-size: 9px; font-weight: 800; letter-spacing: .16em; }

.about-band { position: relative; overflow: hidden; background: var(--mango); min-height: 620px; display: flex; align-items: center; padding: 90px clamp(24px, 7vw, 110px); }
.about-word { position: absolute; left: -1vw; bottom: -3vw; font-family: var(--serif); font-size: clamp(120px, 22vw, 370px); line-height: .75; color: rgba(22,20,20,.08); letter-spacing: -.08em; white-space: nowrap; }
.about-content { position: relative; z-index: 2; max-width: 760px; margin-left: auto; }
.about-band h2 { font-size: clamp(50px, 6vw, 86px); line-height: .95; margin: 0 0 26px; }
.about-band p:not(.eyebrow) { font-size: 15px; line-height: 1.8; max-width: 640px; }
.light-link { display: inline-block; margin-top: 25px; }

.cta-section { min-height: 410px; padding: clamp(65px, 8vw, 110px) clamp(24px, 6vw, 90px); display: flex; justify-content: space-between; align-items: center; gap: 45px; border-bottom: 1px solid var(--line); }
.cta-section h2 { margin: 0; font-size: clamp(58px, 8vw, 120px); line-height: .9; max-width: 950px; }
.round-cta { width: 160px; height: 160px; min-width: 160px; border: 1px solid var(--ink); border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-decoration: none; transition: background .25s ease, color .25s ease, transform .25s ease; }
.round-cta span { font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.round-cta strong { font-size: 28px; font-weight: 400; margin-top: 5px; }
.round-cta:hover { background: var(--ink); color: #fff; transform: rotate(7deg); }

.site-footer { background: var(--ink); color: var(--paper); padding: 70px clamp(24px, 6vw, 90px) 25px; }
.footer-brand { display: flex; justify-content: space-between; align-items: end; gap: 30px; padding-bottom: 55px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-brand img { width: 190px; }
.footer-brand p { margin: 0; font-family: var(--serif); font-size: 24px; color: #bcb5ac; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; max-width: 650px; gap: 50px; padding: 50px 0; }
.footer-links div { display: flex; flex-direction: column; gap: 12px; }
.footer-links span { font-size: 9px; color: var(--mango-soft); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 8px; }
.footer-links a { text-decoration: none; font-family: var(--serif); font-size: 21px; color: #e5dfd7; }
.footer-bottom { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 20px; font-size: 9px; letter-spacing: .13em; text-transform: uppercase; color: #8f8982; }

@media (max-width: 1100px) {
  .header-inner { padding: 0 24px; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-left: 34px; padding-right: 34px; }
  .hero-note { left: 34px; right: 34px; }
  .collection-grid { grid-template-rows: 350px 330px; }
  .feature { grid-template-columns: 50% 50%; }
  .material-story { gap: 45px; }
}

@media (max-width: 820px) {
  .site-header { background: rgba(245,240,232,.98); }
  .header-inner { min-height: 68px; }
  .brand img { width: 156px; }
  .menu-toggle {
    display: grid;
    gap: 6px;
    border: 0;
    background: transparent;
    padding: 10px;
    cursor: pointer;
  }
  .menu-toggle span { width: 24px; height: 1px; background: var(--ink); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px 24px 25px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 12px; text-align: center; border: 1px solid var(--ink); }

  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: auto; padding: 80px 24px 95px; }
  .hero h1 { font-size: clamp(90px, 23vw, 150px); }
  .hero-intro { margin-top: 40px; }
  .hero-note { left: 24px; right: 24px; bottom: 24px; }
  .hero-media { min-height: 72vh; }
  .ticker-track { justify-content: flex-start; overflow: hidden; }

  .intro-grid, .lookbook-grid, .material-story { grid-template-columns: 1fr; }
  .intro-grid { gap: 40px; }
  .section-head { align-items: start; flex-direction: column; }
  .collection-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .collection-card-tall, .collection-card-wide, .collection-card-small { grid-column: auto; grid-row: auto; }
  .collection-card-tall { min-height: 650px; }
  .collection-card-wide { min-height: 430px; }
  .collection-card-small { min-height: 360px; }

  .feature { grid-template-columns: 1fr; }
  .feature-image { min-height: 70vh; }
  .feature-copy { padding: 75px 24px; }

  .lookbook-notes { padding-top: 10px; }
  .material-story { padding-top: 85px; padding-bottom: 85px; }
  .material-stats { grid-template-columns: 1fr; }

  .about-content { margin-left: 0; }
  .cta-section { align-items: flex-start; flex-direction: column; }
  .round-cta { width: 125px; height: 125px; min-width: 125px; }

  .footer-brand { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .section-pad { padding-left: 20px; padding-right: 20px; }
  .hero-copy { padding-left: 20px; padding-right: 20px; }
  .hero h1 span:last-child { margin-left: .25em; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-note { left: 20px; right: 20px; }
  .hero-media { min-height: 620px; }
  .hero-stamp { width: 68px; height: 68px; font-size: 20px; }
  .ticker-track { min-height: 52px; }
  .collection-card-tall { min-height: 540px; }
  .collection-card-wide { min-height: 390px; }
  .card-overlay { padding: 24px; }
  .material-story { gap: 35px; }
  .material-quote { padding: 34px 26px; }
  .about-band { padding: 70px 20px; min-height: 540px; }
  .cta-section { padding-left: 20px; padding-right: 20px; }
  .site-footer { padding-left: 20px; padding-right: 20px; }
  .footer-links { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; }
}

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