/* ============================================================
   Meridian — self-hosted typefaces
   Bundled locally so the type always renders, with no dependency
   on a third-party font CDN being reachable.
   ============================================================ */

@font-face{
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/bodoni-moda-latin-400-normal.woff2') format('woff2');
}
@font-face{
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./fonts/bodoni-moda-latin-500-normal.woff2') format('woff2');
}
@font-face{
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./fonts/bodoni-moda-latin-600-normal.woff2') format('woff2');
}
@font-face{
  font-family: 'Bodoni Moda';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/bodoni-moda-latin-400-italic.woff2') format('woff2');
}
@font-face{
  font-family: 'Bodoni Moda';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('./fonts/bodoni-moda-latin-500-italic.woff2') format('woff2');
}

@font-face{
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('./fonts/work-sans-latin-300-normal.woff2') format('woff2');
}
@font-face{
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/work-sans-latin-400-normal.woff2') format('woff2');
}
@font-face{
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./fonts/work-sans-latin-500-normal.woff2') format('woff2');
}
@font-face{
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./fonts/work-sans-latin-600-normal.woff2') format('woff2');
}

@font-face{
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2');
}
@font-face{
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2');
}

/* ============================================================
   Meridian — token system
   ============================================================ */

:root{
  --bg:            #000000;   /* exact match to frame background */
  --panel:         #0a0a08;
  --panel-2:       #131210;

  --camel:         #c9a876;
  --camel-dim:     #a98c62;
  --bronze:        #8a6f47;

  --parchment:     #ede6d8;
  --stone:         #948d80;
  --stone-dim:     #5a564d;

  --hairline:      rgba(237,230,216,0.14);
  --hairline-2:    rgba(237,230,216,0.08);

  --font-display:  'Bodoni Moda', Georgia, serif;
  --font-body:     'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:     'IBM Plex Mono', 'Courier New', monospace;

  --ease:          cubic-bezier(.22,.61,.36,1);
  --dur-fast:      .35s;
  --dur-med:       .6s;
  --dur-slow:      1s;

  --nav-h:         84px;
}

/* ============================================================
   Reset / base
   ============================================================ */

*, *::before, *::after{ box-sizing: border-box; }

html{
  background: var(--bg);
  scroll-behavior: smooth;
}

html.is-loading, html.is-loading body{
  overflow: hidden;
  height: 100%;
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--parchment);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{ max-width: 100%; display: block; }

a{
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, p{ margin: 0; }

::selection{
  background: var(--camel);
  color: #17140d;
}

:focus-visible{
  outline: 1px solid var(--camel);
  outline-offset: 4px;
}

.eyebrow{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--camel);
}

/* ============================================================
   Loader
   ============================================================ */

.loader{
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity var(--dur-slow) var(--ease), visibility var(--dur-slow) var(--ease);
}

html:not(.is-loading) .loader{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark{
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .3em;
  color: var(--parchment);
}

.loader-bar{
  width: min(220px, 60vw);
  height: 1px;
  background: var(--hairline);
}

.loader-bar-fill{
  height: 100%;
  width: 0%;
  background: var(--camel);
  transition: width .25s var(--ease);
}

.loader-pct{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--stone);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   Nav
   ============================================================ */

.nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px clamp(20px, 4vw, 56px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--dur-med) var(--ease),
              border-color var(--dur-med) var(--ease),
              backdrop-filter var(--dur-med) var(--ease);
}

.nav.is-scrolled{
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--hairline-2);
}

.nav-mark{
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 40px;
  letter-spacing: .04em;
  color: var(--parchment);
}
a.nav-mark img {
    width: 160px;
    height: auto;
}
.nav-mark-logo{
  width: 30px;
  height: 30px;
  color: var(--camel);
  flex-shrink: 0;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 21px;
  letter-spacing: .02em;
  color: var(--stone);
}

.nav-links a:not(.nav-cta){
  position: relative;
  padding-bottom: 4px;
  transition: color var(--dur-fast) var(--ease);
}

