/* ── Instrument Serif, self-hosted ───────────────────────────────
   Served from the project so the page does not depend on reaching a
   third-party font CDN. Subsets and unicode-ranges match Google's. */
@font-face {
  font-family: 'Instrument Serif'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/instrument-serif-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Serif'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/instrument-serif-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument Serif'; font-style: italic; font-weight: 400; font-display: swap;
  src: url('../fonts/instrument-serif-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Serif'; font-style: italic; font-weight: 400; font-display: swap;
  src: url('../fonts/instrument-serif-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ══════════════════════════════════════════════════════════════
   ZAK WEARS — editorial silk atelier
   Palette: ivory · champagne · sand · black · warm taupe
   Display face: Instrument Serif (single serif, throughout)
   ══════════════════════════════════════════════════════════════ */

:root {
  --ivory:      #F7F4EE;
  --paper:      #FBFAF6;
  --champagne:  #E7D7BF;
  --sand:       #DCCAAE;
  --taupe:      #8D7E6D;
  --taupe-dim:  #A2937F;
  --ink:        #15130F;
  --ink-2:      #3B342B;
  --line:       rgba(21, 19, 15, .14);
  --line-soft:  rgba(21, 19, 15, .08);

  --serif: "Instrument Serif", "Times New Roman", Georgia, serif;

  --gut: clamp(20px, 5vw, 84px);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --slow: 1.05s;
}

/* ── reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(17px, 1.06vw, 19px);
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
h1, h2, h3, h4, p, dl, dd, ol, ul { margin: 0; }
ol, ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }

::selection { background: var(--ink); color: var(--ivory); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--ivory);
  padding: 14px 22px; font-family: var(--serif); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
}
.skip:focus { left: 12px; top: 12px; }

:focus-visible { outline: 1px solid var(--ink); outline-offset: 4px; }

.wrap { width: 100%; max-width: 1560px; margin-inline: auto; padding-inline: var(--gut); }

/* ── shared type ───────────────────────────────────────────── */
.micro,
.eyebrow {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--taupe);
  line-height: 1.5;
  font-weight: 400;
}

h1, h2, h3 { font-weight: 400; letter-spacing: -.015em; line-height: .94; }
h1 { font-size: clamp(3.4rem, 10.5vw, 10.5rem); }
h2 { font-size: clamp(2.6rem, 6.4vw, 6rem); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--taupe); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--serif); font-size: 13px; font-weight: 400;
  letter-spacing: .13em; text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--ivory); }
.btn--bare { border-color: transparent; padding-inline: 0; position: relative; }
.btn--bare::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 8px; height: 1px;
  background: var(--ink); transform-origin: right; transition: transform .6s var(--ease);
}
.btn--bare:hover { background: none; color: var(--ink); }
.btn--bare:hover::after { transform: scaleX(0); transform-origin: left; }
.btn--solid { background: var(--ink); color: var(--ivory); }
.btn--solid:hover { background: var(--ink-2); border-color: var(--ink-2); }

/* ── reveal ────────────────────────────────────────────────────
   Scoped to .js (set synchronously in <head>) so the page is fully
   legible when scripting is unavailable — nothing is hidden that
   JavaScript is not guaranteed to bring back.
   ─────────────────────────────────────────────────────────────── */
.js [data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity var(--slow) var(--ease) var(--d, 0s),
              transform var(--slow) var(--ease) var(--d, 0s);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* Images wipe in behind a rising curtain rather than fading.
   The curtain is applied to the <img>, never to the observed element:
   clipping an element to zero area makes IntersectionObserver report it as
   not intersecting, so it would never be told to reveal itself. */
.js [data-reveal="img"] { opacity: 1; transform: none; }
.js [data-reveal="img"] img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.25s var(--ease) var(--d, 0s);
}
.js [data-reveal="img"].is-in img { clip-path: inset(0 0 0 0); }

/* parallax plates: `scale` is a separate property from `transform`, so the
   rAF loop can own transform outright without clobbering the overscan. */
