/* ============================================================
   MB BEAUTY — Editorial Redesign
   Type: Fraunces (display) · Inter (text) · IBM Plex Mono (labels)
   Aesthetic: bone paper, espresso ink, hairline rules, editorial grid
   ============================================================ */

:root {
  /* palette — tonal, editorial */
  --paper:    #f4efe6;   /* warm bone */
  --paper-2:  #efe7da;   /* deeper bone */
  --paper-3:  #faf7f1;   /* near-white card */
  --ink:      #1c1712;   /* espresso near-black */
  --ink-2:    #3b322b;
  --ink-soft: #5c5147;
  --muted:    #6b6156;   /* AA on paper (5.28) */
  --brass:    #876731;   /* antique accent — AA on paper (4.57); dark sections use --brass-2 */
  --brass-2:  #b9914f;
  --espresso: #211a14;   /* dark sections */
  --line:     rgba(28,23,18,.16);
  --line-2:   rgba(28,23,18,.09);
  --line-on-dark: rgba(244,239,230,.18);

  /* type */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --maxw: 1320px;
  --gutter: clamp(22px, 5vw, 64px);
  --ease: cubic-bezier(.19,1,.22,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -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; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--ink); color: var(--paper); }

/* accessible focus — brass register ring */
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 1px; }
.btn:focus-visible, .nav__book:focus-visible { outline-offset: 4px; }

/* ---------- type primitives ---------- */
h1,h2,h3,h4 { font-optical-sizing: auto; }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 400; line-height: 1.0; letter-spacing: -.015em; text-wrap: balance; }
p, .lead, .about__lead, .whatis-ed .lead { text-wrap: pretty; }
.italic { font-style: italic; }

.kicker {
  font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--brass); display: inline-flex; align-items: center; gap: 10px;
}
.kicker::before { content: ''; width: 26px; height: 1px; background: currentColor; display: inline-block; }
.label { font-family: var(--mono); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.lead { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5; color: var(--ink-2); font-weight: 400; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }

/* section header: index + title row */
.sec-index { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding-bottom: 26px; border-bottom: 1px solid var(--line); margin-bottom: clamp(34px, 5vw, 64px); }
.sec-index .num { font-family: var(--mono); font-size: 13px; letter-spacing: .1em; color: var(--brass); }
.sec-index h2 { font-size: clamp(30px, 5vw, 64px); font-weight: 400; }
.sec-index .meta { font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); text-align: right; max-width: 280px; }

/* ---------- links / buttons ---------- */
.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); position: relative; padding-bottom: 4px; }
.link-arrow svg { transition: transform .4s var(--ease); }
.link-arrow::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--ink); transform: scaleX(1); transform-origin: right; transition: transform .45s var(--ease); }
.link-arrow:hover::after { transform: scaleX(0); transform-origin: left; }
.link-arrow:hover svg { transform: translateX(6px); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  padding: 17px 30px; border: 1px solid var(--ink); color: var(--ink); background: transparent;
  border-radius: 2px; transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease); position: relative; overflow: hidden;
}
.btn span { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 12px; }
.btn::before { content: ''; position: absolute; inset: 0; background: var(--ink); transform: translateY(101%); transition: transform .45s var(--ease); z-index: 1; }
.btn:hover { color: var(--paper); border-color: var(--ink); }
.btn:hover::before { transform: translateY(0); }
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid::before { background: var(--brass); }
.btn-solid:hover { color: var(--ink); border-color: var(--brass); }
.btn-light { border-color: var(--paper); color: var(--paper); }
.btn-light::before { background: var(--paper); }
.btn-light:hover { color: var(--ink); }
.btn:active { transform: translateY(1px) scale(.99); }
.nav__book:active, .svc__filter:active, .amounts a:active { transform: translateY(1px); }