.nav-links a:not(.nav-cta)::after{
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--camel);
  transition: right var(--dur-med) var(--ease);
}

.nav-links a:not(.nav-cta):hover{
  color: var(--parchment);
}

.nav-links a.is-active:not(.nav-cta){
  color: var(--parchment);
}

.nav-links a.is-active:not(.nav-cta)::after{
  right: 0;
}

.nav-cta{
  border: 1px solid var(--hairline);
  padding: 9px 18px;
  border-radius: 2px;
  color: var(--parchment);
  font-size: 18px;
  letter-spacing: .04em;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.nav-cta:hover{
  border-color: var(--camel);
  background: rgba(201,168,118,0.08);
}

/* Hamburger toggle */

.nav-toggle{
  display: none;
  position: relative;
  width: 30px;
  height: 22px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span{
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--parchment);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease), top var(--dur-fast) var(--ease);
}

.nav-toggle span:nth-child(1){ top: 0; }
.nav-toggle span:nth-child(2){ top: 50%; margin-top: -.5px; }
.nav-toggle span:nth-child(3){ top: 100%; margin-top: -1px; }

html.nav-open .nav-toggle span:nth-child(1){ top: 50%; transform: rotate(45deg); }
html.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
html.nav-open .nav-toggle span:nth-child(3){ top: 50%; margin-top: -1px; transform: rotate(-45deg); }

/* Mobile menu panel */

.nav-mobile{
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(4,4,3,0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: calc(var(--nav-h) + 20px) 24px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility var(--dur-med) var(--ease);
}

html.nav-open .nav-mobile{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

html.nav-open{ overflow: hidden; }

.nav-mobile-links{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.nav-mobile-links a{
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 8vw, 40px);
  color: var(--stone);
  transition: color var(--dur-fast) var(--ease);
}

.nav-mobile-links a.is-active,
.nav-mobile-links a:hover{
  color: var(--camel);
}

.nav-mobile-foot{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--stone-dim);
}

/* ============================================================
   Reveal — pinned scroll-tell
   ============================================================ */

.reveal{
  position: relative;
  height: 400vh;
  background: var(--bg);
}

.reveal-sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--bg);
}

#canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: var(--bg);
}

.reveal-noscript{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* rotation HUD */

.reveal-hud{
  position: absolute;
  top: calc(var(--nav-h) + 28px);
  right: clamp(20px, 4vw, 56px);
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-mono);
  color: var(--stone);
  z-index: 5;
}

.hud-label{
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hud-degree{
  font-size: 13px;
  color: var(--camel);
  font-variant-numeric: tabular-nums;
  min-width: 3.5ch;
  text-align: right;
}

/* intro */

.reveal-intro{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  gap: 18px;
  z-index: 4;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}

.reveal-intro h1{
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(48px, 9vw, 150px);
    line-height: .98;
    margin-top: 20px;
    margin-bottom: 30px;
    color: var(--parchment);
    max-width: 16ch;
}

.intro-copy{
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--stone);
  max-width: 34ch;
  font-weight: 300;
}

.scroll-cue{
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone-dim);
}

.scroll-cue-track{
  width: 1px;
  height: 34px;
  background: var(--hairline);
  position: relative;
  overflow: hidden;
}

.scroll-cue-dot{
  position: absolute;
  left: 0;
  top: -8px;
  width: 1px;
  height: 8px;
  background: var(--camel);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot{
  0%   { top: -8px; }
  60%  { top: 34px; }
  100% { top: 34px; opacity: 0; }
}

/* annotations */

.annotation{
  position: absolute;
  top: 50%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--dur-fast) linear, transform var(--dur-fast) var(--ease);
}

.annotation--left{
  left: clamp(20px, 6vw, 72px);
  transform: translateY(-50%) translateY(10px);
}

.annotation--right{
  right: clamp(20px, 6vw, 72px);
  text-align: right;
  align-items: flex-end;
  transform: translateY(-50%) translateY(10px);
}

.annotation.is-visible{
  transform: translateY(-50%) translateY(0);
}

.annotation-line{
  width: 30px;
  height: 1px;
  background: var(--bronze);
}