[data-par] img { scale: 1.10; will-change: transform; }

/* One grade across every photograph so a set shot on different days reads as
   a single season, and no frame shouts louder than the ivory around it. */
main img, .phero img { filter: saturate(.84) contrast(1.02); }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal], .js [data-reveal="img"] {
    opacity: 1; transform: none; transition: none;
  }
  .js [data-reveal="img"] img { clip-path: none; transition: none; }
  [data-par] img { scale: 1; }
}

/* ══════════════════════ HEADER ══════════════════════ */
.head {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  background: color-mix(in srgb, var(--ivory) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line-soft);
}
.head__progress {
  position: absolute; left: 0; bottom: -1px; height: 1px; width: 0;
  background: var(--ink);
}
.head__inner {
  display: flex; align-items: center; gap: 28px;
  padding: 14px var(--gut);
}

.mark { display: grid; gap: 3px; margin-right: auto; }
.mark__name {
  font-size: 23px; letter-spacing: .15em; line-height: 1;
  font-family: var(--serif); font-weight: 400;
}
.mark__name em { font-style: normal; color: var(--taupe); }
.mark__sub {
  font-family: var(--serif); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--taupe-dim);
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-family: var(--serif); font-size: 13.5px; letter-spacing: .07em;
  text-transform: uppercase; color: var(--ink-2);
  display: inline-flex; align-items: baseline; gap: 6px;
  position: relative; padding-block: 6px;
  transition: color .4s var(--ease);
}
.nav a i { font-style: normal; font-size: 10.5px; color: var(--taupe-dim); letter-spacing: .04em; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--ink); transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__legal { color: var(--taupe) !important; }
.nav__legal::after { background: var(--taupe); }

.head__tel {
  font-family: var(--serif); font-size: 13px; letter-spacing: .08em;
  color: var(--ink); white-space: nowrap;
  padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px;
  transition: background .5s var(--ease), color .5s var(--ease);
}
.head__tel:hover { background: var(--ink); color: var(--ivory); }

.burger { display: none; align-items: center; gap: 10px; }
.burger span { display: block; width: 22px; height: 1px; background: var(--ink); transition: transform .45s var(--ease), opacity .3s; }
.burger span:nth-child(2) { width: 14px; }
.burger em {
  font-style: normal; font-family: var(--serif); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
}
body.menu-open .burger span:nth-child(1) { transform: translateY(3px) rotate(15deg); }
body.menu-open .burger span:nth-child(2) { transform: translateY(-3px) rotate(-15deg); width: 22px; }

@media (max-width: 1180px) {
  .nav, .head__tel { display: none; }
  .burger { display: flex; }
  .head__inner { padding-block: 16px; }
}

/* full-screen menu */
.menu {
  position: fixed; inset: 0; z-index: 89;
  background: var(--ivory);
  display: flex; flex-direction: column; justify-content: center;
  padding: 110px var(--gut) 40px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .6s var(--ease), visibility .6s;
}
body.menu-open .menu { opacity: 1; visibility: visible; pointer-events: auto; }
.menu__index { display: grid; gap: 2px; margin-bottom: auto; padding-top: 8px; }
.menu__index a {
  display: flex; align-items: baseline; gap: 18px;
  padding: 10px 0; border-bottom: 1px solid var(--line-soft);
  font-size: clamp(2rem, 7vw, 3.6rem); line-height: 1.05;
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), color .4s;
}
body.menu-open .menu__index a { opacity: 1; transform: none; }
.menu__index a:nth-child(1) { transition-delay: .1s; }
.menu__index a:nth-child(2) { transition-delay: .15s; }
.menu__index a:nth-child(3) { transition-delay: .2s; }
.menu__index a:nth-child(4) { transition-delay: .25s; }
.menu__index a:nth-child(5) { transition-delay: .3s; }
.menu__index a:nth-child(6) { transition-delay: .35s; }
.menu__index a:nth-child(7) { transition-delay: .4s; }
.menu__index a:hover { color: var(--taupe); }
.menu__index em {
  font-style: normal; font-family: var(--serif); font-size: 10px;
  letter-spacing: .2em; color: var(--taupe-dim);
}
.menu__foot {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 28px; border-top: 1px solid var(--line);
  font-size: 15px; line-height: 1.5;
}
.menu__foot .micro { margin-bottom: 6px; }
.menu__foot a:hover { color: var(--taupe); }
@media (max-width: 720px) { .menu__foot { grid-template-columns: 1fr; gap: 16px; } }