/* ============================================================
   HEADER
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .4s var(--ease), border-color .4s var(--ease); border-bottom: 1px solid transparent; }
.nav__bar { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav.scrolled { background: rgba(244,239,230,.86); -webkit-backdrop-filter: blur(14px) saturate(1.1); backdrop-filter: blur(14px) saturate(1.1); border-bottom-color: var(--line); }
.brand { display: flex; align-items: baseline; gap: 9px; }
.brand__mark { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 27px; letter-spacing: -.01em; }
.brand__word { font-family: var(--mono); font-size: 13px; letter-spacing: .34em; text-transform: uppercase; padding-top: 2px; }
.brand__img { height: 26px; width: auto; display: block; }
.drawer__top .brand__img { height: 24px; }
.nav__menu { display: flex; align-items: center; gap: 34px; }
.nav__menu a { font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); position: relative; padding: 4px 0; }
.nav__menu a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.nav__menu a:hover::after, .nav__menu a.active::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 22px; }
.nav__book { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--ink); border-radius: 2px; padding: 11px 20px; transition: background .4s var(--ease), color .4s var(--ease); }
.nav__book:hover { background: var(--ink); color: var(--paper); }
.burger { display: none; width: 30px; height: 16px; position: relative; }
.burger span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink); transition: .35s var(--ease); }
.burger span:nth-child(1){ top: 0; } .burger span:nth-child(2){ bottom: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 120px; position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.32fr .9fr; gap: clamp(24px, 4vw, 60px); align-items: end; }
.hero__head { padding-bottom: 24px; }
.hero__kicker { margin-bottom: clamp(22px, 4vw, 46px); }
.hero h1 { font-weight: 370; font-size: clamp(48px, 8.6vw, 132px); line-height: .9; letter-spacing: -.025em; }
.hero h1 .or { display: block; font-style: italic; font-weight: 340; color: var(--brass); font-size: .52em; letter-spacing: 0; margin: .06em 0 .04em .04em; }
.hero h1 .l2 { display: block; }
.hero__sub { margin-top: clamp(22px, 3vw, 38px); max-width: 460px; }
.hero__actions { margin-top: 34px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.hero__media { position: relative; }
.hero__media figure { position: relative; overflow: hidden; border-radius: 2px; }
.hero__media figure::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(154,118,60,.45); pointer-events: none; z-index: 2; }
.hero__media img { width: 100%; aspect-ratio: 3/3.7; object-fit: cover; object-position: 50% 22%; transform: scale(1.1); will-change: transform; filter: contrast(1.05) saturate(1.04); }
.hero__cap { display: flex; justify-content: space-between; gap: 16px; margin-top: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.hero__meta { display: flex; gap: 40px; margin-top: clamp(34px, 5vw, 60px); padding-top: 24px; border-top: 1px solid var(--line); }
.hero__meta .item .label { display: block; margin-bottom: 6px; }
.hero__meta .item b { font-family: var(--display); font-weight: 400; font-size: 19px; letter-spacing: -.01em; }

/* marquee */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 18px 0; margin-top: clamp(40px, 6vw, 80px); transform: skewX(var(--mq-skew, 0deg)); transition: transform .4s var(--ease); will-change: transform; }
.marquee__track { display: inline-flex; white-space: nowrap; will-change: transform; animation: marquee 38s linear infinite; }
.marquee__track span { font-family: var(--display); font-style: italic; font-size: clamp(20px, 2.4vw, 30px); color: var(--ink-2); padding: 0 30px; }
.marquee__track span::after { content: '✦'; font-style: normal; color: var(--brass); margin-left: 60px; font-size: .6em; vertical-align: middle; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT (01)
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 6vw, 96px); align-items: start; }
.about__lead { font-family: var(--display); font-weight: 400; font-size: clamp(23px, 2.4vw, 33px); line-height: 1.28; letter-spacing: -.01em; color: var(--ink); }
.about__lead .dropcap { float: left; font-size: 3.1em; line-height: .72; padding: .05em .12em 0 0; color: var(--brass); font-weight: 400; }
.about__body p { margin-top: 22px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; max-width: 52ch; }
.about__trust { margin-top: 34px; display: flex; flex-direction: column; gap: 0; }
.about__trust .row { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); }
.about__trust .row:last-child { border-bottom: 1px solid var(--line); }
.about__trust .row svg { color: var(--brass); flex: none; }
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; }
.about__stat { position: absolute; right: 0; bottom: 0; background: var(--ink); color: var(--paper); padding: 22px 26px; text-align: center; }
.about__stat b { font-family: var(--display); font-size: 44px; font-weight: 400; line-height: 1; display: block; }
.about__stat span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-2); margin-top: 6px; display: block; }

/* ============================================================
   STUDIO (02)
   ============================================================ */
