/* ==========================================================
   PARAGON 01 — Model of Excellence
   ========================================================== */

:root {
  --ink: #0c0c0c;
  --ink-2: #151514;
  --bone: #efece6;
  --paper: #f3efec;
  --tape: #d9c89e;
  --muted: #8b8882;
  --line: rgba(255, 255, 255, .14);

  --f-display: "Archivo", "Arial Black", system-ui, sans-serif;
  --f-serif: "Cinzel", "Trajan Pro", Georgia, serif;
  --f-body: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --max: 1400px;

  --tex-grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23g)'/></svg>");
  --tex-cracks: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='900' height='900'><filter id='c'><feTurbulence type='turbulence' baseFrequency='.011' numOctaves='4' seed='7' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/><feComponentTransfer><feFuncR type='table' tableValues='.35 .92 1 1 1 1 1 1 1 1 1 1'/><feFuncG type='table' tableValues='.35 .92 1 1 1 1 1 1 1 1 1 1'/><feFuncB type='table' tableValues='.35 .92 1 1 1 1 1 1 1 1 1 1'/></feComponentTransfer></filter><rect width='100%' height='100%' filter='url(%23c)'/></svg>");
  --tex-blotch: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1200' height='1200'><filter id='b'><feTurbulence type='fractalNoise' baseFrequency='.004' numOctaves='5' seed='3' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23b)'/></svg>");
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading, body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
::selection { background: var(--tape); color: var(--ink); }
:focus-visible { outline: 2px solid var(--tape); outline-offset: 4px; }

.display {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 125%;
  text-transform: uppercase;
  line-height: .88;
  letter-spacing: -.005em;
}

.label {
  margin: 0;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.label--light { color: rgba(255, 255, 255, .75); }
.label--dark { color: #6d6a64; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.mask, [data-split-title] { display: inline-block; overflow: hidden; vertical-align: top; padding: .06em .02em .02em; }
.ch, .w { display: inline-block; will-change: transform; }

.ulink { position: relative; }
.ulink::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.ulink:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--bone); --fg: var(--ink); --fill: var(--ink); --fill-fg: var(--bone);
  position: relative;
  display: inline-flex; align-items: center; gap: .7em;
  padding: 1.05em 1.65em;
  border-radius: 999px;
  background: var(--bg); color: var(--fg);
  font-weight: 600; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden; isolation: isolate;
  transition: color .5s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: -1px; z-index: -1;
  background: var(--fill); border-radius: inherit;
  transform: translateY(102%);
  transition: transform .6s var(--ease);
}
.btn:hover::before, .btn:focus-visible::before,
a:hover > .btn::before { transform: none; }
.btn:hover, .btn:focus-visible, a:hover > .btn { color: var(--fill-fg); }
.btn__arrow { display: inline-block; transition: transform .5s var(--ease); }
.btn:hover .btn__arrow, a:hover > .btn .btn__arrow { transform: translate(3px, -3px); }

.btn--light { --fill: var(--ink); --fill-fg: var(--bone); }
.btn--ghost { --bg: transparent; --fg: currentColor; --fill: var(--bone); --fill-fg: var(--ink); box-shadow: inset 0 0 0 1px currentColor; }
.btn--dark { --bg: var(--ink); --fg: var(--bone); --fill: var(--tape); --fill-fg: var(--ink); }