/* ══════════════════════ HERO ══════════════════════ */
.hero { padding-top: clamp(108px, 13vh, 160px); }
.hero__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 clamp(16px, 2vw, 34px);
  align-items: start;
  padding-inline: var(--gut);
  max-width: 1560px; margin-inline: auto;
}

.hero__type { grid-column: 1 / 7; padding-top: clamp(10px, 4vw, 60px); }
.hero__type .eyebrow { margin-bottom: clamp(20px, 3vw, 34px); }
.hero h1 { margin-bottom: clamp(24px, 3.4vw, 46px); }
.hero__lede {
  max-width: 30ch; color: var(--ink-2);
  font-size: clamp(1.05rem, 1.35vw, 1.32rem); line-height: 1.55;
  margin-bottom: clamp(26px, 3vw, 40px);
}
.hero__acts { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.hero__plate {
  grid-column: 7 / 12; position: relative;
  aspect-ratio: 4 / 5; overflow: hidden;
  background: var(--champagne);
}
.hero__plate img { width: 100%; height: 100%; object-fit: cover; }
.hero__plate figcaption {
  position: absolute; left: 0; bottom: 0;
  background: var(--ivory); padding: 12px 18px 10px;
  font-family: var(--serif); font-size: 12px; letter-spacing: .11em;
  text-transform: uppercase; color: var(--ink-2);
  display: flex; gap: 10px;
}
.hero__plate figcaption i { font-style: normal; color: var(--taupe-dim); }

.hero__inset {
  grid-column: 4 / 7; margin-top: clamp(30px, 5vw, 90px);
  aspect-ratio: 3 / 4; overflow: hidden; background: var(--sand);
}
.hero__inset img { width: 100%; height: 100%; object-fit: cover; }

.hero__note {
  grid-column: 7 / 13; margin-top: 30px;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.hero__note dt {
  font-family: var(--serif); font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--taupe); margin-bottom: 8px;
}
.hero__note dd {
  margin: 0; font-size: clamp(1.35rem, 2.1vw, 2.1rem); line-height: 1;
  white-space: nowrap;
}

@media (max-width: 1000px) {
  .hero__type { grid-column: 1 / -1; }
  .hero__plate { grid-column: 1 / 10; margin-top: 40px; }
  .hero__inset { grid-column: 8 / -1; margin-top: -80px; }
  
}
@media (max-width: 640px) {
  .hero__plate { grid-column: 1 / -1; }
  /* no negative lift here — it would sit on top of the plate's caption */
  .hero__inset { grid-column: 5 / -1; margin-top: 16px; }
  .hero__note { grid-column: 1 / -1; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); }
}

/* ticker */
.ticker {
  margin-top: clamp(46px, 6.4vw, 96px);
  border-block: 1px solid var(--line);
  padding-block: 16px; overflow: hidden;
}
.ticker__row {
  display: flex; align-items: center; gap: 26px; width: max-content;
  animation: slide 44s linear infinite;
  font-size: clamp(1.1rem, 1.8vw, 1.7rem); color: var(--ink-2);
}
.ticker__row i { font-style: normal; color: var(--sand); }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__row { animation: none; } }