.studio__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 44px; }
.studio__intro h3 { font-size: clamp(28px, 3.4vw, 46px); font-weight: 400; max-width: 12ch; }
.studio__gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: clamp(380px, 50vw, 620px); }
.studio__gallery figure { overflow: hidden; position: relative; border-radius: 2px; }
.studio__gallery figure:first-child { grid-row: 1 / 3; }
.studio__gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.studio__gallery figure:hover img { transform: scale(1.05); }
.studio__gallery figcaption { position: absolute; left: 14px; bottom: 12px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: #fff; mix-blend-mode: difference; }
.studio__feats { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 14px; border-top: 1px solid var(--line); }
.studio__feats .f { padding: 28px clamp(28px,2.5vw,40px); border-right: 1px solid var(--line); }
.studio__feats .f:first-child { padding-left: 0; }
.studio__feats .f:last-child { border-right: 0; padding-right: 0; }
.studio__feats .f .label { display: block; margin-bottom: 12px; color: var(--brass); }
.studio__feats .f b { font-family: var(--display); font-weight: 400; font-size: 21px; display: block; margin-bottom: 6px; }
.studio__feats .f p { font-size: 13.5px; color: var(--ink-soft); }

/* ============================================================
   SERVICES (03) — editorial index list
   ============================================================ */
.svc__filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.svc__filter { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; padding: 9px 18px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); transition: all .35s var(--ease); }
.svc__filter.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.svc__filter:hover:not(.active) { border-color: var(--ink); color: var(--ink); }
.svc__group { display: none; }
.svc__group.active { display: block; animation: fade .5s var(--ease); }
.svc-row { display: grid; grid-template-columns: 56px 1.1fr 1.4fr auto; gap: 24px; align-items: center; padding: clamp(20px, 2.6vw, 34px) 0; border-top: 1px solid var(--line); position: relative; transition: padding-left .4s var(--ease); }
.svc__group .svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row:hover { padding-left: 14px; }
.svc-row .rn { font-family: var(--mono); font-size: 12px; color: var(--brass); letter-spacing: .1em; }
.svc-row .rt { font-family: var(--display); font-weight: 400; font-size: clamp(21px, 2.4vw, 32px); letter-spacing: -.01em; line-height: 1.05; }
.svc-row .rd { font-size: 14px; color: var(--ink-soft); max-width: 40ch; }
.svc-row .ra { color: var(--ink); display: inline-flex; }
.svc-row .ra svg { transition: transform .4s var(--ease); }
.svc-row:hover .ra svg { transform: translate(6px,-6px); }
.svc-row__img { position: fixed; width: 230px; height: 290px; pointer-events: none; opacity: 0; transform: translate(-50%,-50%) scale(.9); transition: opacity .35s var(--ease), transform .5s var(--ease); z-index: 60; overflow: hidden; border-radius: 2px; box-shadow: 0 30px 60px rgba(28,23,18,.25); }
.svc-row__img img { width: 100%; height: 100%; object-fit: cover; }
.svc-row__img.show { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* ============================================================
   ETHOS / WHY (04)
   ============================================================ */
.ethos { background: var(--espresso); color: var(--paper); }
.ethos .sec-index { border-color: var(--line-on-dark); }
.ethos .sec-index .num { color: var(--brass-2); }
.ethos .sec-index .meta { color: rgba(244,239,230,.6); }
.ethos__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.ethos__col { padding: 40px clamp(30px,3vw,48px); border-right: 1px solid var(--line-on-dark); }
.ethos__col:first-child { padding-left: 0; }
.ethos__col:last-child { border-right: 0; padding-right: 0; }
.ethos__col .label { color: var(--brass-2); display: block; margin-bottom: 22px; }
.ethos__col h3 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 400; margin-bottom: 14px; }
.ethos__col p { font-size: 14.5px; color: rgba(244,239,230,.66); line-height: 1.7; }
.ethos__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 70px; padding-top: 44px; border-top: 1px solid var(--line-on-dark); }
.ethos__stats .s { padding: 0 clamp(30px,3vw,48px); }
.ethos__stats .s:first-child { padding-left: 0; }
.ethos__stats .s:last-child { padding-right: 0; }
.ethos__stats .s b { font-family: var(--display); font-weight: 350; font-size: clamp(54px, 8vw, 104px); line-height: .9; letter-spacing: -.02em; display: block; }
.ethos__stats .s span { font-family: var(--mono); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(244,239,230,.6); }

/* ============================================================
   FEATURE — dark lip
   ============================================================ */
