/* ============================================================
   STUDIO NOIR — Premium Scandinavian hair studio
   Warm editorial luxury system
   ============================================================ */

:root {
  --bg:        #F7F3EE;
  --bg-2:      #EFE7DD;
  --acc-light: #DCC8B3;
  --acc-med:   #C3A185;
  --acc-dark:  #8A6B52;
  --ink:       #4D3B2F;
  --ink-soft:  #6B5749;
  --line:      rgba(77, 59, 47, 0.14);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1360px;
  --gutter: clamp(22px, 5vw, 72px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
/* unifying warm editorial grade — makes every photo read as one campaign */
img.graded { filter: grayscale(0.22) sepia(0.42) saturate(1.08) contrast(1.02) brightness(1.03); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- shared layout ---------- */
.shell { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--acc-dark);
}
.h-display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.italic { font-style: italic; font-weight: 400; }
.lead {
  font-size: clamp(15px, 1.15vw, 18px);
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 46ch;
}

/* section heading block */
.sec-head { max-width: 720px; }
.sec-head .eyebrow { display: block; margin-bottom: 22px; }
.sec-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 17px 32px;
  border-radius: 100px;
  transition: all 0.45s var(--ease);
  white-space: nowrap;
}
.btn-solid { background: var(--ink); color: var(--bg); }
.btn-solid:hover { background: var(--acc-dark); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-ghost { padding-left: 0; padding-right: 0; letter-spacing: 0.2em; }
.btn-ghost .line { width: 30px; height: 1px; background: currentColor; transition: width 0.45s var(--ease); }
.btn-ghost:hover .line { width: 52px; }
.btn-light { border: 1px solid rgba(247,243,238,0.55); color: var(--bg); }
.btn-light:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.5s var(--ease);
  padding: 26px 0;
}
.header.scrolled {
  background: rgba(247,243,238,0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 16px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand {
  font-family: var(--serif);
  font-size: 25px; font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  padding-left: 0.36em;
  color: var(--bg);
  transition: color 0.5s var(--ease);
}
.header.scrolled .brand { color: var(--ink); }
.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--bg); opacity: 0.92;
  position: relative; padding-bottom: 4px;
  transition: color 0.5s var(--ease);
}
.header.scrolled .nav-links a { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width 0.4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid rgba(247,243,238,0.6); color: var(--bg);
  padding: 12px 24px; border-radius: 100px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  transition: all 0.45s var(--ease);
}
.header.scrolled .nav-cta { border-color: var(--ink); color: var(--ink); }
.nav-cta:hover { background: var(--acc-dark); border-color: var(--acc-dark); color: var(--bg); }
.burger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.burger span { height: 1.5px; background: var(--bg); transition: all 0.4s var(--ease); }
.header.scrolled .burger span { background: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 120px; overflow: hidden; }
.hero-ghost {
  position: absolute; left: -0.06em; top: 50%; transform: translateY(-50%);
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: 27vw; line-height: 0.8; color: var(--acc-light);
  opacity: 0.5; letter-spacing: -0.02em; pointer-events: none; user-select: none;
  z-index: 0; white-space: nowrap;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(30px, 5vw, 80px);
  align-items: center; width: 100%;
}
.hero-copy { max-width: 560px; }
.hero-copy .eyebrow { display: block; margin-bottom: 30px; }
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(48px, 6.4vw, 104px); line-height: 0.96; letter-spacing: -0.015em;
  margin-bottom: 30px;
}
.hero h1 .italic { color: var(--acc-dark); }
.hero-copy .lead { margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-figure {
  position: relative;
  height: clamp(450px, 58vh, 640px);
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-figure::after {
  content: ""; position: absolute; left: 50%; bottom: 5%; transform: translateX(-50%);
  width: 66%; height: 40px; z-index: 0;
  background: radial-gradient(ellipse at center, rgba(77,59,47,0.18), transparent 72%);
  filter: blur(7px);
}
.hero-figure img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 0%;
  filter: drop-shadow(0 30px 50px rgba(77,59,47,0.14));
}
.hero-tag {
  position: absolute; left: 24px; bottom: 24px;
  background: rgba(247,243,238,0.92); backdrop-filter: blur(6px);
  padding: 14px 20px; border-radius: 2px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust { border-block: 1px solid var(--line); }
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  align-items: center; gap: 24px; padding: 38px 0;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item + .trust-item { padding-left: clamp(20px,3vw,48px); border-left: 1px solid var(--line); }
.trust-k {
  font-family: var(--serif); font-size: clamp(26px, 2.4vw, 36px); font-weight: 500; line-height: 1;
  color: var(--ink);
}
.trust-k .stars { color: var(--acc-med); letter-spacing: 0.06em; font-family: var(--sans); font-size: 17px; }
.trust-l { font-size: 12px; letter-spacing: 0.06em; color: var(--ink-soft); }

/* ============================================================
   GENERIC SECTION SPACING
   ============================================================ */
.pad { padding-block: clamp(90px, 11vw, 168px); }
.pad-sm { padding-block: clamp(70px, 8vw, 120px); }
.tone { background: var(--bg-2); }

/* ---------- ABOUT ---------- */
.about-grid { display: grid; grid-template-columns: 0.92fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.about-figure { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; }
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-figure .float {
  position: absolute; right: -28px; bottom: 34px;
  background: var(--bg); padding: 26px 30px; border-radius: 3px; max-width: 220px;
  box-shadow: 0 30px 60px -30px rgba(77,59,47,0.4);
}
.about-figure .float .num { font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--acc-dark); }
.about-figure .float .cap { font-size: 12px; letter-spacing: 0.04em; color: var(--ink-soft); margin-top: 8px; }
.about-copy .sec-title { margin: 22px 0 28px; }
.about-copy p + p { margin-top: 18px; }
.about-marks { display: flex; gap: 40px; margin-top: 38px; flex-wrap: wrap; }
.about-marks .m { }
.about-marks .m .t { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.about-marks .m .d { font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0.02em; }

/* ---------- SERVICES ---------- */
.services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 60px; flex-wrap: wrap; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 38px); }
.service {
  position: relative; cursor: pointer;
}
.service-img { aspect-ratio: 3/4; overflow: hidden; border-radius: 4px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.service:hover .service-img img { transform: scale(1.06); }
.service-no { font-family: var(--serif); font-size: 15px; color: var(--acc-med); margin: 22px 0 8px; }
.service h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 2.4vw, 34px); line-height: 1.05; }
.service p { font-size: 14px; color: var(--ink-soft); margin-top: 12px; max-width: 34ch; }
.service .more { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--acc-dark); }
.service .more .line { width: 22px; height: 1px; background: currentColor; transition: width 0.45s var(--ease); }
.service:hover .more .line { width: 40px; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { padding-block: clamp(40px, 5vw, 66px); overflow: hidden; border-block: 1px solid var(--line); }
.marquee-track { display: flex; width: max-content; gap: 60px; animation: slide 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(34px, 4.6vw, 66px); color: var(--acc-med); white-space: nowrap;
}
.marquee .dot { color: var(--acc-light); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   PORTFOLIO MASONRY
   ============================================================ */
.masonry { columns: 3; column-gap: clamp(14px, 1.6vw, 26px); margin-top: 56px; }
.masonry figure { break-inside: avoid; margin-bottom: clamp(14px, 1.6vw, 26px); overflow: hidden; border-radius: 4px; position: relative; }
.masonry img { width: 100%; height: auto; object-fit: cover; transition: transform 1.1s var(--ease); }
.masonry figure:hover img { transform: scale(1.05); }
.masonry figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 22px 18px; color: var(--bg);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  background: linear-gradient(to top, rgba(50,38,30,0.6), transparent);
  opacity: 0; transform: translateY(8px); transition: all 0.5s var(--ease);
}
.masonry figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.ba {
  position: relative; aspect-ratio: 3/4; max-height: 78vh; overflow: hidden; border-radius: 4px;
  user-select: none; touch-action: none;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .after { clip-path: inset(0 0 0 50%); }
.ba .ba-label {
  position: absolute; top: 18px; padding: 8px 16px; border-radius: 100px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(247,243,238,0.9); color: var(--ink);
}
.ba .lbl-before { left: 18px; }
.ba .lbl-after { right: 18px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--bg);
  transform: translateX(-50%); cursor: ew-resize;
}
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 50%; background: var(--bg);
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(77,59,47,0.3);
}
.ba-knob::before, .ba-knob::after {
  content: ""; width: 0; height: 0; border-block: 5px solid transparent;
}
.ba-knob::before { border-right: 7px solid var(--acc-dark); margin-right: 6px; }
.ba-knob::after { border-left: 7px solid var(--acc-dark); }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 44px); margin-top: 60px; }
.member-img { aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; position: relative; }
.member-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.12); transition: transform 1.1s var(--ease), filter 0.8s var(--ease); }
.member:hover .member-img img { transform: scale(1.05); filter: grayscale(0); }
.member-name { font-family: var(--serif); font-size: 27px; font-weight: 500; margin-top: 22px; }
.member-role { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--acc-dark); margin-top: 6px; }
.member-meta { font-size: 13.5px; color: var(--ink-soft); margin-top: 12px; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 1.8vw, 24px); margin-top: 56px; }
.price-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 4px;
  padding: clamp(28px, 3vw, 44px); display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  transition: all 0.5s var(--ease);
}
.tone .price-card { background: var(--bg); }
.price-card:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-3px); }
.price-card:hover .pc-name, .price-card:hover .pc-desc, .price-card:hover .pc-amt, .price-card:hover .pc-from { color: var(--bg); }
.pc-name { font-family: var(--serif); font-size: clamp(24px, 2.2vw, 31px); font-weight: 500; transition: color 0.5s var(--ease); }
.pc-desc { font-size: 13px; color: var(--ink-soft); margin-top: 8px; max-width: 30ch; transition: color 0.5s var(--ease); }
.pc-price { text-align: right; white-space: nowrap; }
.pc-from { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--acc-med); transition: color 0.5s var(--ease); }
.pc-amt { font-family: var(--serif); font-size: clamp(26px, 2.4vw, 34px); font-weight: 500; transition: color 0.5s var(--ease); }
.price-foot { margin-top: 48px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.price-foot p { font-size: 13.5px; color: var(--ink-soft); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 30px); margin-top: 56px; }
.test {
  border: 1px solid var(--line); border-radius: 4px; padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 22px; background: var(--bg);
}
.test .stars { color: var(--acc-med); letter-spacing: 0.16em; font-size: 13px; }
.test q { font-family: var(--serif); font-size: clamp(20px, 1.6vw, 25px); font-style: italic; line-height: 1.4; quotes: none; }
.test .who { margin-top: auto; }
.test .who .n { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; }
.test .who .s { font-size: 12px; color: var(--ink-soft); }

