/* =========================================================
   K HAIR STUDIO — Vol. I, No. 01
   Editorial art direction · Playfair Display × Open Sans
   ========================================================= */

:root {
  --paper:   #ffffff;
  --paper-2: #f3eee5;       /* cover stock */
  --ink:     #0a0a0a;
  --ink-2:   #1b1916;
  --mute:    #8a8278;
  --rule:    rgba(10,10,10,.16);
  --rule-2:  rgba(10,10,10,.08);
  --stamp:   #8b1a1a;       /* oxblood ink */
  --warm:    #d8c7a3;

  --serif: "Playfair Display", "Times New Roman", serif;
  --sans:  "Open Sans", -apple-system, "Helvetica Neue", sans-serif;

  --maxw: 1440px;
  --pad:  clamp(20px, 4vw, 80px);
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-soft: cubic-bezier(.4,.0,.2,1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.55 var(--sans);
  font-feature-settings: "ss01","kern","liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
h1,h2,h3,h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ol, ul, dl { margin: 0; padding: 0; }
li { list-style: none; }
::selection { background: var(--ink); color: var(--paper); }

/* paper grain — fine, subtle */
body::after{
  content:"";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: .045;
  background:
    repeating-radial-gradient(circle at 0 0, rgba(0,0,0,.6) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 50% 50%, rgba(0,0,0,.4) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
}

/* ---------- shared display ---------- */
.folio {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  margin-bottom: 28px;
}
.folio::after {
  content:"";
  position: absolute; left: 0; bottom: 0;
  width: 36px; height: 1px; background: var(--ink);
}

.spread {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px,12vw,160px) var(--pad) clamp(40px,6vw,80px);
}
.spread__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8.5vw, 144px);
  line-height: .92;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.spread__title i {
  font-style: italic;
  font-weight: 400;
}
.spread__title .indent { display: block; padding-left: clamp(20px, 8vw, 160px); }
.spread__title .indent--lg { padding-left: clamp(40px, 12vw, 220px); }
.spread__title--display {
  font-size: clamp(56px, 11vw, 184px);
  font-weight: 300;
}
.spread__lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  max-width: 52ch;
  margin-top: 26px;
  color: var(--ink-2);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  border-radius: 0;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover { background: var(--stamp); border-color: var(--stamp); transform: translateY(-2px); }
.btn--out { background: transparent; color: var(--ink); }
.btn--out:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--inv { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--inv.btn--out { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn--inv.btn--out:hover { background: var(--paper); color: var(--ink); }
.btn--lg { padding: 18px 32px; font-size: 12px; }

/* =========================================================
   MASTHEAD
   ========================================================= */
.masthead {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px var(--pad);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.masthead.is-scrolled {
  padding: 12px var(--pad);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--rule-2);
}
.masthead__row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.masthead__edge {
  display: flex; gap: 18px; align-items: center;
}
.masthead__edge--right { justify-content: flex-end; }
.rule {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
}
.rule--mute { color: var(--mute); font-weight: 400; font-style: italic; text-transform: none; letter-spacing: .08em; font-family: var(--serif); font-size: 13px; }
.masthead__nav { display: flex; gap: 22px; justify-self: center; }
.masthead__nav a {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
}
.masthead__nav a::after {
  content:"";
  position: absolute;
  left: 50%; right: 50%; bottom: 0;
  height: 1px; background: var(--ink);
  transition: left .35s var(--ease), right .35s var(--ease);
}
.masthead__nav a:hover::after { left: 0; right: 0; }

.rule--burger { display: none; padding: 6px; }
.rule--burger span {
  display: block; width: 22px; height: 1.2px; background: var(--ink);
  margin: 4px 0; transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.rule--burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.rule--burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.rule--burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 45;
  background: var(--paper);
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  padding: var(--pad);
}
.drawer.is-open { display: flex; }
.drawer nav { display: flex; flex-direction: column; gap: 18px; align-items: center; }
.drawer nav a {
  font-family: var(--serif);
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 300;
  line-height: 1;
}
.drawer nav a i { color: var(--stamp); margin-right: 10px; }
.drawer__cta {
  margin-top: 32px;
  font-family: var(--sans) !important;
  font-size: 12px !important;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
}

/* =========================================================
   COVER
   ========================================================= */
.cover {
  position: relative;
  min-height: 100vh;
  padding: 100px var(--pad) 0;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.cover__top {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 18px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.kicker {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
}
.kicker--center { text-align: center; font-style: italic; font-family: var(--serif); font-size: 13px; letter-spacing: .04em; text-transform: none; font-weight: 400; }
.kicker--right { text-align: right; color: var(--mute); }

.cover__stage {
  flex: 1;
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  min-height: 70vh;
  padding: clamp(40px, 6vw, 80px) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "title   plate"
    "title   plate"
    "lines   plate";
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}

.cover__title {
  grid-area: title;
  font-family: var(--serif);
  font-weight: 300;
  line-height: .82;
  letter-spacing: -.04em;
  align-self: center;
  position: relative;
  z-index: 2;
}
.cover__row { display: block; }
.cover__row--down { padding-left: clamp(20px, 12vw, 200px); margin-top: -.05em; }
.cover__k {
  font-size: clamp(160px, 26vw, 460px);
  font-style: italic;
  font-weight: 400;
  display: inline-block;
  line-height: .8;
  letter-spacing: -.05em;
  position: relative;
  z-index: 2;
  animation: dropK 1.1s var(--ease) both;
}
@keyframes dropK { from { transform: translateY(60px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cover__hair {
  display: inline-block;
  font-size: clamp(56px, 8.5vw, 140px);
  font-style: italic;
  font-weight: 300;
  margin-left: -.1em;
  margin-bottom: .2em;
  vertical-align: bottom;
  animation: rise 1s var(--ease) .15s both;
}
.cover__studio {
  display: inline-block;
  font-size: clamp(72px, 11vw, 184px);
  font-weight: 300;
  letter-spacing: -.04em;
  animation: rise 1s var(--ease) .3s both;
}
@keyframes rise { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.cover__plate {
  grid-area: plate;
  margin: 0;
  position: relative;
  aspect-ratio: 4/5;
  align-self: stretch;
  max-height: 78vh;
  justify-self: end;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  background: var(--ink);
  animation: rise 1.2s var(--ease) .35s both;
}
.cover__plate img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.1) contrast(1.04);
  transform: scale(1.05);
  animation: settle 2s var(--ease) .5s forwards;
}
@keyframes settle { to { transform: scale(1); } }
.cover__plate figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.cover__plate figcaption span { display: inline-block; margin-right: 8px; opacity: .8; }
.cover__plate figcaption em { font-family: var(--serif); font-size: 14px; letter-spacing: 0; text-transform: none; font-style: italic; }

.cover__inset {
  position: absolute;
  left: clamp(40%, 44%, 46%);
  top: 28%;
  width: clamp(120px, 14vw, 200px);
  aspect-ratio: 4/5;
  margin: 0;
  z-index: 3;
  background: var(--ink);
  overflow: hidden;
  box-shadow: -16px 18px 50px -22px rgba(0,0,0,.5);
  animation: rise 1.2s var(--ease) .6s both;
}
.cover__inset img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.15);
}

.coverlines {
  grid-area: lines;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.5;
  color: var(--ink-2);
  align-self: end;
  max-width: 38ch;
  animation: rise 1.1s var(--ease) .5s both;
}
.coverlines li { padding: 6px 0; border-bottom: 1px dotted var(--rule); display: flex; gap: 10px; align-items: baseline; }
.coverlines li:last-child { border-bottom: 0; }
.cl__star { font-style: normal; color: var(--stamp); font-family: var(--sans); font-size: 10px; }

.cover__seal {
  position: absolute;
  right: clamp(12px, 3vw, 40px);
  top: clamp(80px, 12vh, 140px);
  width: clamp(80px, 9vw, 120px);
  color: var(--stamp);
  animation: spin 40s linear infinite, rise 1.2s var(--ease) .8s both;
  z-index: 5;
  mix-blend-mode: multiply;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cover__seal svg { width: 100%; height: 100%; display: block; }

.cover__foot {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--ink);
  gap: 24px;
}
.cover__credit {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
}
.cover__credit span {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  margin-right: 4px;
}
.cover__pull { display: flex; gap: 14px; align-items: center; }
.cover__pull a {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.arrowdown {
  font-family: var(--serif);
  font-size: 22px;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translateY(4px); } }

.ticker {
  margin-top: 24px;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 14px 0;
  background: var(--paper-2);
}
.ticker__track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: tick 40s linear infinite;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
}
.ticker__track i { font-family: var(--serif); font-style: italic; font-size: 16px; text-transform: none; letter-spacing: 0; color: var(--stamp); }
@keyframes tick { to { transform: translateX(-50%); } }

/* =========================================================
   CONTENTS
   ========================================================= */
.contents {
  background: var(--paper-2);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: clamp(80px,12vw,160px) var(--pad);
}
.contents__inner { max-width: var(--maxw); margin: 0 auto; }
.contents__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -.02em;
  max-width: 22ch;
  margin-bottom: 64px;
  text-wrap: balance;
}
.contents__title i { font-style: italic; color: var(--stamp); }

.toc { border-top: 1px solid var(--ink); }
.toc li {
  display: grid;
  grid-template-columns: 90px 1fr 100px;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding .4s var(--ease), background .4s var(--ease);
}
.toc li:hover { padding-left: 16px; background: rgba(0,0,0,.02); }
.toc__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--stamp);
}
.toc__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  flex: 1;
}
.toc__name {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: -.01em;
  line-height: 1;
}
.toc__lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--mute);
}
.toc__page {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: right;
  color: var(--mute);
}