.feature { background: var(--espresso); color: #fff; padding: clamp(64px, 9vw, 128px) 0; overflow: hidden; }
.feature__inner { display: grid; grid-template-columns: 1.05fr .92fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.feature__text { max-width: 600px; }
.feature__text .kicker { color: var(--brass-2); }
.feature__text h2 { font-size: clamp(32px, 4.6vw, 66px); font-weight: 360; line-height: 1.0; margin: 22px 0 24px; }
.feature__text h2 .it { font-style: italic; color: var(--brass-2); }
.feature__text p { font-size: 16px; color: rgba(255,255,255,.78); max-width: 520px; margin-bottom: 30px; line-height: 1.65; }
.feature__tags { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 34px; }
.feature__tags span { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.85); display: inline-flex; gap: 9px; align-items: center; }
.feature__tags span::before { content: ''; width: 6px; height: 6px; background: var(--brass-2); border-radius: 50%; }
.feature__media { position: relative; overflow: hidden; border-radius: 2px; }
.feature__media img, .feature__media video { display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 30%; transform: scale(1.08); will-change: transform; background: var(--espresso); }
.feature__media::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(185,145,79,.5); pointer-events: none; z-index: 2; }
.feature__media figcaption { position: absolute; left: 14px; bottom: 12px; z-index: 3; font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: #fff; mix-blend-mode: difference; }

/* ============================================================
   PRICING (05) — editorial price menu
   ============================================================ */
.price__note { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: baseline; margin-bottom: 30px; }
.price__note .lead { max-width: 46ch; }
.price__note .pill { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; color: var(--ink-2); white-space: nowrap; max-width: 100%; }
@media (max-width: 520px) { .price__note .pill { white-space: normal; border-radius: 16px; } }
.price-list { border-top: 1px solid var(--line); }
.price-row { display: grid; grid-template-columns: 52px 1fr auto; gap: 22px; align-items: baseline; padding: 24px 0; border-bottom: 1px solid var(--line); transition: padding-left .4s var(--ease); }
.price-row:hover { padding-left: 12px; }
.price-row .rn { font-family: var(--mono); font-size: 12px; color: var(--brass); }
.price-row .info .nm { font-family: var(--display); font-weight: 400; font-size: clamp(20px, 2.2vw, 28px); letter-spacing: -.01em; }
.price-row .info .ds { font-size: 13.5px; color: var(--ink-soft); margin-top: 5px; }
.price-row .amt { font-family: var(--mono); font-size: clamp(16px, 1.6vw, 20px); font-weight: 500; color: var(--ink); white-space: nowrap; text-align: right; }
.price-row .amt small { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; font-weight: 400; }
.price__foot { margin-top: 26px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   BEFORE / AFTER (06)
   ============================================================ */
.ba__filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.ba__panel { display: none; }
.ba__panel.active { display: block; animation: fade .5s var(--ease); }
.ba__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.ba-item figure { position: relative; overflow: hidden; border-radius: 2px; }
.ba-item figure::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px var(--brass); opacity: 0; transition: opacity .45s var(--ease); pointer-events: none; z-index: 3; }
.ba-item:hover figure::after { opacity: .7; }
.ba-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform 1.1s var(--ease); }
.ba-item:hover img { transform: scale(1.05); }
.ba-item .tag { position: absolute; top: 10px; left: 10px; font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; background: rgba(28,23,18,.72); color: #fff; padding: 4px 9px; border-radius: 2px; }
.ba-item .tag.aft { top: auto; bottom: 10px; left: auto; right: 10px; background: var(--brass); }
.ba-item figcaption { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 12px; }

/* ============================================================
   REVIEWS — editorial pull quote
   ============================================================ */
.reviews { background: var(--paper-2); }
.reviews__top { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.reviews__score { display: flex; align-items: baseline; gap: 16px; }
.reviews__score b { font-family: var(--display); font-size: clamp(40px, 5vw, 64px); font-weight: 350; line-height: 1; }
.reviews__score .label { color: var(--ink-soft); }
.reviews__quote { position: relative; min-height: 230px; }
.reviews__q { position: absolute; inset: 0; opacity: 0; transition: opacity .6s var(--ease); pointer-events: none; }
.reviews__q.on { opacity: 1; position: relative; pointer-events: auto; }
.reviews__q blockquote { font-family: var(--display); font-weight: 360; font-size: clamp(22px, 2.9vw, 40px); line-height: 1.28; letter-spacing: -.01em; color: var(--ink); max-width: 900px; }
.reviews__q .attr { margin-top: 26px; font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); display: flex; gap: 14px; align-items: center; }
.reviews__q .attr .stars { color: var(--brass); letter-spacing: 2px; }
.reviews__nav { display: flex; gap: 14px; margin-top: 40px; align-items: center; }
.reviews__nav button { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: all .35s var(--ease); }
.reviews__nav button:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.reviews__count { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: var(--muted); margin-left: 6px; }

/* ============================================================
   FAQ (07)
   ============================================================ */
.faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
.faq__col h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 400; margin-bottom: 8px; }
.faq__col > .label { display: block; margin-bottom: 30px; color: var(--brass); }
.acc__item { border-top: 1px solid var(--line); }
.acc__item:last-child { border-bottom: 1px solid var(--line); }
.acc__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; padding: 22px 0; }
.acc__q .qt { font-family: var(--display); font-weight: 400; font-size: clamp(17px, 1.7vw, 22px); letter-spacing: -.005em; }
.acc__q .qi { font-family: var(--mono); flex: none; font-size: 18px; transition: transform .4s var(--ease); color: var(--brass); }
.acc__item.open .acc__q .qi { transform: rotate(45deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.acc__a p { padding: 0 0 24px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.7; max-width: 54ch; }
.aftercare { display: flex; flex-direction: column; }
.aftercare__item { border-top: 1px solid var(--line); padding: 22px 0; }
.aftercare__item:last-child { border-bottom: 1px solid var(--line); }
.aftercare__item h4 { font-family: var(--display); font-weight: 400; font-size: 19px; margin-bottom: 12px; }
.aftercare__item ul { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
.aftercare__item li { font-size: 13px; color: var(--ink-soft); display: flex; gap: 8px; align-items: flex-start; }
.aftercare__item li::before { content: '—'; color: var(--brass); }
.note-bar { display: flex; gap: 14px; align-items: flex-start; margin-top: 24px; padding: 20px; background: var(--paper-3); border: 1px solid var(--line); }
.note-bar .label { color: var(--brass); flex: none; }
.note-bar p { font-size: 13px; color: var(--ink-soft); }

/* ============================================================
   BOOK / CTA
   ============================================================ */
.book { background: var(--espresso); color: var(--paper); }
.book .sec-index { border-color: var(--line-on-dark); }
.book .sec-index .num { color: var(--brass-2); }
.book .sec-index .meta { color: rgba(244,239,230,.6); }
.book__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.book__lead h2 { font-size: clamp(34px, 4.4vw, 66px); font-weight: 360; line-height: 1; margin-bottom: 22px; }
.book__lead h2 .it { font-style: italic; color: var(--brass-2); }
.book__lead p { color: rgba(244,239,230,.7); font-size: 15.5px; max-width: 38ch; line-height: 1.7; }
.book__contact { margin-top: 40px; display: flex; flex-direction: column; gap: 18px; }
.book__contact a { font-family: var(--display); font-size: clamp(20px, 2.4vw, 30px); font-weight: 400; border-bottom: 1px solid var(--line-on-dark); padding-bottom: 12px; transition: border-color .4s; display: inline-block; }
.book__contact a:hover { border-color: var(--brass-2); }
.book__contact .label { color: var(--brass-2); }
.book__panel { border: 1px solid var(--line-on-dark); padding: clamp(26px, 3vw, 38px); display: flex; flex-direction: column; }
.book__panel .ttl { color: var(--brass-2); display: block; margin-bottom: 22px; }
.book__panel .row { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 16px 0; border-top: 1px solid var(--line-on-dark); }
.book__panel .row .k { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,239,230,.5); }
.book__panel .row .v { font-family: var(--display); font-size: 19px; color: var(--paper); text-align: right; }
.book__panel .btn { width: 100%; margin-top: 28px; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 24px; }
.field { position: relative; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,239,230,.55); display: block; margin-bottom: 10px; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-on-dark);
  color: var(--paper); font-family: var(--sans); font-size: 15px; padding: 8px 0; transition: border-color .4s var(--ease);
}
.field textarea { resize: vertical; min-height: 70px; }
.field select { color: var(--paper); }
.field select option { color: #1c1712; }
.field input::placeholder, .field textarea::placeholder { color: rgba(244,239,230,.35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--brass-2); }
.form .submit { grid-column: 1 / -1; }
.form .submit .btn { width: 100%; }
.form__msg { grid-column: 1/-1; font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--brass-2); border: 1px solid var(--line-on-dark); padding: 14px; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--paper); padding-top: clamp(50px, 7vw, 96px); }
.footer__big { font-family: var(--display); font-weight: 350; font-size: clamp(64px, 17vw, 280px); line-height: .82; letter-spacing: -.03em; display: flex; align-items: baseline; gap: .1em; padding-bottom: 30px; }
.footer__big .it { font-style: italic; color: var(--brass); }
.footer__cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; padding: 40px 0; border-top: 1px solid var(--line); }
.footer__cols .label { display: block; margin-bottom: 18px; color: var(--brass); }
.footer__cols p, .footer__cols a { font-size: 14px; color: var(--ink-soft); margin-bottom: 10px; display: block; transition: color .3s; }
.footer__cols a:hover { color: var(--ink); }
.footer__desc { font-family: var(--display); font-size: 18px; line-height: 1.5; color: var(--ink-2); max-width: 34ch; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; margin: 0; transition: all .35s var(--ease); }
.footer__social a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.footer__bottom { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding: 24px 0; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.footer__bottom a:hover { color: var(--ink); }
.footer__bottom .links { display: flex; gap: 26px; flex-wrap: wrap; }

/* ============================================================
   INNER PAGES (service / utility) — editorial
   ============================================================ */
.svc-hero { padding-top: 132px; padding-bottom: 0; }
.svc-hero .kicker { margin-bottom: 30px; }
.svc-hero h1 { font-weight: 360; font-size: clamp(44px, 7vw, 104px); line-height: .94; letter-spacing: -.025em; max-width: 16ch; }
.svc-hero h1 .it { font-style: italic; color: var(--brass); }
.svc-hero .lead { margin-top: 28px; max-width: 56ch; }
.svc-hero__actions { margin-top: 34px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.svc-hero__meta { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: clamp(40px,5vw,64px); padding-top: 24px; border-top: 1px solid var(--line); }
.svc-hero__meta .label { display: block; margin-bottom: 8px; color: var(--brass); }
.svc-hero__meta b { font-family: var(--display); font-weight: 400; font-size: 19px; }
.svc-figure { margin-top: clamp(40px,6vw,80px); overflow: hidden; }
.svc-figure img { width: 100%; height: clamp(320px, 48vw, 600px); object-fit: cover; transform: scale(1.08); will-change: transform; }

.steps-ed { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.steps-ed .step { padding: 32px clamp(24px,2vw,34px); border-right: 1px solid var(--line); }
.steps-ed .step:first-child { padding-left: 0; }
.steps-ed .step:last-child { border-right: 0; padding-right: 0; }
.steps-ed .step .n { font-family: var(--mono); font-size: 13px; color: var(--brass); display: block; margin-bottom: 26px; }
.steps-ed .step h4 { font-family: var(--display); font-weight: 400; font-size: 20px; margin-bottom: 10px; }
.steps-ed .step p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

.whatis-ed { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px,6vw,90px); align-items: start; }
.whatis-ed .lead { font-family: var(--display); font-weight: 400; font-size: clamp(22px,2.3vw,31px); line-height: 1.3; color: var(--ink); }
.whatis-ed ul { display: flex; flex-direction: column; }
.whatis-ed li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink-2); }
.whatis-ed li:last-child { border-bottom: 1px solid var(--line); }
.whatis-ed li svg { color: var(--brass); flex: none; margin-top: 2px; }