/* ══════════════════════ MANIFESTO ══════════════════════ */
.manifesto { padding-block: clamp(60px, 7.6vw, 112px); }
.manifesto__line {
  font-size: clamp(1.8rem, 4.6vw, 4.2rem); line-height: 1.12;
  letter-spacing: -.015em; max-width: 22ch;
}
.manifesto__line em { font-style: italic; color: var(--taupe); }
.manifesto__meta {
  margin-top: clamp(34px, 5vw, 60px);
  margin-left: auto; max-width: 46ch;
  padding-top: 20px; border-top: 1px solid var(--line);
  color: var(--ink-2);
}
@media (min-width: 900px) { .manifesto__meta { width: 46ch; margin-right: 4vw; } }

/* ══════════════════════ SECTION HEADS ══════════════════════ */
.sec { padding-block: clamp(54px, 6.2vw, 94px); position: relative; }
.sec + .sec { border-top: 1px solid var(--line-soft); }

.sechead { margin-bottom: clamp(34px, 4.2vw, 62px); }
.sechead__num {
  font-family: var(--serif); font-size: 12px; letter-spacing: .19em;
  color: var(--taupe-dim); margin-bottom: 14px;
}
.sechead__note {
  margin-top: 22px; max-width: 44ch; color: var(--ink-2);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}
.sechead--split {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; flex-wrap: wrap;
}
.sechead__side { max-width: 40ch; color: var(--ink-2); }
.sechead__side p { font-size: clamp(.98rem, 1.1vw, 1.1rem); }

/* ══════════════════════ 01 · COLLECTION ══════════════════════ */
.coll {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(32px, 3.8vw, 60px) clamp(16px, 2vw, 34px);
  align-items: start;
}

.piece__fig { overflow: hidden; background: var(--champagne); }
.piece__fig img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.piece__cap { padding-top: 16px; display: grid; gap: 6px; }
.piece__idx {
  font-family: var(--serif); font-size: 12px; letter-spacing: .16em; color: var(--taupe-dim);
}
.piece h3 { font-size: clamp(1.6rem, 2.4vw, 2.3rem); }
.piece__desc { color: var(--ink-2); font-size: .96rem; line-height: 1.5; max-width: 34ch; }
.piece__price {
  font-family: var(--serif); font-size: 13px; letter-spacing: .09em;
  color: var(--ink); margin-top: 4px;
}

/* deliberately uneven rhythm */
.piece--a { grid-column: 1 / 6; }
.piece--b { grid-column: 7 / 11; margin-top: clamp(30px, 5.6vw, 96px); }
.coll__aside {
  grid-column: 11 / 13; margin-top: clamp(30px, 5.6vw, 96px);
  padding-top: 16px; border-top: 1px solid var(--line);
  color: var(--ink-2); font-size: .92rem; line-height: 1.55;
}
.coll__aside .micro { margin-bottom: 10px; }
.piece--c { grid-column: 2 / 6; margin-top: clamp(0px, 3vw, 50px); }
.piece--d { grid-column: 7 / 13; }
.piece--e { grid-column: 1 / 5; }
.piece--f { grid-column: 6 / 12; margin-top: clamp(16px, 3.6vw, 60px); }

.piece--d .piece__fig img,
.piece--f .piece__fig img { aspect-ratio: 4 / 3; }
.piece--a .piece__fig img { aspect-ratio: 4 / 5; }

.coll__foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 30px; flex-wrap: wrap;
  margin-top: clamp(38px, 5vw, 74px); padding-top: 24px;
  border-top: 1px solid var(--line);
}
.coll__foot p { max-width: 48ch; color: var(--ink-2); }
.coll__foot span { color: var(--ink); }

@media (max-width: 900px) {
  .piece--a, .piece--d, .piece--f { grid-column: 1 / -1; }
  .piece--b { grid-column: 1 / 9; margin-top: 0; }
  .piece--c { grid-column: 4 / -1; margin-top: 0; }
  .piece--e { grid-column: 1 / 9; }
  .coll__aside { grid-column: 1 / -1; margin-top: 0; }
}
@media (max-width: 560px) {
  .piece--b, .piece--c, .piece--e { grid-column: 1 / -1; }
}