/* ============================================================
   EXPERIENCE (full-bleed interior)
   ============================================================ */
.exp { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
.exp img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.exp::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(50,38,30,0.66), rgba(50,38,30,0.12) 55%, rgba(50,38,30,0.28)); }
.exp .shell { position: relative; z-index: 2; padding-block: clamp(60px, 8vw, 100px); }
.exp-inner { max-width: 640px; color: var(--bg); }
.exp-inner .eyebrow { color: var(--acc-light); display: block; margin-bottom: 24px; }
.exp-inner h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(38px, 5vw, 72px); line-height: 1.02; }
.exp-inner p { margin-top: 24px; color: rgba(247,243,238,0.86); max-width: 48ch; }
.exp-inner .hero-actions { margin-top: 36px; }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.ig-head { text-align: center; margin-bottom: 50px; }
.ig-head .eyebrow { display: block; margin-bottom: 18px; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(8px, 1vw, 14px); }
.ig-cell { position: relative; aspect-ratio: 1; overflow: hidden; }
.ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.ig-cell::after {
  content: "@studionoir"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bg);
  background: rgba(77,59,47,0.42); opacity: 0; transition: opacity 0.5s var(--ease);
}
.ig-cell:hover img { transform: scale(1.07); }
.ig-cell:hover::after { opacity: 1; }
.ig-foot { text-align: center; margin-top: 46px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta { position: relative; min-height: 80vh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.cta img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta::after { content: ""; position: absolute; inset: 0; background: rgba(50,38,30,0.5); }
.cta-inner { position: relative; z-index: 2; color: var(--bg); padding-inline: var(--gutter); }
.cta-inner .eyebrow { color: var(--acc-light); display: block; margin-bottom: 26px; }
.cta-inner h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(44px, 7vw, 110px); line-height: 0.98; }
.cta-inner p { margin: 26px auto 40px; max-width: 40ch; color: rgba(247,243,238,0.9); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-2); padding-block: clamp(70px, 8vw, 110px) 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(30px, 4vw, 60px); }
.footer .brand { color: var(--ink); font-size: 22px; margin-bottom: 20px; display: inline-block; }
.footer-col h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--acc-dark); margin-bottom: 18px; }
.footer-col p, .footer-col a { font-size: 14px; color: var(--ink-soft); line-height: 1.9; display: block; }
.footer-col a:hover { color: var(--ink); }
.footer-about { max-width: 30ch; font-size: 14px; color: var(--ink-soft); }
.footer-bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: clamp(50px, 6vw, 80px); padding-top: 28px; border-top: 1px solid var(--line);
  font-size: 12px; letter-spacing: 0.04em; color: var(--ink-soft); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .hero { min-height: auto; padding-top: 140px; padding-bottom: 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-ghost { font-size: 40vw; opacity: 0.35; }
  .hero-figure { max-width: 460px; margin-inline: auto; height: clamp(400px, 70vw, 560px); }
  .about-grid { grid-template-columns: 1fr; }
  .about-figure .float { right: 16px; }
  .service-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .masonry { columns: 2; }
  .ba-wrap { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .test-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .trust-item:nth-child(odd) { padding-left: 0; border-left: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { padding-top: 30px; border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  :root { --gutter: 20px; }
  .masonry { columns: 1; }
  .ig-grid { gap: 6px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- mobile nav drawer ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 70; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 28px;
  transform: translateY(-100%); transition: transform 0.6s var(--ease); pointer-events: none;
}
.drawer.open { transform: translateY(0); pointer-events: auto; }
.drawer a { font-family: var(--serif); font-size: 34px; color: var(--ink); }
.drawer .close { position: absolute; top: 28px; right: var(--gutter); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; }
