/* ═══════════════════════════════════════════════════════════════
   ZASA — House of Considered Luxury
   Monochrome editorial system · single owned accent #069138
   ═══════════════════════════════════════════════════════════════ */

:root {
  --paper: #FAFAF8;
  --white: #FFFFFF;
  --ink: #0A0A0A;
  --green: #069138;
  --green-deep: #0B2C1D;
  --cream: #EFF3EE;
  --line: rgba(10, 10, 10, .14);
  --line-light: rgba(255, 255, 255, .16);
  --grey: #6E6E68;
  --grey-soft: #ECECE8;

  --serif: 'Bodoni Moda', 'Didot', 'Playfair Display', Georgia, serif;
  --sans: 'Jost', 'Futura', 'Century Gothic', Arial, sans-serif;
  --mark: 'Anton', 'Arial Narrow', sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.77, 0, .18, 1);

  --sect: clamp(96px, 12vw, 176px);
  --head-h: 78px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.lock { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
figure { margin: 0; }
::selection { background: var(--green); color: var(--white); }

:focus-visible { outline: 2px solid var(--green); outline-offset: 4px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: fixed; top: -80px; left: 24px; z-index: 2000;
  background: var(--ink); color: var(--paper);
  padding: 12px 20px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  transition: top .3s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ── Layout primitives ── */
.container {
  width: min(100% - clamp(40px, 7vw, 128px), 1560px);
  margin-inline: auto;
}
.container-n {
  width: min(100% - clamp(40px, 8vw, 128px), 880px);
  margin-inline: auto;
  text-align: center;
}

/* ── Shared type ── */
.kicker {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--grey);
}
.kicker.cream { color: rgba(239, 243, 238, .62); }

.sect-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.005em;
  margin-top: .9rem;
}
.body-copy {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #3A3A36;
  max-width: 54ch;
}
.body-copy + .body-copy { margin-top: 1.15em; }

.sect-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(44px, 6vw, 84px);
}

/* underline link — black line sweeps out, green sweeps in */
.link-underline {
  position: relative;
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding-bottom: 7px;
  white-space: nowrap;
}
.link-underline::after,
.link-underline::before {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
}
.link-underline::after {
  background: currentColor;
  transform: scaleX(1); transform-origin: right;
  transition: transform .5s var(--ease);
}
.link-underline::before {
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease) .14s;
}
.link-underline:hover::after, a:hover .link-underline::after { transform: scaleX(0); }
.link-underline:hover::before, a:hover .link-underline::before { transform: scaleX(1); }

.green-rule {
  display: block;
  width: 64px; height: 5px;
  background: var(--green);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  transform-origin: center;
}

/* ── Media / photography law: everything monochrome ── */
.media {
  position: relative;
  overflow: hidden;
  background: var(--grey-soft);
}
.media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  transition: transform 1.2s var(--ease);
}

/* ── Reveal system (JS-gated) ── */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), clip-path 1.1s var(--ease);
}
html.js [data-reveal].is-in { opacity: 1; transform: none; }
html.js [data-delay="2"] { transition-delay: .12s; }
html.js [data-delay="3"] { transition-delay: .24s; }
html.js [data-delay="4"] { transition-delay: .36s; }
html.js .media[data-reveal] { clip-path: inset(0 0 100% 0); transform: none; }
html.js .media[data-reveal].is-in { clip-path: inset(0 0 0% 0); }
html.js .media[data-reveal] img { transform: scale(1.14); }
html.js .media[data-reveal].is-in img { transform: scale(1); }
html.js .green-rule[data-reveal] { transform: scaleX(0); }
html.js .green-rule[data-reveal].is-in { transform: scaleX(1); }