/* ══════════════════════ 02 · NEW ARRIVALS ══════════════════════ */
.rail__ctrls { display: flex; gap: 10px; margin-top: 20px; }
.rail__btn {
  width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 999px; font-size: 15px; line-height: 1;
  display: grid; place-items: center;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s;
}
.rail__btn:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.rail {
  display: flex; gap: clamp(16px, 2vw, 30px);
  overflow-x: auto;
  /* proximity + scroll-padding, or the first snap eats the left gutter */
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--gut);
  padding-inline: var(--gut); padding-bottom: 12px;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }

.card { flex: 0 0 clamp(230px, 25vw, 380px); }
.card figure { overflow: hidden; background: var(--sand); }
.card figure img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.card__cap { padding-top: 14px; display: grid; gap: 5px; }
.card__tag {
  font-family: var(--serif); font-size: 11.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--taupe);
}
.card h3 { font-size: clamp(1.35rem, 1.8vw, 1.75rem); }
.card__cap p:not(.card__tag):not(.card__price) { color: var(--ink-2); font-size: .93rem; line-height: 1.45; }
.card__price {
  font-family: var(--serif); font-size: 12.5px; letter-spacing: .09em; margin-top: 3px;
}

/* ══════════════════════ 03 · CRAFTSMANSHIP ══════════════════════ */
.craft {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 90px); align-items: start;
}
.craft__sticky { position: sticky; top: 110px; }
.craft__fig { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--champagne); }
.craft__fig img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.04);
  transition: opacity 1s var(--ease), transform 1.6s var(--ease);
}
.craft__fig img.is-on { opacity: 1; transform: scale(1); }
.craft__fig figcaption {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  background: var(--ivory); padding: 11px 18px 9px;
  font-family: var(--serif); font-size: 12px; letter-spacing: .11em;
  text-transform: uppercase; display: flex; gap: 10px;
}
.craft__fig figcaption i { font-style: normal; color: var(--taupe-dim); }

.craft__steps { display: grid; gap: clamp(34px, 4.4vw, 66px); }
.craft__step { padding-top: 18px; border-top: 1px solid var(--line); }
.craft__num {
  font-family: var(--serif); font-size: 12px; letter-spacing: .19em;
  text-transform: uppercase; color: var(--taupe-dim); margin-bottom: 12px;
}
.craft__step h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 12px; }
.craft__step p:last-child { color: var(--ink-2); max-width: 40ch; }

@media (max-width: 860px) {
  .craft { grid-template-columns: 1fr; }
  .craft__sticky { position: static; }
  .craft__fig { aspect-ratio: 3 / 2; }
}

/* ══════════════════════ 04 · LOOKBOOK ══════════════════════ */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 34px);
  align-items: start;
}
.m { overflow: hidden; background: var(--champagne); position: relative; }
.m img { width: 100%; height: 100%; object-fit: cover; }
.m figcaption {
  padding-top: 10px;
  font-family: var(--serif); font-size: 11.5px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--taupe);
  display: flex; gap: 9px;
  background: var(--ivory);
}
.m i { font-style: normal; color: var(--taupe-dim); }
/* the caption sits under the image, so let the figure grow */
.m { display: flex; flex-direction: column; background: none; }
.m img { background: var(--champagne); }

.m1 { grid-column: 1 / 7; }
.m1 img { aspect-ratio: 4 / 3; }
.m2 { grid-column: 8 / 12; margin-top: clamp(30px, 6vw, 96px); }
.m2 img { aspect-ratio: 3 / 4; }
.m3 { grid-column: 2 / 5; margin-top: clamp(10px, 3vw, 40px); }
.m3 img { aspect-ratio: 3 / 4; }
.m4 { grid-column: 6 / 9; margin-top: clamp(30px, 7vw, 110px); }
.m4 img { aspect-ratio: 3 / 4; }
.m5 { grid-column: 9 / 13; }
.m5 img { aspect-ratio: 4 / 5; }
.m6 { grid-column: 1 / 4; }
.m6 img { aspect-ratio: 1 / 1; }
.m7 { grid-column: 5 / 11; margin-top: clamp(20px, 4vw, 60px); }
.m7 img { aspect-ratio: 3 / 2; }
.m8 { grid-column: 11 / 13; margin-top: clamp(20px, 5vw, 80px); }
.m8 img { aspect-ratio: 2 / 3; }