/* =========================================================
   FOLIO I — STUDIO
   ========================================================= */
.folio-i { position: relative; padding-bottom: clamp(60px,8vw,120px); }
.folio-i .spread { padding-bottom: 0; }
.folio-i__plate {
  position: relative;
  margin: clamp(40px,6vw,80px) 0 0;
  height: clamp(60vh, 90vh, 96vh);
  overflow: hidden;
}
.folio-i__plate img {
  position: absolute;
  inset: -10% 0 -10% 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  filter: contrast(1.05) saturate(.95);
  will-change: transform;
}
.bleed-cap {
  position: absolute;
  left: var(--pad); bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.bleed-cap__no {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
}
.bleed-cap__txt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
}
.bleed-cap__txt i { font-style: italic; }

.folio-i__pull {
  max-width: var(--maxw);
  margin: clamp(60px,8vw,120px) auto 0;
  padding: 0 var(--pad);
  text-align: center;
}
.folio-i__pull blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(40px, 7vw, 108px);
  line-height: 1;
  letter-spacing: -.015em;
  position: relative;
  padding: 0;
}
.folio-i__pull blockquote i { font-style: italic; color: var(--stamp); }
.quote__mark {
  font-family: var(--serif);
  font-size: clamp(80px, 16vw, 240px);
  line-height: 0;
  vertical-align: -.1em;
  color: var(--stamp);
  font-weight: 300;
  margin-right: .05em;
  display: inline-block;
  transform: translateY(.3em);
}
.pull__attr {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mute);
}