.annotation--right .annotation-line{
  align-self: flex-end;
}

.annotation-title{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: var(--camel);
}

.annotation-copy{
  font-size: 21px;
  line-height: 1.5;
  color: var(--stone);
  font-weight: 300;
}

/* closing panel */

.reveal-close{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-align: center;
  padding: 0 24px;
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) linear;
}

.reveal-close.is-visible{
  pointer-events: auto;
}

.reveal-close-line{
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-style: italic;
  color: var(--parchment);
  line-height: 1.25;
}

.btn{
  display: inline-block;
  padding: 15px 34px;
  border: 1px solid var(--camel);
  color: var(--parchment);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.btn:hover{
  background: var(--camel);
  color: #17140d;
}

.btn--large{
  padding: 18px 42px;
  font-size: 13px;
}

/* ============================================================
   The Cloth
   ============================================================ */

.cloth{
  position: relative;
  z-index: 2;
  background: var(--panel);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
  padding: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 90px);
  border-top: 1px solid var(--hairline-2);
}

.cloth-text{
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 50vh;
}

.cloth-text h2{
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 400;
  color: var(--parchment);
  line-height: 1.15;
}

.cloth-text p{
  font-size: 17px;
  line-height: 1.7;
  color: var(--stone);
  font-weight: 300;
}

.cloth-image{
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg);
}

.cloth-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   Materials
   ============================================================ */

.materials{
  position: relative;
  z-index: 2;
  background: var(--panel);
  padding: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 90px);
  border-top: 1px solid var(--hairline-2);
}

.materials-head{
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 60ch;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.materials-head h2{
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 400;
  color: var(--parchment);
  line-height: 1.15;
}

.materials-intro{
  font-size: 17px;
  line-height: 1.7;
  color: var(--stone);
  font-weight: 300;
}

.materials-list{
  border-bottom: 1px solid var(--hairline);
}

.materials-item{
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: baseline;
  column-gap: clamp(20px, 4vw, 48px);
  padding: clamp(24px, 3vw, 34px) 0;
  border-top: 1px solid var(--hairline);
}

.materials-index{
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--camel);
  font-variant-numeric: tabular-nums;
}

.materials-copy h3{
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 8px;
}

.materials-copy p{
  font-size: 16px;
  line-height: 1.65;
  color: var(--stone);
  font-weight: 300;
  max-width: 60ch;
}

.materials-origin{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--stone-dim);
  white-space: nowrap;
  text-align: right;
}

/* ============================================================
   Details gallery
   ============================================================ */

.details{
  position: relative;
  z-index: 2;
  background: var(--panel);
  padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 90px) clamp(100px, 12vw, 160px);
  border-top: 1px solid var(--hairline-2);
}

.details-head{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.details-head h2{
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 45px);
  font-weight: 400;
  color: var(--parchment);
}

.details-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}

.details-item{
  margin: 0;
}

.details-item img{
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--bg);
}

.details-item figcaption{
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  margin-top: 14px;
}

.details-degree{
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--camel);
}

.details-caption{
  font-size: 17px;
  color: var(--stone);
  font-weight: 300;
}

/* ============================================================
   Fit & Sizing
   ============================================================ */

.sizing{
  position: relative;
  z-index: 2;
  background: var(--panel);
  padding: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 90px);
  border-top: 1px solid var(--hairline-2);
}