@media (max-width: 900px) {
  .m1 { grid-column: 1 / -1; }
  .m2 { grid-column: 7 / -1; }
  .m3 { grid-column: 1 / 7; }
  .m4 { grid-column: 7 / -1; }
  .m5 { grid-column: 1 / 8; }
  .m6 { grid-column: 8 / -1; }
  .m7 { grid-column: 1 / -1; }
  .m8 { grid-column: 4 / 10; }
}
@media (max-width: 560px) {
  .m2, .m3, .m4, .m5, .m6, .m8 { grid-column: 1 / -1; margin-top: 0; }
}

/* ══════════════════════ 05 · ABOUT ══════════════════════ */
.about {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(30px, 4vw, 60px) clamp(16px, 2vw, 34px);
  align-items: start;
}
.about__fig { grid-column: 1 / 6; grid-row: 1; overflow: hidden; background: var(--champagne); }
.about__fig img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about__type { grid-column: 7 / 12; grid-row: 1; }
.about__lede {
  font-size: clamp(1.35rem, 2.1vw, 2rem); line-height: 1.28;
  margin-block: 26px 24px; max-width: 26ch;
}
.about__type p:not(.about__lede):not(.sechead__num) {
  color: var(--ink-2); max-width: 44ch; margin-bottom: 18px;
}
.about__facts {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line);
}
.about__facts dt {
  font-family: var(--serif); font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--taupe); margin-bottom: 6px;
}
.about__facts dd { margin: 0; font-size: clamp(1.4rem, 2vw, 1.9rem); line-height: 1; }

/* tucked into the second row on the text side, lifted so it sits beside the
   tall plate rather than leaving a dead corner beneath it */
.about__inset { grid-column: 8 / 12; grid-row: 2; margin-top: -9%; overflow: hidden; }
.about__inset img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; background: var(--sand); }
.about__inset figcaption {
  padding-top: 10px; font-family: var(--serif); font-size: 11.5px;
  letter-spacing: .13em; text-transform: uppercase; color: var(--taupe);
  display: flex; gap: 9px;
}
.about__inset i { font-style: normal; color: var(--taupe-dim); }

@media (max-width: 900px) {
  .about__fig { grid-column: 1 / 9; grid-row: auto; }
  .about__type { grid-column: 1 / -1; grid-row: auto; }
  .about__inset { grid-column: 6 / -1; grid-row: auto; margin-top: 0; }
}
@media (max-width: 560px) {
  .about__fig, .about__inset { grid-column: 1 / -1; }
}

/* ══════════════════════ 06 · FAQ ══════════════════════ */
.faq {
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 5vw, 90px); align-items: start;
}
.faq__head { position: sticky; top: 110px; }
.faq__head h2 { line-height: .92; }
.faq__note { margin-top: 24px; max-width: 30ch; color: var(--ink-2); font-size: .98rem; }

.acc__item { border-top: 1px solid var(--line); }
.acc__item:last-child { border-bottom: 1px solid var(--line); }
.acc__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; text-align: left; padding: 22px 0;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem); line-height: 1.3;
  transition: color .4s var(--ease);
}
.acc__q:hover { color: var(--taupe); }
.acc__q i {
  position: relative; flex: 0 0 14px; height: 14px;
}
.acc__q i::before, .acc__q i::after {
  content: ""; position: absolute; inset: 50% 0 auto 0; height: 1px;
  background: currentColor; transition: transform .5s var(--ease);
}
.acc__q i::after { transform: rotate(90deg); }
.acc__item.is-open .acc__q i::after { transform: rotate(0deg); }