/* =========================================================
   FOLIO II — ATELIER
   ========================================================= */
.folio-ii {
  background: var(--paper-2);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: clamp(60px,8vw,120px);
}
.spread--ii { padding-bottom: 60px; }
.atelier {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px,4vw,64px) clamp(20px,4vw,80px);
  align-items: start;
}
.atelier__plate {
  margin: 0;
  grid-row: span 3;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 90vh;
}
.atelier__plate img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.1) contrast(1.04);
  transition: transform 1.6s var(--ease);
}
.atelier__plate:hover img { transform: scale(1.04); }
.atelier__plate figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  display: flex; gap: 12px; align-items: baseline;
  color: var(--paper);
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.atelier__plate figcaption i {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.atelier__col p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 18px;
  max-width: 52ch;
}
.atelier__col p i { font-style: italic; }
.atelier__col--lede p:first-child::first-line {
  font-family: var(--serif);
}
.dropcap .dc {
  float: left;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(72px, 8vw, 110px);
  line-height: .8;
  padding: .08em .12em 0 0;
  color: var(--stamp);
  font-weight: 400;
  shape-outside: margin-box;
}
.atelier__col--body { border-top: 1px solid var(--rule); padding-top: 24px; }

.atelier__stats {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 8px;
}
.atelier__stats > div {
  background: var(--paper-2);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.atelier__stats dt {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.atelier__stats dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  text-transform: lowercase;
  font-feature-settings: "smcp" on;
}
.atelier__stats dd i {
  font-style: italic;
  color: var(--stamp);
  font-size: 32px;
  margin-right: 6px;
}

/* =========================================================
   FOLIO III — SERVICES (inverted black page)
   ========================================================= */
.folio-iii {
  background: var(--ink);
  color: var(--paper);
  padding-bottom: clamp(80px,10vw,140px);
}
.spread--inv { padding-bottom: 40px; }
.folio--inv { color: var(--paper); }
.folio--inv::after { background: var(--paper); }
.spread__title--inv { color: var(--paper); }
.spread__title--inv i { color: #d8c7a3; }
.spread__lede--inv { color: rgba(255,255,255,.7); }

.menu {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.2);
}
.menu__item {
  padding: clamp(32px,3vw,56px) clamp(20px,2.4vw,40px);
  border-bottom: 1px solid rgba(255,255,255,.2);
  position: relative;
  transition: background .4s var(--ease);
}
.menu__item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.2); }
.menu__item:hover { background: rgba(255,255,255,.03); }
.menu__head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 22px;
}
.menu__no {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px,1.6vw,22px);
  color: var(--warm);
}
.menu__head h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px,4.5vw,68px);
  line-height: 1;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.menu__rule {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.3);
  margin-bottom: 8px;
}
.menu__desc {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px,1.2vw,18px);
  line-height: 1.5;
  color: rgba(255,255,255,.75);
  max-width: 42ch;
  margin-bottom: 28px;
}
.menu__lines li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,.9);
}
.menu__lines li span:last-child {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--paper);
}
.dots {
  height: 1px;
  background-image: radial-gradient(circle, rgba(255,255,255,.4) .5px, transparent .6px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: center;
  align-self: center;
  position: relative;
  top: -1px;
}

.menu__foot {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding: 0 var(--pad);
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

/* =========================================================
   FOLIO IV — PORTFOLIO
   ========================================================= */
.folio-iv { padding-bottom: clamp(60px,8vw,120px); }
.archive {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.5vw, 40px) clamp(16px, 2vw, 32px);
}
.sheet {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sheet figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4/5;
}
.sheet figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease), filter .6s var(--ease);
  filter: contrast(1.03) saturate(.95);
}
.sheet:hover figure img { transform: scale(1.04); }
.sheet__caption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  align-items: start;
  border-top: 1px solid var(--ink);
  padding-top: 12px;
}
.sheet__no {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--stamp);
  grid-column: 1;
}
.sheet__caption h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.2;
  grid-column: 2;
}
.sheet__caption h3 i { font-style: italic; }
.credits {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 400;
}
.credits li span {
  font-weight: 500;
  color: var(--ink);
  margin-right: 4px;
}