.sizing-head{
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 62ch;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.sizing-head h2{
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 400;
  color: var(--parchment);
  line-height: 1.15;
}

.sizing-intro{
  font-size: 17px;
  line-height: 1.7;
  color: var(--stone);
  font-weight: 300;
}

.sizing-table-wrap{
  overflow-x: auto;
  border-top: 1px solid var(--hairline);
}

.sizing-table{
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.sizing-table th,
.sizing-table td{
  text-align: left;
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid var(--hairline);
  white-space: nowrap;
}

.sizing-table th{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone-dim);
  font-weight: 400;
}

.sizing-table td{
  font-size: 16px;
  color: var(--stone);
  font-weight: 300;
}

.sizing-table td:first-child{
  font-family: var(--font-mono);
  color: var(--camel);
  font-size: 14px;
}

.sizing-foot{
  margin-top: 28px;
  font-size: 15px;
  color: var(--stone-dim);
}

.sizing-foot a{
  color: var(--camel);
  border-bottom: 1px solid var(--camel-dim);
}

/* ============================================================
   Testimonials / Reviews slider
   ============================================================ */

.reviews{
  position: relative;
  z-index: 2;
  background: var(--panel-2);
  padding: clamp(80px, 12vw, 150px) 0 clamp(70px, 10vw, 120px);
  border-top: 1px solid var(--hairline-2);
  overflow: hidden;
}

.reviews-head{
     display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 clamp(24px, 6vw, 90px);
    margin: 0 auto 64px auto;
    max-width: 900px;
    align-items: center;
}

.reviews-head h2{
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 400;
  color: var(--parchment);
}

.slider{
  position: relative;
}

.slider-track{
  display: flex;
  transition: transform var(--dur-slow) var(--ease);
}

.slider-slide{
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 clamp(24px, 6vw, 90px);
}

.review-card{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  max-width: 700px;
  padding: clamp(40px, 6vw, 64px) clamp(32px, 5vw, 56px) clamp(32px, 5vw, 44px);
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease);
}

.review-card:hover{
  border-color: rgba(201,168,118,0.32);
}

.review-quotemark{
  position: absolute;
  top: -18px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 160px;
  line-height: 1;
  color: var(--camel);
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}

.review-stars{
  position: relative;
  display: flex;
  gap: 3px;
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--camel);
}

.slider-slide blockquote{
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(21px, 2.8vw, 30px);
  line-height: 1.42;
  color: var(--parchment);
  max-width: 28ch;
}

.slider-slide figcaption{
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline-2);
}

.reviewer-avatar{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--camel-dim);
  background: rgba(201,168,118,0.08);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--camel);
}

.reviewer-info{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviewer-name{
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--camel);
}

.reviewer-role{
  font-size: 14px;
  color: var(--stone);
}

.slider-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: clamp(44px, 6vw, 68px);
}

.slider-arrow{
  width: 40px;
  height: 40px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: none;
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 16px;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.slider-arrow:hover{
  border-color: var(--camel);
  background: rgba(201,168,118,0.08);
}

.slider-dots{
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-dot{
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background: var(--hairline);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), width var(--dur-med) var(--ease);
}

.slider-dot.is-active{
  width: 22px;
  background: var(--camel);
}

/* ============================================================
   Press strip
   ============================================================ */

.press{
  position: relative;
  z-index: 2;
  background: var(--panel);
  border-top: 1px solid var(--hairline-2);
  padding: clamp(36px, 5vw, 54px) clamp(24px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.press-label{
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone-dim);
}

.press-marks{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 52px);
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 19px);
  letter-spacing: .06em;
  color: var(--stone);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq{
  position: relative;
  z-index: 2;
  background: var(--panel);
  padding: clamp(80px, 12vw, 160px) clamp(24px, 6vw, 90px);
  border-top: 1px solid var(--hairline-2);
}

.faq-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    margin: 0 auto 60px auto;
    max-width: 900px;
}

.faq-head h2{
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 400;
  color: var(--parchment);
}

.faq-list{
  display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item{
  position: relative;
  background: var(--panel-2);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 0 28px;
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.faq-item::before{
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--camel);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur-med) var(--ease);
}

.faq-item:hover{
  border-color: rgba(201,168,118,0.3);
}

.faq-item.is-open{
  background: var(--panel);
  border-color: rgba(201,168,118,0.4);
}

.faq-item.is-open::before{
  transform: scaleY(1);
}

.faq-question{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: 0;
  padding: 26px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--parchment);
  cursor: pointer;
}

.faq-q-left{
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.faq-q-number{
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--camel-dim);
  transition: color var(--dur-fast) var(--ease);
}

.faq-item.is-open .faq-q-number{
  color: var(--camel);
}