/* ═══ Preloader ═══ */
#preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--paper);
  display: grid; place-items: center;
  transition: transform 1s var(--ease-io);
}
#preloader.is-done { transform: translateY(-101%); }
.pre-inner { text-align: center; }
.pre-logo {
  display: block;
  width: clamp(190px, 32vw, 300px);
  height: auto;
  margin-inline: auto;
  transform: translateY(24px);
  opacity: 0;
  animation: preIn .9s var(--ease) .15s forwards;
}
@keyframes preIn {
  to { transform: translateY(0); opacity: 1; }
}
.pre-bar {
  display: block;
  width: min(56vw, 320px);
  height: 6px;
  background: #E7E7E2;
  margin: 30px auto 0;
  position: relative;
  overflow: hidden;
}
.pre-bar i {
  position: absolute; inset: 0;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.3s var(--ease);
}
#preloader.is-loading .pre-bar i { transform: scaleX(1); }

/* ═══ Header ═══ */
.site-head {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  height: var(--head-h);
  display: flex; align-items: center;
  transition: background .45s var(--ease), color .45s var(--ease),
              box-shadow .45s var(--ease), height .45s var(--ease);
}
.head-inner {
  width: min(100% - clamp(32px, 5vw, 96px), 1720px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.head-left { display: flex; align-items: center; gap: clamp(16px, 2vw, 34px); }
.head-right { display: flex; align-items: center; gap: clamp(16px, 2vw, 34px); justify-content: flex-end; }
.head-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.head-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.head-link:hover::after { transform: scaleX(1); }
.head-bag sup { font-size: 8px; letter-spacing: 0; margin-left: 2px; }

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
/* Header wordmark = EXACT vector trace of the real ZASA logo (ZASA logo.jpeg),
   traced from the source artwork into a single SVG path + the brand green bar.
   Letters use currentColor, so they follow the header text colour across
   is-light / is-solid states; the bar stays brand green. Vector → always sharp,
   sized by HEIGHT only, so it can never squish or blur. */
.logo-svg {
  display: block;
  height: 34px;
  width: auto;
  overflow: visible;
  transition: height .45s var(--ease), opacity .35s var(--ease);
}
.logo-bar { transition: opacity .35s var(--ease); }
.site-head.is-solid .logo-svg { height: 28px; }
.wordmark:hover .logo-svg { opacity: .82; }
@media (max-width: 900px) {
  .logo-svg { height: 29px; }
  .site-head.is-solid .logo-svg { height: 25px; }
}
/* header states */
.site-head.is-light { color: var(--paper); }
.site-head.is-light .head-link::after { background: var(--paper); }
.site-head.is-solid {
  background: var(--paper);
  color: var(--ink);
  height: 62px;
  box-shadow: 0 1px 0 var(--line);
}
.site-head.is-solid .head-link::after { background: var(--green); }
.site-head.is-hidden { transform: translateY(-100%); }

/* burger */
.burger { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.burger-lines { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.burger-lines i {
  display: block; height: 1.5px; width: 100%;
  background: currentColor;
  transition: transform .4s var(--ease), width .4s var(--ease);
}
.burger:hover .burger-lines i:nth-child(2) { width: 60%; }
.burger-label {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 400;
}

/* ═══ Menu overlay ═══ */
.menu {
  position: fixed; inset: 0; z-index: 900;
  background: var(--ink); color: var(--paper);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .8s var(--ease-io), visibility 0s .8s;
}
.menu.is-open {
  clip-path: inset(0 0 0% 0);
  visibility: visible;
  transition: clip-path .8s var(--ease-io), visibility 0s;
}
.menu-inner {
  height: 100%;
  width: min(100% - clamp(40px, 7vw, 128px), 1560px);
  margin-inline: auto;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.menu-close {
  position: absolute; top: 28px; right: 0;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line-light);
  transition: color .3s, border-color .3s;
}
.menu-close:hover { color: var(--green); border-color: var(--green); }
.menu-list { list-style: none; }
.menu-list li { overflow: hidden; }
.menu-link {
  display: inline-flex;
  align-items: baseline;
  gap: clamp(14px, 2vw, 26px);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 6.4vh, 4.2rem);
  line-height: 1.32;
  transform: translateY(110%);
  transition: transform .9s var(--ease), color .4s;
}
.menu.is-open .menu-link { transform: translateY(0); }
.menu.is-open li:nth-child(1) .menu-link { transition-delay: .18s; }
.menu.is-open li:nth-child(2) .menu-link { transition-delay: .24s; }
.menu.is-open li:nth-child(3) .menu-link { transition-delay: .30s; }
.menu.is-open li:nth-child(4) .menu-link { transition-delay: .36s; }
.menu.is-open li:nth-child(5) .menu-link { transition-delay: .42s; }
.menu.is-open li:nth-child(6) .menu-link { transition-delay: .48s; }
.menu-index {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(250, 250, 248, .45);
}
.menu-link:hover { color: var(--green); font-style: italic; }
.menu-foot {
  position: absolute; bottom: 34px; left: 0; right: 0;
  display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); flex-wrap: wrap;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(250, 250, 248, .55);
}
.menu-foot a:hover { color: var(--green); }

/* ═══ Hero ═══ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  opacity: 0;
  transition: opacity 1.5s var(--ease);
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04) brightness(.92);
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 6, .62) 0%, rgba(5, 8, 6, .18) 45%, rgba(5, 8, 6, .28) 100%);
}

.hero-copy-wrap {
  position: absolute; inset: 0;
  width: min(100% - clamp(40px, 7vw, 128px), 1560px);
  margin-inline: auto;
}
.hero-copy {
  position: absolute;
  left: 0;
  bottom: clamp(110px, 17vh, 190px);
  max-width: 760px;
  color: var(--paper);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  pointer-events: none;
  visibility: hidden;
}
.hero-copy.is-active {
  opacity: 1; transform: none;
  pointer-events: auto;
  visibility: visible;
  transition-delay: .35s;
}
.hero-copy .kicker { color: rgba(250, 250, 248, .72); }
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: .98;
  letter-spacing: -.012em;
  margin-top: 1.3rem;
}
.hero-title em { font-style: italic; font-weight: 400; }
.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(.95rem, 1.2vw, 1.08rem);
  font-weight: 300;
  letter-spacing: .02em;
  color: rgba(250, 250, 248, .82);
}
.hero-cta { margin-top: 2.1rem; color: var(--paper); }

.hero-meta {
  position: absolute;
  right: clamp(20px, 3.5vw, 64px);
  bottom: clamp(40px, 7vh, 72px);
  display: flex; align-items: center; gap: 18px;
  color: rgba(250, 250, 248, .75);
}
.hero-count { font-size: 11px; letter-spacing: .22em; font-weight: 400; }
.hero-progress {
  position: relative;
  width: clamp(90px, 10vw, 150px); height: 1px;
  background: rgba(250, 250, 248, .28);
  overflow: hidden;
}
.hero-progress i {
  position: absolute; inset: 0;
  background: var(--paper);
  transform: scaleX(0); transform-origin: left;
}
.hero-progress i.run { transform: scaleX(1); transition: transform 6.2s linear; }

.hero-scrollcue {
  position: absolute;
  left: 50%; bottom: 0;
  width: 1px; height: clamp(48px, 8vh, 78px);
  overflow: hidden;
}
.hero-scrollcue i {
  position: absolute; left: 0; top: -100%;
  width: 100%; height: 100%;
  background: rgba(250, 250, 248, .75);
  animation: cue 2.2s var(--ease-io) infinite;
}
@keyframes cue {
  0% { top: -100%; } 55% { top: 0; } 100% { top: 100%; }
}

/* ═══ Marquee ═══ */
.marquee {
  border-block: 1px solid var(--line);
  padding: 17px 0;
  overflow: hidden;
  background: var(--paper);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; align-items: center; flex-shrink: 0; }
.mq-item {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  white-space: nowrap;
}
.mq-bar {
  display: inline-block;
  width: 32px; height: 5px;
  background: var(--green);
  margin: 0 clamp(1.6rem, 3vw, 3rem);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══ Manifesto ═══ */
.manifesto { padding-block: var(--sect); }
.manifesto-line {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1.38;
  letter-spacing: 0;
  margin-top: 2.2rem;
}
.manifesto-line .w { opacity: .1; transition: opacity .45s var(--ease); }
.manifesto-line .w.on { opacity: 1; }

/* ═══ Collections ═══ */
.collections { padding-block: 0 var(--sect); }
.col-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.5vw, 44px);
}
.col-item { display: block; }
.col-item .media { aspect-ratio: 4 / 5; }
.col-item--a { grid-column: 1 / span 6; }
.col-item--b { grid-column: 8 / span 5; margin-top: clamp(70px, 10vw, 170px); }
.col-item--b .media { aspect-ratio: 3 / 4; }
.col-item--c { grid-column: 2 / span 4; margin-top: clamp(36px, 5vw, 90px); }
.col-item--c .media { aspect-ratio: 3 / 4; }
.col-item--d { grid-column: 7 / span 6; margin-top: clamp(90px, 13vw, 220px); }
.col-item--d .media { aspect-ratio: 16 / 11; }
.col-item:hover .media img { transform: scale(1.05); }
.col-cap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  column-gap: 16px;
  padding-top: 18px;
}
.col-idx {
  font-size: 11px; letter-spacing: .18em; font-weight: 400; color: var(--grey);
}
.col-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.1;
}
.col-tag {
  grid-column: 2;
  font-size: .92rem; color: var(--grey);
  margin-top: 4px;
}
.col-cta {
  grid-column: 3; grid-row: 1;
  opacity: 0; transform: translateY(6px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.col-item:hover .col-cta { opacity: 1; transform: none; }
@media (hover: none) { .col-cta { opacity: 1; transform: none; } }

/* ═══ Atelier ═══ */
.atelier { padding-block: 0 var(--sect); }
.atelier-grid {
  display: grid;
  grid-template-columns: 6.5fr 5.5fr;
  gap: clamp(36px, 6vw, 110px);
  align-items: stretch;
}
.atelier-media {
  position: relative;
  height: 100%;
  min-height: 100%;
}
.atelier-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.atelier-body { padding-top: clamp(0px, 2vw, 26px); }
.atelier-body .sect-title { margin-bottom: 2.2rem; }
.stats {
  display: flex;
  gap: clamp(2rem, 4vw, 3.6rem);
  border-top: 1px solid var(--line);
  padding-top: 2.1rem;
  margin: 2.8rem 0;
}
.stat { display: flex; flex-direction: column; gap: .45rem; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1;
}
.stat-num::after { content: ""; display: block; width: 26px; height: 4px; background: var(--green); margin-top: .7rem; }
.stat-label {
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 400; color: var(--grey);
}
.atelier-sub { width: min(62%, 340px); aspect-ratio: 4 / 3; margin: 0 0 2.6rem; }

/* ═══ Green Room ═══ */
.greenroom {
  background: var(--green-deep);
  color: var(--cream);
  padding-block: clamp(110px, 15vw, 210px);
}
.greenroom .green-rule { margin: 0 auto 2.6rem; }
.green-state {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.4vw, 3.2rem);
  line-height: 1.42;
  margin-top: 2.2rem;
}

/* ═══ Lookbook — native horizontal swipe row (no scroll-jack) ═══ */
.lookbook { padding-block: var(--sect) 0; }
.lb-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: clamp(40px, 5vw, 70px); }
.lb-hint { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--grey); }
.hs-outer { height: auto; }
.hs-sticky { position: static; height: auto; overflow: visible; }
.hs-track {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  padding-inline: clamp(20px, 7vw, 96px);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.hs-track::-webkit-scrollbar { display: none; }
.lb-panel {
  flex: 0 0 auto;
  width: clamp(260px, 30vw, 420px);
  scroll-snap-align: center;
}
.lb-panel .media { aspect-ratio: 3 / 4; display: block; }
.lb-panel:hover .media img { transform: scale(1.045); }
.lb-panel figcaption {
  margin-top: 14px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 400; color: var(--grey);
}
.lb-end {
  width: clamp(300px, 34vw, 500px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: 1rem;
}
.lb-end-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 1;
}
.lb-end-sub { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--grey); }
@media (max-width: 900px) {
  .lb-panel { width: min(74vw, 340px); }
}