/* asymmetric editorial composition */
.sheet--wide  { grid-column: span 7; }
.sheet--tall  { grid-column: span 5; }
.sheet--half  { grid-column: span 4; }
.sheet--wide figure { aspect-ratio: 5/6; }
.sheet--tall figure { aspect-ratio: 4/5; }
.sheet--half figure { aspect-ratio: 4/5; }

.sheet:nth-child(2) { margin-top: clamp(40px, 8vw, 120px); }
.sheet:nth-child(4) { margin-top: clamp(20px, 4vw, 60px); }
.sheet:nth-child(6) { margin-top: clamp(30px, 6vw, 80px); }
.sheet:nth-child(8) { margin-top: clamp(20px, 4vw, 60px); }

.archive__foot {
  max-width: var(--maxw);
  margin: 64px auto 0;
  padding: 24px var(--pad) 0;
  border-top: 1px solid var(--rule);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
}
.archive__foot a { border-bottom: 1px solid var(--ink); padding-bottom: 1px; }

/* =========================================================
   FOLIO V — CHAIR
   ========================================================= */
.folio-v {
  background: var(--paper-2);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  min-height: 90vh;
}
.chair__plate {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}
.chair__plate img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.1) contrast(1.04);
}
.chair__stamp {
  position: absolute;
  right: 24px; top: 24px;
  width: clamp(90px, 11vw, 140px);
  color: var(--paper);
  animation: spin 50s linear infinite;
  mix-blend-mode: screen;
  opacity: .9;
}
.chair__stamp svg { width: 100%; height: 100%; }
.chair__copy {
  padding: clamp(60px, 8vw, 120px) clamp(28px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}
.chair__copy h2 { margin-bottom: 28px; }
.chair__copy p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 52ch;
}
.incl {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  max-width: 56ch;
}
.incl li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
}
.incl li:last-child { border-bottom: 0; }
.incl li span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--stamp);
  font-size: 22px;
  line-height: 1;
}
.incl li b {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}
.btn--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); align-self: flex-start; }
.btn--ink:hover { background: var(--stamp); border-color: var(--stamp); }