.faq-icon{
  position: relative;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.faq-item.is-open .faq-icon{
  border-color: var(--camel);
  background: rgba(201,168,118,0.1);
}

.faq-icon::before,
.faq-icon::after{
  content: '';
  position: absolute;
  background: var(--camel);
  transition: transform var(--dur-fast) var(--ease);
}

.faq-icon::before{
  left: 50%; top: 50%;
  width: 12px; height: 1px;
  transform: translate(-50%, -50%);
}

.faq-icon::after{
  left: 50%; top: 50%;
  width: 1px; height: 12px;
  transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-med) var(--ease);
}

.faq-answer p{
  overflow: hidden;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(237,230,216,0.72);
  font-weight: 400;
  max-width: 60ch;
  padding-left: 42px;
}

.faq-item.is-open .faq-answer{
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p{
  padding-bottom: 28px;
}

/* ============================================================
   CTA
   ============================================================ */

.cta{
  position: relative;
  z-index: 2;
  background: var(--panel-2);
  border-top: 1px solid var(--hairline-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
  padding: clamp(90px, 14vw, 170px) 24px;
}

.cta h2{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.12;
  color: var(--parchment);
  max-width: 16ch;
}

.cta-copy{
  max-width: 46ch;
  font-size: 17px;
  line-height: 1.7;
  color: var(--stone);
  font-weight: 300;
}

/* ============================================================
   Footer
   ============================================================ */

.footer{
  position: relative;
  z-index: 2;
  background: var(--panel-2);
  border-top: 1px solid var(--hairline-2);
  padding: 32px clamp(24px, 6vw, 90px) 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-mark{
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--parchment);
}
.footer-mark img {
    height: auto;
    width: 100px;
}
.footer-mark-logo{
  width: 20px;
  height: 20px;
  color: var(--camel);
  flex-shrink: 0;
}

.footer-signup{
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* flex: 1 1 320px; */
  max-width: 380px;
}

.footer-signup label{
  font-size: 13px;
  color: var(--stone);
}

.footer-signup-row{
  display: flex;
  border-bottom: 1px solid var(--hairline);
}

.footer-signup-row input{
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--parchment);
}

.footer-signup-row input::placeholder{
  color: var(--stone-dim);
}

.footer-signup-row input:focus{
  outline: none;
}

.footer-signup-row button{
  background: none;
  border: 0;
  padding: 8px 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--camel);
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease);
}

.footer-signup-row button:hover{
  color: var(--parchment);
}

.footer-signup-note{
  font-size: 12px;
  color: var(--camel);
  min-height: 1em;
}

.footer-cities{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--stone-dim);
}

.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline-2);
}

.footer-links{
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: var(--stone);
}

.footer-links a{
  transition: color var(--dur-fast) var(--ease);
}

.footer-links a:hover{
  color: var(--parchment);
}

.footer-copy{
  font-size: 12px;
  color: var(--stone-dim);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px){
  .cloth{
    grid-template-columns: 1fr;
  }
  .cloth-image{
    order: -1;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px){
  .nav-links{
    display: none;
  }
  .nav-toggle{
    display: block;
  }
  .annotation{
    max-width: 62vw;
  }
  .details-grid{
    grid-template-columns: 1fr;
  }
  .reveal-hud{
    top: calc(var(--nav-h) + 16px);
  }
  .materials-item{
    grid-template-columns: 36px 1fr;
    row-gap: 6px;
  }
  .materials-origin{
    grid-column: 2;
    text-align: left;
  }
  .press-marks{
    gap: 20px 32px;
  }
  .footer-top{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px){
  .annotation-copy{
    display: none;
  }
  .reveal-intro{
    gap: 14px;
  }
}

/* ============================================================
   Reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }

  .loader,
  .nav,
  .reveal-intro,
  .annotation,
  .reveal-close,
  .btn,
  .nav-links a,
  .nav-cta,
  .footer-links a{
    transition-duration: .01ms !important;
  }

  .scroll-cue-dot{
    animation: none;
  }
}