/* ═══ Selected Pieces ═══ */
.pieces { padding-block: var(--sect); }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 36px);
}
.prod-media { aspect-ratio: 3 / 4; }
.prod-card:hover .prod-media img { transform: scale(1.07) translateY(-1.5%); }
.prod-cap { padding-top: 15px; }
.prod-name {
  display: inline;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 2;
  background-image: linear-gradient(var(--green), var(--green));
  background-repeat: no-repeat;
  background-size: 0% 1.5px;
  background-position: 0 100%;
  transition: background-size .55s var(--ease);
}
.prod-card:hover .prod-name { background-size: 100% 1.5px; }
.prod-price { font-size: .92rem; color: var(--grey); margin-top: .5rem; }

/* ═══ Quote ═══ */
.quote { padding-block: 0 var(--sect); }
.big-quote {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.8vw, 3.5rem);
  line-height: 1.35;
}
.quote-mark {
  position: absolute;
  top: -0.55em; left: 50%;
  transform: translateX(-50%);
  font-size: 3.2em;
  line-height: 1;
  color: var(--green);
  opacity: .16;
  pointer-events: none;
}
.big-quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 2.4rem;
}

/* ═══ Journal ═══ */
.journal { padding-block: 0 var(--sect); }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 44px);
}
.j-card .media { aspect-ratio: 3 / 2.15; }
.j-card:hover .media img { transform: scale(1.05); }
.j-meta {
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 400; color: var(--grey);
  margin-top: 1.25rem;
}
.j-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.3;
  margin: .55rem 0 .9rem;
  max-width: 26ch;
}
.j-card .link-underline { opacity: 0; transform: translateY(6px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.j-card:hover .link-underline { opacity: 1; transform: none; }
@media (hover: none) { .j-card .link-underline { opacity: 1; transform: none; } }

/* ═══ Boutique ═══ */
.boutique { padding-block: 0 var(--sect); }
.bout-grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(36px, 6vw, 110px);
  align-items: center;
}
.bout-media { aspect-ratio: 4 / 4.7; }
.bout-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 3vw, 3rem);
  margin: 2.6rem 0 2.8rem;
  max-width: 560px;
}
.bout-loc h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: .8rem;
}
.bout-loc p { font-size: .95rem; color: #3A3A36; line-height: 1.75; }
.bout-hours {
  font-size: 10.5px !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey) !important;
  margin-top: .7rem;
  font-weight: 400;
}