/* =========================================================
   FOLIO VI — VISIT
   ========================================================= */
.folio-vi { padding-bottom: clamp(40px,6vw,80px); }
.visit {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px,4vw,80px);
}
.visit__list { display: flex; flex-direction: column; gap: 28px; }
.visit__list > div {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.visit__list dt {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mute);
  margin-bottom: 10px;
}
.visit__list dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px,1.6vw,22px);
  line-height: 1.4;
  font-weight: 400;
}
.visit__list a {
  border-bottom: 1px solid var(--rule);
  transition: border-color .3s var(--ease);
}
.visit__list a:hover { border-color: var(--ink); }

.visit__map {
  position: relative;
  border: 1px solid var(--ink);
  background: var(--paper-2);
  min-height: 480px;
  overflow: hidden;
}
.visit__map iframe {
  width: 100%; height: 100%;
  min-height: 480px; border: 0;
  filter: grayscale(.6) contrast(1.05);
}
.visit__pin {
  position: absolute;
  left: 14px; bottom: 14px;
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.visit__pin:hover { background: var(--ink); color: var(--paper); }
.visit__compass {
  position: absolute;
  right: 14px; top: 14px;
  width: 36px; height: 36px;
  background: var(--paper);
  border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  border-radius: 50%;
}

/* closer */
.closer {
  max-width: var(--maxw);
  margin: clamp(80px,12vw,160px) auto 0;
  padding: clamp(80px,10vw,140px) var(--pad);
  border-top: 1px solid var(--ink);
  text-align: center;
}
.closer__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 8vw, 128px);
  line-height: .95;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.closer__title i { font-style: italic; color: var(--stamp); }