.acc__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .6s var(--ease);
}
.acc__item.is-open .acc__a { grid-template-rows: 1fr; }
.acc__a > p {
  overflow: hidden; color: var(--ink-2); max-width: 58ch;
  font-size: .98rem; line-height: 1.62;
}
.acc__item.is-open .acc__a > p { padding-bottom: 24px; }

@media (max-width: 860px) {
  .faq { grid-template-columns: 1fr; }
  .faq__head { position: static; }
}

/* ══════════════════════ 07 · CONTACT ══════════════════════ */
.contact {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(40px, 6vw, 100px); align-items: start;
}
.contact__lede {
  font-size: clamp(1.2rem, 1.8vw, 1.65rem); line-height: 1.35;
  margin-block: 24px 34px; max-width: 26ch; color: var(--ink-2);
}
.contact__details {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 30px; padding-top: 26px; border-top: 1px solid var(--line);
}
.contact__details dt {
  font-family: var(--serif); font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--taupe); margin-bottom: 8px;
}
.contact__details dd { margin: 0; font-size: 1.05rem; line-height: 1.5; }
.contact__details a { border-bottom: 1px solid var(--line); transition: border-color .4s; }
.contact__details a:hover { border-color: var(--ink); }

.contact__foot {
  margin-top: clamp(30px, 4vw, 48px);
  max-width: 38ch; color: var(--taupe);
  font-size: .98rem; line-height: 1.6;
}

/* form */
.form { padding: clamp(26px, 3vw, 42px); background: var(--paper); border: 1px solid var(--line-soft); }
.form__title {
  font-family: var(--serif); font-size: 12px; letter-spacing: .19em;
  text-transform: uppercase; color: var(--taupe); margin-bottom: 26px;
}
.field { display: grid; gap: 8px; margin-bottom: 22px; }
.field label {
  font-family: var(--serif); font-size: 12.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-2);
}
.field label span { color: var(--taupe-dim); letter-spacing: .1em; }
.field input, .field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 10px 0; font-family: var(--serif); font-size: 1.05rem;
  transition: border-color .4s var(--ease);
  border-radius: 0;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 108px; }
.field.is-bad input, .field.is-bad textarea { border-color: #A2452F; }
.form .btn { margin-top: 8px; }
.form__hint {
  margin-top: 16px; font-family: var(--serif); font-size: 13px;
  line-height: 1.6; color: var(--taupe);
}

@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .contact__details { grid-template-columns: 1fr; } }

/* ══════════════════════ FOOTER ══════════════════════ */
.foot {
  background: var(--ink); color: var(--ivory);
  padding-block: clamp(48px, 6vw, 84px) 28px;
  margin-top: clamp(38px, 5vw, 72px);
}
.foot .micro { color: var(--sand); }
.foot__top { padding-bottom: clamp(40px, 5vw, 70px); border-bottom: 1px solid rgba(247,244,238,.14); }
.foot__wordmark {
  font-size: clamp(2.8rem, 12vw, 9.5rem);
  letter-spacing: .02em; line-height: .88;
}
.foot__line { margin-top: 16px; color: var(--champagne); font-size: clamp(1.05rem, 1.6vw, 1.4rem); }

.foot__cols {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 30px; padding-block: clamp(40px, 5vw, 66px);
}
.foot__cols > div { display: grid; gap: 9px; align-content: start; }
.foot__cols .micro { margin-bottom: 6px; }
.foot__cols a {
  font-size: .98rem; color: rgba(247,244,238,.78);
  transition: color .4s var(--ease); justify-self: start;
}
.foot__cols a:hover { color: var(--ivory); }
.foot__addr { color: rgba(247,244,238,.62); font-size: .95rem; line-height: 1.5; }

.foot__base {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid rgba(247,244,238,.14);
  font-family: var(--serif); font-size: 13px; letter-spacing: .07em;
  color: rgba(247,244,238,.6);
}
.foot__base a { border-bottom: 1px solid rgba(247,244,238,.3); }
.foot__base a:hover { color: var(--ivory); }

@media (max-width: 760px) { .foot__cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .foot__cols { grid-template-columns: 1fr; } }