/* ---------- Concrete texture ---------- */
.concrete {
  position: relative;
  background-color: #9b9b98;
  isolation: isolate;
  overflow: hidden;
}
.concrete::before {
  content: ""; position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(120% 85% at 50% 30%, rgba(255,255,255,.26), transparent 62%),
    radial-gradient(70% 70% at 100% 100%, rgba(0,0,0,.30), transparent 65%),
    radial-gradient(60% 60% at 0% 0%, rgba(0,0,0,.16), transparent 60%),
    var(--tex-blotch);
  background-size: auto, auto, auto, cover;
  background-repeat: no-repeat;
  background-blend-mode: normal, normal, normal, soft-light;
  opacity: .95;
}
.concrete::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: var(--tex-cracks), var(--tex-grain);
  background-size: 900px 900px, 240px 240px;
  mix-blend-mode: multiply;
  opacity: .5;
}
.concrete--dark { background-color: #4b4b48; }
.concrete--dark::after { opacity: .6; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 120; pointer-events: none;
  background-image: var(--tex-grain); background-size: 200px 200px;
  opacity: .045;
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -5%); }
  60% { transform: translate(-2%, 5%); }
  80% { transform: translate(5%, 2%); }
  100% { transform: translate(0, 0); }
}

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
}
.loader__panel { position: absolute; left: 0; right: 0; height: 50.5%; background: var(--ink); }
.loader__panel--top { top: 0; }
.loader__panel--bot { bottom: 0; }
.loader__inner { position: relative; width: min(84vw, 540px); color: var(--bone); }
.loader__brand {
  display: flex; justify-content: space-between;
  font-size: .72rem; letter-spacing: .42em; text-transform: uppercase; color: var(--muted);
}
.loader__num {
  font-family: var(--f-display); font-weight: 900; font-stretch: 125%;
  font-size: clamp(4.5rem, 16vw, 10rem); line-height: 1; margin: .3em 0 .15em;
  font-variant-numeric: tabular-nums;
}
.loader__bar { height: 1px; background: rgba(255,255,255,.14); }
.loader__bar span { display: block; height: 100%; background: var(--bone); transform: scaleX(0); transform-origin: left; }
.loader__tag { margin-top: 1rem; text-align: right; font-family: var(--f-serif); font-size: .9rem; letter-spacing: .12em; color: #c9c6bf; }

/* ---------- Cursor ---------- */
.cursor { position: fixed; left: 0; top: 0; z-index: 150; pointer-events: none; mix-blend-mode: difference; opacity: 0; transition: opacity .3s; }
.cursor.is-visible { opacity: 1; }
.cursor__dot { position: absolute; width: 6px; height: 6px; margin: -3px 0 0 -3px; border-radius: 50%; background: #fff; }
.cursor__ring {
  position: absolute; width: 38px; height: 38px; margin: -19px 0 0 -19px;
  border: 1px solid #fff; border-radius: 50%;
  display: grid; place-items: center;
  transition: width .45s var(--ease), height .45s var(--ease), margin .45s var(--ease), background-color .45s;
}
.cursor.is-link .cursor__ring { width: 64px; height: 64px; margin: -32px 0 0 -32px; }
.cursor.is-label .cursor__ring { width: 96px; height: 96px; margin: -48px 0 0 -48px; background: #fff; }
.cursor__label { font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #000; opacity: 0; transition: opacity .3s; }
.cursor.is-label .cursor__label { opacity: 1; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 96;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem var(--pad);
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,.18);
  transition: transform .7s var(--ease), color .5s var(--ease);
}
.nav { isolation: isolate; }
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(12,12,12,.5);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  opacity: 0; transition: opacity .5s var(--ease), background-color .5s;
}
.nav.is-scrolled::before { opacity: 1; }
.nav.is-dark::before { background: rgba(239,236,230,.72); }
body.menu-open .nav::before { opacity: 0; }
.nav.is-hidden { transform: translateY(-120%); }
.nav.is-dark { color: var(--ink); text-shadow: none; }
.nav.is-dark .nav__book { --bg: var(--ink); --fg: var(--bone); --fill: var(--tape); --fill-fg: var(--ink); }
.nav.is-dark .nav__burger span { background: var(--ink); }
body.menu-open .nav { color: #fff; }
body.menu-open .nav .nav__burger span { background: #fff; }
.nav__logo { font-family: var(--f-display); font-weight: 900; font-stretch: 125%; font-size: 1.15rem; letter-spacing: .02em; }
.nav__logo span { display: inline-block; margin: 0 .12em; transition: transform .6s var(--ease); }
.nav__logo:hover span { transform: scaleX(1.8); }
.nav__links { display: flex; gap: 2.4rem; font-size: .74rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
.nav__links a { position: relative; padding: .3rem 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__book { --bg: #fff; --fg: #000; --fill: #000; --fill-fg: #fff; padding: .85em 1.3em; }
.nav__burger { display: none; width: 44px; height: 44px; position: relative; }
.nav__burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: #fff; transition: transform .6s var(--ease), top .6s var(--ease); }
.nav__burger span:first-child { top: 17px; }
.nav__burger span:last-child { top: 25px; }
.nav__burger.is-open span:first-child { top: 21px; transform: rotate(45deg); }
.nav__burger.is-open span:last-child { top: 21px; transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 94;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 6.5rem var(--pad) 2.5rem;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .9s var(--ease), visibility 0s linear .9s;
}
.menu.is-open { clip-path: inset(0 0 0 0); visibility: visible; transition: clip-path .9s var(--ease), visibility 0s; }
.menu__links { display: flex; flex-direction: column; gap: .3rem; }
.menu__links a {
  font-family: var(--f-display); font-weight: 900; font-stretch: 125%; text-transform: uppercase;
  font-size: clamp(2.8rem, 13vw, 5rem); line-height: 1;
  display: flex; align-items: flex-start; gap: .6rem;
  transform: translateY(40px); opacity: 0;
  transition: transform .8s var(--ease), opacity .8s var(--ease);
}
.menu__links small { font-family: var(--f-body); font-size: .75rem; font-weight: 500; letter-spacing: .1em; color: var(--muted); margin-top: .6rem; }
.menu.is-open .menu__links a { transform: none; opacity: 1; transition-delay: calc(.15s + var(--i) * .07s); }
.menu__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.menu__ig { font-size: .85rem; color: var(--muted); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: grid; place-items: center;
  padding: 7rem var(--pad) 7rem;
  color: #fff;
}
.hero__light {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(650px circle at var(--mx, 50%) var(--my, 42%), rgba(255,255,255,.2), transparent 60%);
}
.hero__center { position: relative; z-index: 3; text-align: center; }
.hero__title {
  margin: 0;
  font-size: clamp(3rem, 10.2vw, 15rem);
  text-shadow: 0 6px 40px rgba(0,0,0,.12);
  white-space: nowrap;
}
.hero__title .mask + .mask { margin-left: .26em; }
.hero__sub {
  margin: .55em 0 0;
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(1.05rem, 2.5vw, 2.4rem);
  letter-spacing: .05em;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.hero__cta { margin-top: clamp(1.8rem, 4vh, 3rem); display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

.hero__meta {
  position: absolute; bottom: 2rem; z-index: 3;
  display: flex; flex-direction: column; gap: .35rem;
  font-size: .7rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
}
.hero__meta--l { left: var(--pad); }
.hero__meta--r { right: var(--pad); text-align: right; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; translate: -50% 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .62rem; letter-spacing: .32em; text-transform: uppercase;
}
.hero__scroll i { width: 1px; height: 46px; background: rgba(255,255,255,.3); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; inset: 0; background: #fff; animation: drip 2.2s var(--ease) infinite; }
@keyframes drip { 0% { transform: translateY(-100%); } 65%, 100% { transform: translateY(100%); } }

.tape-photo {
  position: absolute; z-index: 1; margin: 0;
  width: clamp(120px, 13.5vw, 230px);
  aspect-ratio: 3 / 4;
  padding: 8px 8px 30px;
  background: var(--paper);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.55), 0 2px 4px rgba(0,0,0,.08);
}
.tape-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter .8s var(--ease); }
.tape-photo:hover img { filter: grayscale(0); }
.tape-photo--1 { top: 13%; left: 6%; rotate: -8deg; }
.tape-photo--2 { top: 11%; right: 7%; rotate: 6deg; }
.tape-photo--3 { bottom: 11%; right: 21%; rotate: -4deg; width: clamp(100px, 10vw, 175px); }

.tape {
  position: absolute; z-index: 2;
  top: -12px; left: 50%; translate: -50% 0; rotate: -3deg;
  width: 42%; height: 24px;
  background: linear-gradient(180deg, rgba(236,224,190,.93), rgba(212,196,154,.93));
  box-shadow: 0 1px 2px rgba(0,0,0,.14);
  clip-path: polygon(3% 0, 97% 5%, 100% 50%, 96% 100%, 2% 95%, 0 45%);
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--ink);
  padding: clamp(1.1rem, 2.5vw, 1.8rem) 0;
  border-bottom: 1px solid var(--line);
}
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__group {
  display: flex; align-items: center; flex: none;
  gap: clamp(1.4rem, 3vw, 2.8rem); padding-right: clamp(1.4rem, 3vw, 2.8rem);
  font-size: clamp(2.2rem, 6.5vw, 5.5rem); line-height: 1; white-space: nowrap;
}
.marquee__group i { font-style: normal; color: var(--tape); font-size: .45em; }
.marquee__group .outline { color: transparent; -webkit-text-stroke: 1.2px var(--bone); }

/* ---------- Launch ---------- */
.launch { padding: clamp(6rem, 13vw, 11rem) var(--pad); color: #fff; }
.launch__grid {
  display: grid; grid-template-columns: 1fr 1.1fr; align-items: center;
  gap: clamp(3.5rem, 7vw, 8rem);
  max-width: 1300px; margin: 0 auto;
}
.launch__cardwrap { perspective: 1100px; }
.launch__card {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 11%;
  text-align: center;
  background: var(--paper); color: #232323;
  box-shadow: 0 50px 90px -35px rgba(0,0,0,.7), 0 2px 0 rgba(0,0,0,.04);
  rotate: -2deg;
  transform-style: preserve-3d;
}
.launch__eyebrow { margin: 0; font-family: var(--f-display); font-weight: 900; font-stretch: 125%; font-size: clamp(1.6rem, 3.3vw, 2.9rem); line-height: 1.08; letter-spacing: .07em; text-transform: uppercase; }
.launch__card hr { width: 64%; height: 3px; margin: 1.5rem auto; border: 0; background: #1d1d1d; }
.launch__addr { margin: 0; font-weight: 800; font-size: clamp(1.3rem, 2.5vw, 2.2rem); line-height: 1.35; }
.launch__city { margin: 1.1rem 0 0; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: #737373; }
.tape--tr { top: -18px; right: -34px; left: auto; translate: none; rotate: 33deg; width: 34%; height: 46px; }
.tape--bl { bottom: -16px; left: -38px; top: auto; translate: none; rotate: 28deg; width: 32%; height: 46px; }

.launch__title {
  margin: 1rem 0 0;
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 5.2rem); line-height: 1.04;
  text-transform: uppercase; letter-spacing: .02em;
}
.when-open { display: none; }
.launch.is-open .when-soon, .launch.is-open .countdown { display: none; }
.launch.is-open .when-open { display: inline; }
.brush { display: block; width: min(100%, 500px); height: auto; margin: .6rem 0 2.6rem; overflow: visible; }

.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.4rem, 1vw, .8rem); max-width: 560px; }
.cd {
  padding: 1.1rem .4rem .9rem; text-align: center;
  border: 1px solid rgba(255,255,255,.2); border-radius: 16px;
  background: rgba(0,0,0,.14);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.cd__num { display: block; font-family: var(--f-display); font-weight: 900; font-stretch: 112%; font-size: clamp(1.9rem, 4.4vw, 3.6rem); line-height: 1; font-variant-numeric: tabular-nums; }
.cd__lbl { display: block; margin-top: .55rem; font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; opacity: .7; }
.launch__cta { margin-top: 2.4rem; display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---------- Statement ---------- */
.statement { max-width: var(--max); margin: 0 auto; padding: clamp(7rem, 15vw, 13rem) var(--pad); }
.statement__text {
  margin: 1.6rem 0 0;
  font-family: var(--f-display); font-weight: 800; font-stretch: 108%;
  font-size: clamp(2.1rem, 5.6vw, 5.4rem); line-height: 1.02; letter-spacing: -.02em;
}
.statement__text em { font-style: normal; font-family: var(--f-serif); font-weight: 400; color: var(--tape); letter-spacing: 0; }

/* ---------- Work ---------- */
.work {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(1.5rem, 3.5vh, 2.8rem);
  padding: 5.5rem 0 2.5rem;
  background: var(--ink);
}
.work__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; padding: 0 var(--pad); }
.work__title { margin: .4rem 0 0; font-size: clamp(3rem, 8.5vw, 8.5rem); }
.work__hint { margin: 0; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.work__track { display: flex; gap: clamp(1rem, 2vw, 2rem); width: max-content; padding: 0 var(--pad); will-change: transform; }
.work__card { position: relative; flex: none; display: flex; flex-direction: column; height: min(58vh, 640px); aspect-ratio: 3 / 4.25; }
.work__img { position: relative; flex: 1; overflow: hidden; border-radius: 6px; background: #1a1a1a; }
.work__img img {
  position: absolute; top: 0; left: -10%;
  width: 120%; height: 100%; object-fit: cover;
  transition: scale 1.2s var(--ease), filter .8s var(--ease);
  filter: grayscale(.25);
}
.work__card:hover .work__img img { scale: 1.06; filter: grayscale(0); }
.work__cap { display: flex; align-items: baseline; gap: .9rem; padding-top: 1rem; }
.work__no { font-size: .7rem; letter-spacing: .1em; color: var(--muted); }
.work__cap h3 { margin: 0; font-family: var(--f-display); font-weight: 900; font-stretch: 125%; font-size: clamp(1.05rem, 1.5vw, 1.45rem); text-transform: uppercase; white-space: nowrap; }
.work__cap p { margin: 0 0 0 auto; max-width: 22ch; text-align: right; font-size: .78rem; line-height: 1.35; color: var(--muted); }

.work__card--more {
  justify-content: space-between; padding: 2rem;
  border: 1px solid var(--line); border-radius: 6px;
  background: radial-gradient(120% 80% at 0% 100%, rgba(217,200,158,.16), transparent 60%), var(--ink-2);
  transition: background-color .6s var(--ease), border-color .6s;
}
.work__card--more:hover { border-color: rgba(255,255,255,.4); }
.work__more { font-size: clamp(2.2rem, 3.8vw, 3.6rem); line-height: .95; }
.work__handle { display: flex; align-items: center; justify-content: space-between; font-size: .95rem; }
.work__arrow { width: 3rem; height: 3rem; border-radius: 50%; display: grid; place-items: center; background: var(--bone); color: var(--ink); transition: transform .6s var(--ease); }
.work__card--more:hover .work__arrow { transform: rotate(45deg) scale(1.1); }

.work__progress { position: relative; height: 1px; margin: 0 var(--pad); background: var(--line); }
.work__progress span { position: absolute; inset: 0; background: var(--bone); transform: scaleX(0); transform-origin: left; }

/* ---------- Services ---------- */
.services { background: var(--bone); color: var(--ink); padding: clamp(6rem, 12vw, 10rem) var(--pad); }
.services__head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; max-width: var(--max); margin: 0 auto 3rem; }
.services__title { margin: .4rem 0 0; font-size: clamp(3rem, 9vw, 9rem); }
.services__note { margin: 0; max-width: 30ch; font-size: .95rem; color: #57544e; }

.svc-feature {
  display: grid; grid-template-columns: .9fr 1.1fr;
  max-width: var(--max); margin: 0 auto 3.5rem;
  min-height: 380px;
  background: var(--ink); color: var(--bone);
  border-radius: 20px; overflow: hidden;
}
.svc-feature__media { position: relative; overflow: hidden; min-height: 280px; }
.svc-feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 40% 35%; transition: scale 1.4s var(--ease); }
.svc-feature:hover .svc-feature__media img { scale: 1.06; }
.svc-feature__body { display: flex; flex-direction: column; gap: 1.3rem; padding: clamp(1.8rem, 4vw, 3.5rem); }
.svc-feature__tag { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--tape); }
.svc-feature__name { margin: 0; font-size: clamp(2rem, 4.2vw, 3.8rem); line-height: .95; }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .45rem; }
.chips li { padding: .45em .85em; border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; color: #cfccc5; }
.svc-feature__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.svc-feature__price { font-size: clamp(3rem, 6vw, 5rem); line-height: 1; }

.svc { list-style: none; max-width: var(--max); margin: 0 auto; padding: 0; border-top: 1px solid var(--ink); }
.svc li { border-bottom: 1px solid rgba(12,12,12,.16); }
.svc__row {
  position: relative; isolation: isolate; overflow: hidden;
  display: grid; grid-template-columns: 3.5rem 1fr 7rem 6rem 3rem; align-items: center; gap: 1rem;
  padding: 1.55rem 1rem;
  transition: color .5s var(--ease), padding .6s var(--ease);
}
.svc__row::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .6s var(--ease);
}
.svc__row:hover, .svc__row:focus-visible { color: var(--bone); padding-left: 2rem; padding-right: 1.5rem; }
.svc__row:hover::before, .svc__row:focus-visible::before { transform: scaleY(1); }
.svc__no { font-size: .72rem; letter-spacing: .1em; opacity: .5; }
.svc__name { font-family: var(--f-display); font-weight: 800; font-stretch: 118%; font-size: clamp(1.2rem, 2.5vw, 2.1rem); line-height: 1.05; text-transform: uppercase; }
.svc__desc { display: block; margin-top: .4rem; font-family: var(--f-body); font-weight: 400; font-stretch: 100%; font-size: .84rem; line-height: 1.35; text-transform: none; opacity: .6; }
.svc__time { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; opacity: .6; white-space: nowrap; }
.svc__price { text-align: right; font-family: var(--f-display); font-weight: 900; font-stretch: 125%; font-size: clamp(1.3rem, 2.3vw, 2rem); }
.svc__arrow {
  justify-self: end; width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: grid; place-items: center; border: 1px solid currentColor;
  transition: transform .6s var(--ease), background-color .5s, color .5s;
}
.svc__row:hover .svc__arrow { transform: rotate(45deg); background: var(--bone); color: var(--ink); border-color: var(--bone); }

.svc-preview {
  position: fixed; left: 0; top: 0; z-index: 80; pointer-events: none;
  width: 230px; aspect-ratio: 3 / 4; border-radius: 10px; overflow: hidden;
  opacity: 0; scale: .5;
  transition: opacity .35s var(--ease), scale .6s var(--ease);
  box-shadow: 0 40px 70px -25px rgba(0,0,0,.55);
}
.svc-preview.is-on { opacity: 1; scale: 1; }
.svc-preview img { width: 100%; height: 100%; object-fit: cover; }
@media (hover: none), (pointer: coarse) { .svc-preview { display: none; } }

/* ---------- About ---------- */
.about { padding: clamp(6rem, 13vw, 11rem) var(--pad); }
.about__grid { display: grid; grid-template-columns: 5fr 6fr; align-items: center; gap: clamp(3rem, 7vw, 8rem); max-width: var(--max); margin: 0 auto; }
.about__media { position: relative; padding-bottom: 12%; }
.about__portrait { position: relative; margin: 0; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 6px; background: #050505; }
.about__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 45%; }
.about__portrait figcaption { position: absolute; left: 1rem; bottom: 1rem; font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.about__street {
  position: absolute; right: -10%; bottom: 0; margin: 0;
  width: 44%; aspect-ratio: 3 / 4; overflow: hidden;
  border: 7px solid var(--ink); border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7);
}
.about__street img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.about__name { margin: .8rem 0 0; font-size: clamp(3.2rem, 8vw, 8rem); }
.about__name > span { display: block; width: fit-content; }
.about__name > span:last-child { color: transparent; -webkit-text-stroke: 1.5px var(--bone); }
.about__aka { margin: 1.2rem 0 1.6rem; font-family: var(--f-serif); font-size: clamp(1.1rem, 2vw, 1.6rem); color: var(--tape); }
.about__copy { margin: 0; max-width: 48ch; font-size: clamp(1rem, 1.25vw, 1.15rem); line-height: 1.7; color: #bab7b0; }
.stats { list-style: none; margin: 2.6rem 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.stats li { padding: 1.4rem 1rem 0 0; }
.stats b { display: block; font-family: var(--f-display); font-weight: 900; font-stretch: 125%; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; }
.stats span { display: block; margin-top: .55rem; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ---------- Reviews ---------- */
.reviews { border-top: 1px solid var(--line); padding: clamp(5rem, 11vw, 9rem) var(--pad); }
.reviews__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.reviews__score { display: flex; flex-direction: column; align-items: center; gap: .6rem; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.reviews__stars { font-size: 1.3rem; letter-spacing: .25em; color: var(--tape); }
.reviews__stage { position: relative; display: grid; margin: 2.8rem 0 2.2rem; }
.review { grid-area: 1 / 1; margin: 0; opacity: 0; visibility: hidden; transition: opacity .6s, visibility 0s .6s; }
.review.is-active { opacity: 1; visibility: visible; transition: opacity .6s, visibility 0s; }
.review blockquote { margin: 0; font-family: var(--f-serif); font-size: clamp(1.6rem, 4.2vw, 3.4rem); line-height: 1.2; }
.review figcaption { margin-top: 1.6rem; font-size: .76rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.reviews__dots { display: flex; justify-content: center; gap: .5rem; }
.reviews__dots button { width: 36px; height: 20px; position: relative; }
.reviews__dots button::before { content: ""; position: absolute; left: 0; right: 0; top: 9px; height: 2px; background: rgba(255,255,255,.2); }
.reviews__dots button::after { content: ""; position: absolute; left: 0; right: 0; top: 9px; height: 2px; background: var(--bone); transform: scaleX(0); transform-origin: left; }
.reviews__dots button[aria-selected="true"]::after { animation: dotfill 6s linear forwards; }
@keyframes dotfill { to { transform: scaleX(1); } }

/* ---------- Visit ---------- */
.visit { padding: clamp(6rem, 12vw, 10rem) var(--pad); color: #fff; }
.visit__grid { display: grid; grid-template-columns: 1fr 1.15fr; align-items: center; gap: clamp(3rem, 6vw, 6rem); max-width: var(--max); margin: 0 auto; }
.visit__title { margin: .4rem 0 1.6rem; font-size: clamp(3.5rem, 9.5vw, 9.5rem); text-shadow: 0 6px 40px rgba(0,0,0,.1); }
.visit__addr { font-style: normal; font-weight: 600; font-size: clamp(1.15rem, 1.9vw, 1.55rem); line-height: 1.45; }
.visit__dl { display: grid; grid-template-columns: auto 1fr; gap: .7rem 2rem; margin: 2rem 0 2.4rem; font-size: .95rem; }
.visit__dl dt { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; opacity: .7; padding-top: .2rem; }
.visit__dl dd { margin: 0; }
.visit__cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.visit__map {
  position: relative; aspect-ratio: 4 / 3.2;
  padding: 10px; background: var(--paper);
  rotate: 1.5deg;
  box-shadow: 0 50px 90px -35px rgba(0,0,0,.6);
}
.visit__map iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.08); }

/* ---------- Footer ---------- */
.footer { overflow: hidden; background: var(--ink); padding: clamp(6rem, 12vw, 9rem) var(--pad) 0; }
.footer__cta {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  max-width: var(--max); margin: 0 auto;
  padding-bottom: clamp(4rem, 8vw, 7rem); border-bottom: 1px solid var(--line);
}
.footer__big { display: block; margin-top: .6rem; font-size: clamp(3.4rem, 11vw, 11rem); transition: color .5s var(--ease); }
.footer__big span { display: block; }
.footer__big span:last-child { font-family: var(--f-serif); font-weight: 400; font-stretch: 100%; text-transform: none; font-size: .56em; line-height: 1.15; letter-spacing: .01em; color: var(--tape); }
.footer__big:hover span:first-child { color: transparent; -webkit-text-stroke: 1.5px var(--bone); }

.orb {
  position: relative; flex: none;
  width: clamp(140px, 15vw, 200px); aspect-ratio: 1;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--bone); color: var(--ink);
  transition: background-color .5s var(--ease);
}
.orb:hover { background: var(--tape); }
.orb__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 14s linear infinite; }
.orb__ring text { font-family: var(--f-body); font-size: 14.5px; font-weight: 700; letter-spacing: .22em; fill: currentColor; }
.orb__arrow { font-size: clamp(1.8rem, 3vw, 2.6rem); transition: transform .6s var(--ease); }
.orb:hover .orb__arrow { transform: rotate(45deg); }
@keyframes spin { to { transform: rotate(360deg); } }

.footer__bottom { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: var(--max); margin: 0 auto; padding: 3rem 0 2rem; font-size: .92rem; color: #b8b5ae; }
.footer__bottom h4 { margin: 0 0 .8rem; font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.footer__bottom p { margin: 0; line-height: 1.6; }
.footer__legal { display: flex; justify-content: space-between; max-width: var(--max); margin: 0 auto; padding-bottom: 1.5rem; font-size: .75rem; color: var(--muted); }
.footer__mega {
  margin: 0 calc(var(--pad) * -1);
  font-size: 11.1vw; line-height: .78; text-align: center; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.22);
  translate: 0 5%;
  user-select: none;
}
.footer__mega .ch { transition: color .5s var(--ease), -webkit-text-stroke-color .5s; }
.footer__mega .ch:hover { color: var(--bone); -webkit-text-stroke-color: var(--bone); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav__links { gap: 1.6rem; }
  .svc__row { grid-template-columns: 2.8rem 1fr 5.5rem 5rem 2.6rem; }
  .about__street { right: -4%; }
}

@media (max-width: 860px) {
  .nav__links, .nav__book { display: none; }
  .nav__burger { display: block; }

  .hero { padding-top: 8rem; padding-bottom: 8rem; }
  .hero__title { white-space: normal; font-size: clamp(2.4rem, 12.8vw, 6.4rem); line-height: .86; text-shadow: none; }
  .hero__title .word { white-space: nowrap; }
  .hero__title .mask { display: block; width: fit-content; margin: 0 auto; }
  .hero__title .mask + .mask { margin-left: auto; font-size: 1.55em; }
  .tape-photo { width: clamp(96px, 24vw, 160px); padding: 5px 5px 18px; }
  .tape-photo--1 { top: 9%; left: 5%; }
  .tape-photo--2 { top: 8%; right: 5%; }
  .tape-photo--3 { display: none; }
  .hero__meta--r, .hero__scroll { display: none; }

  .launch__grid { grid-template-columns: 1fr; }
  .launch__cardwrap { max-width: 460px; width: 88%; margin: 0 auto; }

  .services__head { grid-template-columns: 1fr; }
  .svc-feature { grid-template-columns: 1fr; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 520px; width: 88%; }

  .visit__grid { grid-template-columns: 1fr; }
  .footer__bottom { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .work { min-height: 0; padding: 6rem 0 3rem; }
  .work__hint { display: none; }
  .work__track {
    width: auto; overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; scroll-padding: 0 var(--pad);
    scrollbar-width: none; padding-bottom: .5rem;
  }
  .work__track::-webkit-scrollbar { display: none; }
  .work__card { height: auto; aspect-ratio: auto; width: 78vw; scroll-snap-align: start; }
  .work__img { flex: none; aspect-ratio: 3 / 4; }
  .work__img img { left: 0; width: 100%; }
  .work__cap { flex-wrap: wrap; }
  .work__cap p { margin: 0; text-align: left; flex-basis: 100%; }
  .work__card--more { min-height: 104vw; }
}

@media (max-width: 600px) {
  .svc__row { grid-template-columns: 2rem 1fr auto; gap: .3rem .8rem; padding: 1.3rem .2rem; }
  .svc__row:hover, .svc__row:focus-visible { padding-left: .9rem; padding-right: .9rem; }
  .svc__no { grid-row: 1; align-self: start; padding-top: .35rem; }
  .svc__time { grid-column: 2; grid-row: 2; }
  .svc__price { grid-column: 3; grid-row: 1 / span 2; }
  .svc__arrow { display: none; }
  .countdown { gap: .35rem; }
  .cd { border-radius: 12px; padding: .9rem .2rem .7rem; }
  .cd__lbl { letter-spacing: .14em; }
  .stats li { padding-right: .5rem; }
  .footer__bottom { grid-template-columns: 1fr; gap: 1.5rem; }
  .btn { padding: 1em 1.35em; }
}

/* ---------- Buttons that act like links ---------- */
.nav__links button { font-size: inherit; letter-spacing: inherit; text-transform: inherit; font-weight: inherit; position: relative; padding: .3rem 0; }
.nav__links button::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease);
}
.nav__links button:hover::after { transform: scaleX(1); transform-origin: left; }
.footer__big { text-align: left; }
.orb { font: inherit; }
.menu__igs { display: flex; flex-direction: column; gap: .3rem; flex-basis: 100%; }
.work__img img { max-width: none; }
.modal__body > .label:first-child { padding-right: 3.2rem; }
.work__handles { display: grid; gap: .6rem; }
.work__handle { padding-top: .6rem; border-top: 1px solid var(--line); }
.work__handle:hover .work__arrow { transform: rotate(45deg) scale(1.1); }
.work__arrow { width: 2.4rem; height: 2.4rem; }
.reviews__score .label { margin-bottom: .6rem; }

/* ---------- Team ---------- */
.role-tag {
  display: inline-flex; align-items: center; gap: .5em;
  margin-top: 1.2rem; padding: .5em 1em;
  background: var(--tape); color: var(--ink);
  font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  rotate: -2deg;
  clip-path: polygon(2% 0, 98% 4%, 100% 50%, 97% 100%, 1% 96%, 0 45%);
}
.role-tag--ghost { background: transparent; color: var(--bone); box-shadow: inset 0 0 0 1px var(--line); clip-path: none; rotate: 0deg; }
.about--alt { border-top: 1px solid var(--line); }
.about--alt .about__grid { grid-template-columns: 6fr 5fr; }
.about--alt .about__media { order: 2; }
.about--alt .about__street { right: auto; left: -10%; }
.about__links { display: flex; gap: .7rem; flex-wrap: wrap; }
.work__by { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--tape); white-space: nowrap; }

/* ---------- Modals ---------- */
body.modal-open { overflow: hidden; }
.modal { position: fixed; inset: 0; z-index: 140; display: grid; place-items: center; padding: var(--pad); }
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,.64);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  opacity: 0; transition: opacity .5s var(--ease);
}
.modal__panel {
  position: relative; width: min(100%, 640px);
  background: var(--paper); color: var(--ink);
  border-radius: 6px;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,.85);
  opacity: 0; transform: translateY(50px) rotate(-2deg) scale(.96);
  transition: transform .8s var(--ease), opacity .5s var(--ease);
}
.modal.is-open .modal__overlay { opacity: 1; }
.modal.is-open .modal__panel { opacity: 1; transform: none; }
.modal__panel .tape { top: -14px; left: 38px; translate: none; rotate: -6deg; width: 120px; height: 34px; }
.modal__body {
  max-height: calc(100svh - 2 * var(--pad));
  overflow-y: auto; overscroll-behavior: contain;
  padding: clamp(2rem, 5vw, 3.2rem);
}
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: var(--bone); font-size: 1rem;
  transition: transform .5s var(--ease), background-color .4s;
}
.modal__close:hover { transform: rotate(90deg); background: #2a2a28; }
.modal__body { container-type: inline-size; }
.modal__title { margin: .8rem 0 0; font-size: clamp(2.2rem, 6vw, 4.6rem); font-size: clamp(2.2rem, 12cqi, 4.6rem); }
.modal__lede { margin: 1rem 0 0; max-width: 42ch; font-size: 1.05rem; line-height: 1.55; color: #4d4a45; }
.modal__cta { margin-top: 1.8rem; display: flex; gap: .7rem; flex-wrap: wrap; }
.modal__note { margin: 1rem 0 0; font-size: .82rem; line-height: 1.5; color: #6d6a64; }
.modal__note b { color: var(--ink); }
.btn--ghost-dark { --bg: transparent; --fg: var(--ink); --fill: var(--ink); --fill-fg: var(--bone); box-shadow: inset 0 0 0 1px var(--ink); }

.sub-price { display: flex; align-items: center; gap: 1rem; margin-top: 1.4rem; }
.sub-price__num { font-size: clamp(2.6rem, 14cqi, 4rem); line-height: 1; }
.sub-price__lbl { font-size: .7rem; font-weight: 600; letter-spacing: .2em; line-height: 1.5; text-transform: uppercase; color: #6d6a64; }
.sub-steps { list-style: none; margin: 2rem 0 0; padding: 0; border-top: 1px solid var(--ink); }
.sub-steps li { display: grid; grid-template-columns: 2.8rem 1fr; gap: .8rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(12,12,12,.14); }
.sub-steps li > span { font-family: var(--f-display); font-weight: 900; font-stretch: 125%; font-size: 1.05rem; padding-top: .1rem; }
.sub-steps b { display: block; font-family: var(--f-display); font-weight: 800; font-stretch: 112%; font-size: 1.05rem; text-transform: uppercase; }
.sub-steps p { margin: .3rem 0 0; font-size: .92rem; line-height: 1.5; color: #5a5751; }
.sub-date { margin-top: 1.6rem; padding: 1.2rem 1.4rem; display: grid; gap: .35rem; background: var(--ink); color: var(--bone); border-radius: 12px; }
.sub-date__lbl { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--tape); }
.sub-date__range { font-family: var(--f-serif); font-size: clamp(1.4rem, 3.6vw, 2.1rem); line-height: 1.15; }
.sub-date__when { font-size: .85rem; color: #b9b6af; }

.barber-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.8rem; }
.pick {
  display: flex; flex-direction: column; gap: .3rem;
  padding: .7rem .7rem 1.2rem;
  background: var(--ink); color: var(--bone);
  border-radius: 12px;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.pick:hover, .pick:focus-visible { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 30px 50px -25px rgba(0,0,0,.6); }
.pick img { width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: .6rem; border-radius: 8px; filter: grayscale(1); transition: filter .6s var(--ease); }
.pick:hover img, .pick:focus-visible img { filter: none; }
.pick__role { padding: 0 .4rem; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--tape); }
.pick__name { padding: 0 .4rem; font-size: clamp(1.8rem, 5vw, 2.6rem); }
.pick__handle { padding: 0 .4rem; font-size: .8rem; color: var(--muted); }
.pick__go { margin: .7rem .4rem 0; align-self: flex-start; padding: .6em 1.05em; border-radius: 999px; background: var(--bone); color: var(--ink); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

@media (max-width: 860px) {
  .about--alt .about__grid { grid-template-columns: 1fr; }
  .about--alt .about__media { order: 0; }
  .about--alt .about__street { left: auto; right: -4%; }
}
@media (max-width: 600px) {
  .modal { padding: .75rem; place-items: end center; }
  .modal__body { max-height: calc(100svh - 1.5rem); padding: 2.2rem 1.3rem 1.5rem; }
  .barber-pick { gap: .6rem; }
  .pick { padding: .5rem .5rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .grain, .orb__ring, .hero__scroll i::after { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