.closer__actions {
  margin-top: 48px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* =========================================================
   COLOPHON
   ========================================================= */
.colophon {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  padding: clamp(60px,8vw,100px) var(--pad) 32px;
}
.colophon__row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px,4vw,80px);
  align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.colophon__brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--paper);
}
.colophon__k {
  font-family: var(--serif);
  font-size: clamp(72px, 9vw, 132px);
  font-style: italic;
  font-weight: 400;
  line-height: .8;
  color: var(--warm);
}
.colophon__name {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: -.01em;
}
.colophon__name i { font-style: italic; }
.colophon__statement {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: rgba(255,255,255,.85);
  max-width: 50ch;
}
.colophon__grid {
  max-width: var(--maxw);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.colophon__grid h4 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  margin-bottom: 18px;
}
.colophon__grid a {
  display: block;
  padding: 4px 0;
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(255,255,255,.85);
  transition: color .3s var(--ease);
}
.colophon__grid a:hover { color: var(--warm); }
.colophon__grid address {
  margin-top: 12px;
  font-family: var(--serif);
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.65);
}
.colophon__grid .small {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.65);
}
.colophon__foot {
  max-width: var(--maxw);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  gap: 16px;
}
.colophon__foot a { border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 1px; }

/* =========================================================
   REVEAL
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-soft), transform 1.1s var(--ease-soft);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .cover__stage {
    grid-template-columns: 1.2fr 1fr;
  }
  .cover__k { font-size: clamp(140px, 22vw, 320px); }
  .cover__plate { max-width: 380px; }
  .cover__inset { left: 38%; width: clamp(100px, 12vw, 160px); }
}

@media (max-width: 880px) {
  .masthead__nav { display: none; }
  .masthead__edge .rule:not(.rule--burger):not([href]) { display: none; }
  .masthead__edge--right .rule:first-child { display: inline-flex; }
  .rule--burger { display: inline-flex; }
  .masthead__row { grid-template-columns: 1fr auto; }
  .masthead__edge { justify-content: space-between; }

  .cover { padding-top: 90px; }
  .cover__top { grid-template-columns: 1fr; gap: 4px; text-align: center; padding: 12px 0; }
  .cover__top .kicker { text-align: center; }
  .cover__top .kicker--right { text-align: center; }
  .cover__stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "plate"
      "lines";
  }
  .cover__row--down { padding-left: clamp(20px, 14vw, 80px); }
  .cover__plate { max-width: 100%; justify-self: stretch; max-height: 70vh; }
  .cover__inset { left: auto; right: clamp(8px, 4vw, 24px); top: 18%; width: clamp(96px, 24vw, 140px); }
  .cover__seal { top: clamp(60px, 9vh, 100px); }
  .cover__foot { flex-direction: column; align-items: flex-start; }

  .atelier { grid-template-columns: 1fr; }
  .atelier__plate { grid-row: auto; }
  .atelier__stats { grid-column: 1; grid-template-columns: 1fr 1fr; }

  .menu { grid-template-columns: 1fr; }
  .menu__item:nth-child(odd) { border-right: 0; }

  .archive { grid-template-columns: repeat(6, 1fr); }
  .sheet--wide, .sheet--tall, .sheet--half { grid-column: span 6; }
  .sheet:nth-child(2),
  .sheet:nth-child(4),
  .sheet:nth-child(6),
  .sheet:nth-child(8) { margin-top: 0; }

  .folio-v { grid-template-columns: 1fr; }
  .chair__plate { min-height: 55vh; }

  .visit { grid-template-columns: 1fr; }

  .colophon__row { grid-template-columns: 1fr; }
  .colophon__grid { grid-template-columns: 1fr 1fr; }
  .colophon__foot { flex-direction: column; align-items: flex-start; }

  .toc li { grid-template-columns: 60px 1fr 70px; gap: 12px; }
}

@media (max-width: 560px) {
  :root { --pad: 18px; }
  .cover__k { font-size: clamp(140px, 36vw, 240px); }
  .cover__hair { font-size: clamp(48px, 14vw, 88px); }
  .cover__studio { font-size: clamp(64px, 20vw, 128px); }
  .colophon__grid { grid-template-columns: 1fr; }
  .atelier__stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .ticker__track, .cover__seal, .chair__stamp { animation: none; }
}