.glance-ed { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px); }
.glance-ed h4 { font-family: var(--display); font-weight: 400; font-size: 22px; margin-bottom: 18px; }
.glance-ed li { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 14px; color: var(--ink-soft); }
.glance-ed li::before { content: '—'; color: var(--brass); }

/* prose (policies / training / gift) */
.prose-ed { max-width: 860px; }
.prose-ed h3 { font-family: var(--display); font-weight: 400; font-size: clamp(22px,2.4vw,30px); margin: 0 0 18px; }
.prose-ed p { color: var(--ink-soft); margin-bottom: 14px; line-height: 1.7; font-size: 15px; }
.prose-ed .info-card { background: var(--paper-3); border: 1px solid var(--line); padding: 30px; margin-bottom: 18px; }
.prose-ed ul.b li { display: flex; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line-2); font-size: 14px; color: var(--ink-soft); }
.prose-ed ul.b li::before { content: '—'; color: var(--brass); flex: none; }
/* training — tracks + lists (responsive, no blowout) */
.track-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 56px); }
.track__name { font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.6vw, 32px); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.track__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.track__list li { font-size: 14px; color: var(--ink-soft); display: flex; gap: 10px; }
.track__list li::before { content: '—'; color: var(--brass); flex: none; }
.track__note { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.dash-list { list-style: none; }
.dash-list li { padding: 9px 0; color: rgba(244,239,230,.72); }
.dash-list li::before { content: '— '; color: var(--brass-2); }
.recv-list { list-style: none; columns: 2; column-gap: 44px; }
.recv-list li { break-inside: avoid; padding: 9px 0; color: rgba(244,239,230,.72); }
.recv-list li::before { content: '— '; color: var(--brass-2); }
@media (max-width: 900px) { .track-grid { grid-template-columns: 1fr; gap: 34px; } }
@media (max-width: 680px) { .recv-list { columns: 1; } }

.amounts { display: flex; flex-wrap: wrap; gap: 12px; }
.amounts a { font-family: var(--mono); font-size: 14px; letter-spacing: .06em; border: 1px solid var(--line); padding: 14px 24px; border-radius: 2px; transition: all .35s var(--ease); }
.amounts a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

@media (max-width: 1024px) {
  .whatis-ed { grid-template-columns: 1fr; }
  .steps-ed { grid-template-columns: 1fr 1fr; }
  .svc-hero__meta { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .steps-ed { grid-template-columns: 1fr; }
  .steps-ed .step { border-right: 0; border-bottom: 1px solid var(--line); padding: 24px 0; }
  .glance-ed { grid-template-columns: 1fr; }
  .svc-hero__meta { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE DRAWER + MODAL
   ============================================================ */
.drawer { position: fixed; inset: 0; z-index: 200; background: var(--espresso); color: var(--paper); transform: translateY(-100%); transition: transform .6s var(--ease); display: flex; flex-direction: column; padding: 30px var(--gutter); }
.drawer.open { transform: translateY(0); }
.drawer__top { display: flex; justify-content: space-between; align-items: center; height: 46px; }
.drawer__top .brand__mark, .drawer__top .brand__word { color: var(--paper); }
.drawer__close { font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.drawer__menu { margin-top: auto; margin-bottom: auto; display: flex; flex-direction: column; gap: 6px; }
.drawer__menu a { font-family: var(--display); font-size: clamp(34px, 9vw, 60px); font-weight: 400; padding: 6px 0; }
.drawer__menu a .i { font-family: var(--mono); font-size: 13px; color: var(--brass-2); vertical-align: super; margin-right: 12px; }
.drawer__foot { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: rgba(244,239,230,.6); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

.modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal__ov { position: absolute; inset: 0; background: rgba(28,23,18,.6); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.modal__box { position: relative; background: var(--paper); max-width: 520px; width: 100%; padding: 44px; border-radius: 2px; animation: pop .5s var(--ease); }
.modal__box .kicker { margin-bottom: 18px; }
.modal__box h3 { font-size: 30px; font-weight: 400; margin-bottom: 16px; }
.modal__box p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 14px; line-height: 1.6; }
.modal__actions { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
.modal__close { position: absolute; top: 16px; right: 16px; font-family: var(--mono); font-size: 20px; }

/* ============================================================
   SIGNATURE — atelier dossier (grain · register marks · rails · cursor)
   ============================================================ */
/* film grain — printed-paper tactility */
.grain { position: fixed; inset: 0; z-index: 400; pointer-events: none; opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* register / corner marks — framed-print signature (blend keeps them visible on any ground) */
.regmark { position: fixed; width: 16px; height: 16px; z-index: 90; pointer-events: none; opacity: .6; mix-blend-mode: difference; }
.regmark::before, .regmark::after { content: ''; position: absolute; background: #f4efe6; }
.regmark::before { width: 100%; height: 1px; top: 0; } .regmark::after { width: 1px; height: 100%; left: 0; }
.regmark.tl { top: 18px; left: 18px; } .regmark.tr { top: 18px; right: 18px; transform: scaleX(-1); }
.regmark.bl { bottom: 18px; left: 18px; transform: scaleY(-1); } .regmark.br { bottom: 18px; right: 18px; transform: scale(-1); }

/* margin rails — running wordmark + live section index (blend = always legible) */
.rail { position: fixed; z-index: 90; font-family: var(--mono); font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: #f4efe6; mix-blend-mode: difference; pointer-events: none; display: none; }
.rail--left { left: 26px; top: 50%; transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl; }
.rail--right { right: 26px; top: 50%; transform: translateY(-50%); writing-mode: vertical-rl; display: none; }
.rail--right b { font-weight: 500; }
@media (min-width: 1280px) { .rail { display: block; } .rail--right { display: block; } }

/* custom cursor — interaction signature (fine pointers only) */
.cursor { position: fixed; top: 0; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--brass); z-index: 9999; pointer-events: none; transform: translate(-50%, -50%); transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease), opacity .3s; mix-blend-mode: normal; }
.cursor__label { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; transform: translate(-50%, -50%); font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); opacity: 0; transition: opacity .3s var(--ease); white-space: nowrap; }
body.has-cursor.hovering .cursor { width: 62px; height: 62px; background: var(--brass-2); }
body.has-cursor.hovering .cursor__label { opacity: 1; }
@media (hover: hover) and (pointer: fine) { body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; } }

/* count-up stat helper keeps layout stable */
.ethos__stats .s b { font-variant-numeric: lining-nums tabular-nums; }

/* page-transition wipe — exit cover on internal navigation */
.page-wipe { position: fixed; inset: 0; z-index: 8000; background: var(--espresso); pointer-events: none; transform: translateY(101%); display: grid; place-items: center; }
.page-wipe.cover { transform: translateY(0); transition: transform .6s var(--ease); }
.page-wipe__mark { display: flex; align-items: baseline; gap: 8px; opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease) .15s, transform .5s var(--ease) .15s; }
.page-wipe.cover .page-wipe__mark { opacity: 1; transform: none; }
.page-wipe__mark .m { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 30px; color: var(--paper); }
.page-wipe__mark .w { font-family: var(--mono); font-size: 12px; letter-spacing: .34em; text-transform: uppercase; color: var(--brass-2); padding-bottom: 2px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.reveal { transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(28px); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
[data-clip] { transition: clip-path 1.1s var(--ease); }
.js [data-clip] { clip-path: inset(0 0 100% 0); }
[data-clip].in { clip-path: inset(0 0 0 0); }
@media (prefers-reduced-motion: reduce) { .reveal,[data-clip] { opacity: 1; transform: none; clip-path: none; transition: none; } .marquee__track { animation: none; } html { scroll-behavior: auto; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__menu { display: none; }
  .burger { display: block; }
  .nav__book { display: none; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin-top: 30px; }
  .about__grid, .studio__intro, .book__grid, .faq__grid, .feature__inner { grid-template-columns: 1fr; }
  .feature__media { max-width: 460px; }
  .ethos__grid { grid-template-columns: 1fr; }
  .ethos__col { border-right: 0; border-bottom: 1px solid var(--line-on-dark); padding: 28px 0; }
  .ethos__col:last-child { border-bottom: 0; }
  .ba__grid { grid-template-columns: repeat(2,1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .svc-row { grid-template-columns: 36px 1fr; }
  .svc-row .rd, .svc-row .ra { display: none; }
  .price-row { grid-template-columns: 32px 1fr; }
  .price-row .amt { grid-column: 2; text-align: left; margin-top: 8px; }
  .studio__feats { grid-template-columns: 1fr; }
  .studio__feats .f { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px 0; }
  .ethos__stats { grid-template-columns: 1fr; gap: 30px; }
  .ethos__stats .s { padding: 0; }
  .sec-index { display: block; }
  .sec-index .num, .sec-index .meta { display: block; max-width: 100%; text-align: left; }
  .sec-index h2 { margin: 10px 0; }
  .sec-index .meta { margin-top: 8px; }
  .form { grid-template-columns: 1fr; }
  .aftercare__item ul { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .hero__meta { flex-wrap: wrap; gap: 22px; }
  .svc-row__img { display: none; }
}
@media (max-width: 600px) {
  .hero { padding-top: 96px; }
  .hero h1 { font-size: clamp(38px, 11.4vw, 60px); }
  .hero__meta { gap: 18px 28px; }
  .sec-index h2 { font-size: clamp(28px, 8vw, 44px); }
  .footer__big { font-size: clamp(52px, 19vw, 96px); }
  .modal { padding: 18px; }
  .modal__box { padding: 30px 22px; }
  .modal__box h3 { font-size: 25px; }
  .modal__actions { gap: 10px; }
  .modal__actions .btn { flex: 1 1 auto; }
  .btn { padding: 15px 20px; letter-spacing: .1em; }
}