/* ═══ Newsletter ═══ */
.newsletter {
  border-top: 1px solid var(--line);
  padding-block: clamp(90px, 11vw, 150px);
}
.news-line {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.3;
  margin-top: 1.4rem;
}
.news-form {
  display: flex;
  max-width: 560px;
  margin: 2.8rem auto 0;
}
.news-input {
  flex: 1;
  min-width: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  padding: 14px 6px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  transition: border-color .4s;
}
.news-input::placeholder { color: #9A9A94; }
.news-input:focus { outline: none; border-bottom-color: var(--green); border-bottom-width: 2px; }
.news-input.is-error { border-bottom-color: #A8402F; }
.news-btn {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 14px 4px 14px 26px;
  border-bottom: 1px solid var(--ink);
  transition: color .35s, border-color .35s;
}
.news-btn:hover { color: var(--green); border-color: var(--green); }
.news-note { font-size: 11.5px; color: var(--grey); margin-top: 1.3rem; letter-spacing: .04em; }
.news-success {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  margin-top: 2.2rem;
}

/* ═══ Footer ═══ */
.footer {
  background: var(--ink);
  color: #D9D9D4;
  padding-top: clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.7fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.foot-col h4 {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #82827C;
  margin-bottom: 1.3rem;
}
.foot-col a {
  display: block;
  font-size: .95rem;
  font-weight: 300;
  padding: .28rem 0;
  width: fit-content;
  position: relative;
  transition: color .3s;
}
.foot-col a:hover { color: var(--white); }
.foot-col a::after {
  content: ""; position: absolute; left: 0; bottom: 2px;
  width: 100%; height: 1px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.foot-col a:hover::after { transform: scaleX(1); }
.foot-col p { font-size: .95rem; font-weight: 300; line-height: 2.1; color: #B9B9B2; }

.foot-mark {
  text-align: center;
  margin-top: clamp(60px, 8vw, 110px);
  line-height: 0;
}
/* Footer wordmark = the real ZASA logo artwork (identical to header/preloader),
   white version on the ink footer. */
.foot-mark-img {
  display: block;
  width: clamp(260px, 42vw, 620px);
  height: auto;
  margin-inline: auto;
}
.foot-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-light);
  margin-top: clamp(40px, 5vw, 70px);
  padding: 1.7rem 0 2.1rem;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #8E8E88;
}
.foot-base .link-underline { color: #D9D9D4; }

/* ═══════════════ Responsive ═══════════════ */
@media (max-width: 1100px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 40px); }
  .head-left .head-link, .head-right .head-link:not(.head-bag) { display: none; }
}

@media (max-width: 900px) {
  :root { --head-h: 64px; --sect: clamp(80px, 16vw, 120px); }
  .col-grid { grid-template-columns: 1fr; gap: clamp(44px, 9vw, 64px); }
  .col-item--a, .col-item--b, .col-item--c, .col-item--d { grid-column: 1 / -1; margin-top: 0; }
  .col-item--c { width: 86%; }
  .col-item--b { width: 92%; margin-left: auto; }
  .atelier-grid { grid-template-columns: 1fr; gap: 44px; align-items: start; }
  .atelier-media { position: relative; top: 0; height: auto; min-height: 0; aspect-ratio: 4 / 4.4; }
  .bout-grid { grid-template-columns: 1fr; gap: 44px; }
  .bout-media { order: -1; aspect-ratio: 16 / 11; }
  .journal-grid { grid-template-columns: 1fr; gap: 52px; }
  .j-title { max-width: none; }
  .hero-copy { bottom: clamp(96px, 15vh, 150px); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-col--wide { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .sect-head { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .stats { flex-wrap: wrap; gap: 1.8rem 2.4rem; }
  .atelier-sub { width: 74%; }
  .bout-cols { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 14px 12px; }
  .prod-name { font-size: 10px; }
  .prod-price { font-size: .82rem; }
  .news-form { flex-direction: column; gap: 1.4rem; }
  .news-btn { align-self: flex-start; padding-left: 0; }
  .hero-meta { right: 20px; bottom: 30px; }
  .hero-progress { width: 70px; }
  .menu-link { font-size: clamp(1.9rem, 8.4vw, 2.6rem); }
  .foot-base { flex-direction: column; align-items: flex-start; gap: .9rem; }
  .mq-bar { margin: 0 1.2rem; }
}

/* ═══ QA screenshot mode (?qa=1) ═══ */
html.qa { scroll-behavior: auto !important; }
html.qa #preloader { display: none !important; }
html.qa .hero { height: 860px; min-height: 0; }
html.qa .hs-track { overflow-x: visible !important; flex-wrap: nowrap; }
@media (max-width: 640px) { html.qa .hero { height: 720px; } }
html.qa *, html.qa *::before, html.qa *::after {
  transition: none !important;
  animation: none !important;
}
html.qa [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
html.qa .media[data-reveal] img { transform: none !important; }
html.qa .manifesto-line .w { opacity: 1 !important; }
html.qa .hero-slide.is-active img { transform: none !important; }

/* ═══ Reduced motion ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  html.js [data-reveal] { opacity: 1; transform: none; clip-path: none; }
  html.js .media[data-reveal] img { transform: none; }
  .manifesto-line .w { opacity: 1; }
  .marquee-track { animation: none; }
  .hero-slide.is-active img { transform: none; }
}
