/* ═══════════════════════════════════════════════════════════
   HAARWERK — light editorial salon site
   Palette: ivory / warm ink / champagne bronze. Light only.
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #F7F3EC;
  --bg-2: #EFE8DC;
  --ink: #17130E;
  --ink-2: #6E6457;
  --accent: #B08D57;
  --accent-2: #D8B77E;
  --line: rgba(23, 19, 14, .14);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

.skip-link {
  position: fixed; top: -100%; left: 1rem; z-index: 300;
  background: var(--ink); color: var(--bg); padding: .6rem 1rem; border-radius: 99px;
}
.skip-link:focus { top: 1rem; }

body.is-locked { overflow: hidden; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.tint { color: var(--accent); }

/* ── Grain ─────────────────────────────────────────────── */
.grain {
  position: fixed; inset: -50%; z-index: 120; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .05;
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) } 10% { transform: translate(-3%,2%) }
  30% { transform: translate(2%,-3%) } 50% { transform: translate(-2%,-2%) }
  70% { transform: translate(3%,2%) } 90% { transform: translate(-1%,3%) }
}

/* ── Loader ────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
}
html:not(.js) .loader { display: none; }
.loader__mark {
  font-family: var(--serif); font-weight: 600; font-style: italic;
  font-size: clamp(2.6rem, 7vw, 5.5rem); letter-spacing: .01em;
  overflow: hidden; display: flex;
}
.loader__mark .ch { display: inline-block; overflow: hidden; }
.loader__mark .ch-in { display: inline-block; transform: translateY(120%); }
.loader__dot { color: var(--accent); }
.loader__count {
  position: absolute; right: var(--gutter); bottom: calc(var(--gutter) * .75);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(3rem, 9vw, 7rem); color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}

/* ── Header ────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--gutter);
  transition: transform .5s var(--ease-out), background-color .4s, backdrop-filter .4s;
}
.header.is-scrolled {
  background: rgba(247, 243, 236, .82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header.is-hidden { transform: translateY(-110%); }
.header__logo {
  font-family: var(--serif); font-weight: 600; font-style: italic;
  font-size: 1.55rem; line-height: 1; letter-spacing: .01em;
}
.header__nav { display: flex; gap: 2.2rem; }
.header__nav a {
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  position: relative; padding: .3rem 0;
}
.header__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--ink); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__right { display: flex; align-items: center; gap: 1rem; }

.burger { display: none; position: relative; width: 44px; height: 44px; }
.burger span {
  position: absolute; left: 10px; width: 24px; height: 2px; background: var(--ink);
  transition: transform .4s var(--ease-out), top .4s var(--ease-out);
}
.burger span:nth-child(1) { top: 18px; }
.burger span:nth-child(2) { top: 25px; }
.burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 899px) {
  .header { padding: .9rem 1.25rem; }
  .header__nav { display: none; }
  .header__right .btn { display: none; }
  .burger { display: block; }
}

/* ── Fullscreen menu ───────────────────────────────────── */
.menu {
  position: fixed; inset: 0; z-index: 90; background: var(--bg-2);
  display: flex; flex-direction: column; justify-content: center; gap: 3rem;
  padding: calc(var(--gutter) * 2) var(--gutter) var(--gutter);
  visibility: hidden; pointer-events: none;
  touch-action: none; overscroll-behavior: contain;
}
.menu.is-open { visibility: visible; pointer-events: auto; }
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 9vw, 4.6rem);
  line-height: 1.15; padding: .35rem 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 1rem;
}
.menu__links a small {
  font-family: var(--sans); font-size: .7rem; font-weight: 600; color: var(--accent);
  letter-spacing: .1em;
}
.menu__links a:active { font-style: italic; }
.menu__foot { color: var(--ink-2); font-size: .9rem; }
.menu__foot p { margin: 0; }

/* ── Buttons & links ───────────────────────────────────── */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; border-radius: 99px; background: var(--ink); color: var(--bg);
  font-weight: 600; font-size: .92rem; letter-spacing: .02em;
  overflow: hidden; isolation: isolate; white-space: nowrap;
}
.btn--small { padding: .68rem 1.35rem; font-size: .8rem; }
.btn--big { padding: 1.25rem 2.6rem; font-size: 1.05rem; }
.btn__bg {
  position: absolute; inset: 0; z-index: -1; background: var(--accent);
  border-radius: 50% 50% 0 0; transform: translateY(101%);
  transition: transform .55s var(--ease-out), border-radius .55s var(--ease-out);
}
.btn:hover .btn__bg { transform: translateY(0); border-radius: 0; }
.btn__label { position: relative; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .95rem; padding-bottom: .2rem;
  border-bottom: 1px solid var(--ink);
  transition: gap .3s var(--ease-out), color .3s, border-color .3s;
}
.link-arrow:hover { gap: .9rem; color: var(--accent); border-color: var(--accent); }

/* ── Frames (image reveal containers) ──────────────────── */
.frame { position: relative; overflow: hidden; border-radius: 4px; background: var(--bg-2); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--3x4 { aspect-ratio: 3 / 4; }
.frame--4x5 { aspect-ratio: 4 / 5; }
html.js .frame img { transform: scale(1.18); }
html.js .frame { clip-path: inset(100% 0 0 0); }
html.js.no-anim .frame { clip-path: none; }
html.js.no-anim .frame img { transform: none; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--gutter) * 2.5) var(--gutter) calc(var(--gutter) * 2);
  overflow: clip;
}
.hero__media {
  position: absolute; top: -10%; left: 0; right: 0; height: 120%; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
  transform: scale(1.06);
  animation: heroKen 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKen {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.15) translate3d(-1.4%, -1.2%, 0); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(96deg,
      rgba(247, 243, 236, .95) 0%, rgba(247, 243, 236, .80) 24%,
      rgba(247, 243, 236, .34) 50%, rgba(247, 243, 236, .06) 76%),
    linear-gradient(0deg, rgba(247, 243, 236, .58) 0%, rgba(247, 243, 236, 0) 32%);
}

.hero__content { position: relative; z-index: 2; max-width: 1100px; }
.hero__eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: 1.6rem;
}
.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(3.4rem, 12.5vw, 10.5rem);
  line-height: .98; letter-spacing: -.015em;
  margin-bottom: 1.8rem; max-width: 12ch;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__sub { max-width: 46ch; font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--ink-2); margin-bottom: 2.4rem; }
.hero__cta { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }

.hero__hints {
  position: absolute; z-index: 2; left: var(--gutter); right: var(--gutter); bottom: 1.6rem;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.hero__scrollcue { display: flex; align-items: center; gap: .8rem; color: var(--ink-2); }
.hero__scrollcue span { font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.hero__scrollcue i {
  display: block; width: 1px; height: 52px; background: var(--line); position: relative; overflow: hidden;
}
.hero__scrollcue i::after {
  content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: var(--ink); animation: scrollcue 2.2s var(--ease-out) infinite;
}
@keyframes scrollcue { 0% { top: -100% } 55% { top: 0 } 100% { top: 100% } }
.hero__tags { font-size: .78rem; color: var(--ink-2); letter-spacing: .06em; }

@media (max-width: 899px) {
  .hero__media img { object-position: 50% 38%; }
  .hero__scrim {
    background: linear-gradient(180deg,
      rgba(247, 243, 236, .62) 0%, rgba(247, 243, 236, .40) 34%,
      rgba(247, 243, 236, .52) 66%, rgba(247, 243, 236, .88) 100%);
  }
}

/* split chars (hero title) */
.wo { display: inline-block; white-space: nowrap; }
.hero__title .ch { display: inline-block; overflow: hidden; vertical-align: top; }
.hero__title .ch-in { display: inline-block; }
html.js .hero__title .ch-in { transform: translateY(115%); }
html.js.no-anim .hero__title .ch-in { transform: none; }

/* generic reveal initial state */
html.js [data-reveal] { opacity: 0; transform: translateY(34px); }
html.js.no-anim [data-reveal] { opacity: 1; transform: none; }

/* split lines (section titles) */
.line-mask { display: block; overflow: hidden; }
.line-in { display: block; }
html.js .line-in { transform: translateY(115%); }
html.js.no-anim .line-in { transform: none; }

/* ── Manifesto ─────────────────────────────────────────── */
.manifesto {
  position: relative; padding: clamp(7rem, 16vw, 15rem) var(--gutter);
  max-width: 1200px; margin: 0 auto; text-align: center;
}
.manifesto__label, .section-head__label {
  font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 2rem;
}
.manifesto__text {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.7rem, 4.3vw, 3.4rem); line-height: 1.28; letter-spacing: -.01em;
  position: relative; z-index: 2;
  max-width: 22ch; margin: 0 auto;
}
.manifesto__text .wd { opacity: .13; }
html.no-anim .manifesto__text .wd { opacity: 1; }
.manifesto__img { position: absolute; z-index: 1; width: clamp(120px, 18vw, 260px); }
.manifesto__img--left { left: -1%; top: 12%; rotate: -4deg; }
.manifesto__img--right { right: -1%; bottom: 2%; width: clamp(150px, 22vw, 320px); rotate: 3deg; }

/* ── Section heads ─────────────────────────────────────── */
.section-head { padding: 0 var(--gutter); margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-head__title, .works__head .section-head__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5.8rem); line-height: 1.02; letter-spacing: -.015em;
}
.section-head__title em { font-style: italic; color: var(--accent); }

/* ── Services ──────────────────────────────────────────── */
.services { position: relative; padding: clamp(4rem, 10vw, 9rem) 0; }
.services__list { border-top: 1px solid var(--line); margin: 0 var(--gutter); }
.svc { border-bottom: 1px solid var(--line); position: relative; }
.svc__row {
  display: grid; grid-template-columns: 3.5rem 1.4fr 1.6fr auto; align-items: baseline;
  gap: 1.5rem; padding: 2rem .5rem;
  transition: padding .4s var(--ease-out), opacity .3s;
}
.svc__no { font-size: .8rem; font-weight: 600; color: var(--accent); }
.svc__name {
  font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.05; transition: transform .45s var(--ease-out), font-style .1s;
}
.svc__desc { color: var(--ink-2); font-size: .95rem; max-width: 40ch; }
.svc__price { font-weight: 600; font-size: .95rem; white-space: nowrap; }
.svc__thumb { display: none; }

@media (pointer: fine) and (min-width: 900px) {
  .services__list:hover .svc__row { opacity: .35; }
  .services__list .svc__row:hover { opacity: 1; }
  .svc__row:hover .svc__name { transform: translateX(12px); font-style: italic; }
}

.svc-preview {
  position: fixed; z-index: 80; width: 240px; aspect-ratio: 3/4;
  pointer-events: none; overflow: hidden; border-radius: 6px;
  top: 0; left: 0; opacity: 0; rotate: 4deg;
  display: none;
}
@media (pointer: fine) and (min-width: 900px) { .svc-preview { display: block; } }
.svc-preview img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0;
  transition: opacity .35s;
}
.svc-preview img.is-active { opacity: 1; }

/* mobile: static thumbs inside rows */
@media (max-width: 899px), (pointer: coarse) {
  .svc__row {
    grid-template-columns: 64px 1fr auto;
    grid-template-areas: "thumb name price" "thumb desc desc";
    column-gap: 1.1rem; row-gap: .4rem; align-items: center;
    padding: 1.3rem .25rem;
  }
  .svc__no { display: none; }
  .svc__name { grid-area: name; font-size: clamp(1.45rem, 6vw, 1.9rem); }
  .svc__desc { grid-area: desc; font-size: .88rem; }
  .svc__price { grid-area: price; align-self: center; font-size: .88rem; }
  .svc__thumb {
    display: block; grid-area: thumb; width: 64px; aspect-ratio: 1;
    border-radius: 50%; overflow: hidden;
  }
  .svc__thumb img { width: 100%; height: 100%; object-fit: cover; }
}

/* ── Works (horizontal) ────────────────────────────────── */
.works { background: var(--bg-2); }
.works__pin { padding: clamp(4rem, 9vw, 7rem) 0; overflow: hidden; }
.works__head { padding: 0 var(--gutter); margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.works__track {
  display: flex; align-items: flex-start; gap: clamp(1.5rem, 4vw, 4rem);
  padding: 0 var(--gutter); width: max-content;
}
.work { width: clamp(260px, 34vw, 460px); flex-shrink: 0; }
.work--tall { margin-top: clamp(2rem, 6vw, 5rem); }
.work__frame { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 3/4; background: var(--bg); }
.work__frame img { width: 100%; height: 112%; object-fit: cover; will-change: transform; }
.work__cap {
  display: flex; gap: .8rem; align-items: baseline; margin-top: 1rem;
  font-size: .92rem; font-weight: 600;
}
.work__cap span { color: var(--accent); font-size: .75rem; }
.work--cta { display: flex; align-items: center; }
.work__ctacard {
  display: flex; flex-direction: column; gap: 2rem; justify-content: center;
  padding: 3rem; border: 1px solid var(--line); border-radius: 4px;
  font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2.4rem); line-height: 1.15;
  min-height: 60%;
}
.work__ctacard em { color: var(--accent); }
.work__ctacard .link-arrow { font-family: var(--sans); font-size: .95rem; align-self: flex-start; }

/* desktop pin: definite (viewport-height-based) widths so the whole track
   scrolls — auto/aspect-ratio widths made track.scrollWidth unreliable and
   the horizontal scroll stopped after a few cards. */
@media (min-width: 900px) and (pointer: fine) {
  .works__pin {
    height: 100svh;
    padding: calc(64px + 3vh) 0 3vh;
    display: flex; flex-direction: column;
  }
  .works__head { margin-bottom: 3vh; flex: none; }
  .works__head .section-head__title { font-size: min(5.8rem, 8vh); }
  .works__track { flex: 1; min-height: 0; align-items: center; }
  .work { width: min(52vh, 440px); flex-shrink: 0; }
  .work__frame { width: 100%; aspect-ratio: 3 / 4; }
  .work--tall { margin-top: 0; transform: translateY(-4%); }
  .work--cta { width: min(46vh, 380px); align-self: center; }
  .work__ctacard { width: 100%; height: min(69vh, 587px); min-height: 0; justify-content: center; }
}

/* mobile / touch: scroll-driven pinned horizontal scroll (like desktop) */
@media (max-width: 899px), (pointer: coarse) {
  .works__pin {
    height: 100svh;
    padding: calc(58px + 2vh) 0 3vh;
    display: flex; flex-direction: column;
  }
  .works__head { margin-bottom: 2.5vh; }
  .works__head .section-head__title { font-size: clamp(2rem, 9vw, 3.2rem); }
  .works__track {
    width: max-content; flex: 1; min-height: 0;
    align-items: center; gap: 5vw;
  }
  .work { width: 68vw; flex-shrink: 0; }
  .work--tall { margin-top: 0; }
  .work__frame { width: 100%; aspect-ratio: 3 / 4; max-height: 60vh; }
  .work__frame img { height: 100%; }
  .work__cap { margin-top: .8rem; }
  .work--cta { width: 68vw; align-self: center; }
  .work__ctacard { width: 100%; height: min(60vh, 440px); min-height: 0; padding: 2rem; }
}

/* ── Atelier ───────────────────────────────────────────── */
.atelier {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(5rem, 12vw, 11rem) var(--gutter);
  max-width: 1400px; margin: 0 auto;
}
.atelier__media { position: relative; }
.atelier__sticky { position: sticky; top: 12vh; }
.atelier__body { display: flex; flex-direction: column; gap: 1.6rem; padding-top: 2rem; }
.atelier__text { color: var(--ink-2); max-width: 52ch; font-size: 1.02rem; }
.stats { display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); margin-top: 2rem; flex-wrap: wrap; }
.stats__item dt {
  font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 500; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stats__item dd { color: var(--ink-2); font-size: .85rem; margin-top: .4rem; }
@media (max-width: 899px) {
  .atelier { grid-template-columns: 1fr; }
  .atelier__sticky { position: relative; top: 0; }
}

/* ── Quote ─────────────────────────────────────────────── */
.quote {
  position: relative; min-height: 92svh; overflow: clip;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(6rem, 14vw, 10rem) var(--gutter);
}
.quote__bg { position: absolute; inset: -12% 0; z-index: 0; }
.quote__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.quote__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(23,19,14,.25) 22%, rgba(23,19,14,.45) 100%);
}
.quote__text {
  position: relative; z-index: 1; text-align: center; color: #F7F3EC;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 4.2rem); line-height: 1.25; letter-spacing: -.01em;
  max-width: 22ch;
}
.quote__text em { font-style: italic; color: var(--accent-2); }

/* ── Team ──────────────────────────────────────────────── */
.team { padding: clamp(5rem, 12vw, 10rem) 0 clamp(4rem, 9vw, 8rem); }
.team__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem);
  padding: 0 var(--gutter);
}
.member .frame.is-revealed img { transition: transform 1.1s var(--ease-out); }
.member:hover .frame.is-revealed img { transform: scale(1.06); }
.member h3 {
  font-family: var(--serif); font-weight: 600; font-size: 1.7rem; margin-top: 1.2rem;
}
.member__role { color: var(--accent); font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-top: .2rem; }
.member__quote { color: var(--ink-2); font-size: .95rem; margin-top: .6rem; font-style: italic; font-family: var(--serif); font-size: 1.1rem; }
@media (max-width: 899px) { .team__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ── Contact ───────────────────────────────────────────── */
.contact {
  background: var(--bg-2); text-align: center;
  padding: clamp(6rem, 14vw, 12rem) var(--gutter) clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
}
.contact__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(3.2rem, 11vw, 9.5rem); line-height: 1; letter-spacing: -.015em;
}
.contact__title em { font-style: italic; color: var(--accent); }
.contact__sub { color: var(--ink-2); max-width: 44ch; margin: 1.8rem auto 2.6rem; }
.contact__cta { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; margin-bottom: clamp(3.5rem, 8vw, 6rem); }
.contact__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 900px; margin: 0 auto; text-align: center;
}
.contact__grid h3 {
  font-size: .75rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .8rem;
}
.contact__grid p { color: var(--ink-2); }
.contact__grid a { border-bottom: 1px solid var(--line); transition: color .3s, border-color .3s; }
.contact__grid a:hover { color: var(--accent); border-color: var(--accent); }
@media (max-width: 700px) { .contact__grid { grid-template-columns: 1fr; gap: 2.4rem; } }

/* ── Booking ───────────────────────────────────────────── */
.booking {
  padding: clamp(5rem, 12vw, 10rem) var(--gutter) clamp(4rem, 9vw, 8rem);
  max-width: 1240px; margin: 0 auto;
}
.booking__head { padding: 0; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.booking__lead { color: var(--ink-2); max-width: 48ch; margin-top: 1.4rem; font-size: 1.02rem; }

.booking__card {
  background: #FCFAF5;
  border: 1px solid var(--line); border-radius: 14px;
  padding: clamp(1.4rem, 4vw, 3.2rem);
  box-shadow: 0 40px 90px -60px rgba(23, 19, 14, .5);
}

.booking__form {
  display: grid; gap: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr 1.02fr;
  grid-template-areas: "service date" "data date" "foot date";
  align-items: start;
}
.bk-service { grid-area: service; }
.bk-date    { grid-area: date; }
.bk-data    { grid-area: data; }
.bk-foot    { grid-area: foot; }

.bk-step { border: 0; padding: 0; margin: 0; min-width: 0; }
.bk-step legend {
  font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 1.1rem; padding: 0;
}

/* chips + slots */
.bk-chips, .bk-slots__grid { display: flex; flex-wrap: wrap; gap: .6rem; }
.bk-chip, .bk-slot {
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  border-radius: 99px; padding: .62rem 1.15rem; font-weight: 600; font-size: .88rem;
  cursor: pointer; transition: border-color .25s, background-color .25s, color .25s, transform .25s var(--ease-out);
}
.bk-chip:hover, .bk-slot:hover { border-color: var(--ink); }
.bk-chip:active, .bk-slot:active { transform: scale(.97); }
.bk-chip.is-active, .bk-slot.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* calendar */
.bk-cal { max-width: 400px; }
.bk-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.bk-cal__month { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; }
.bk-nav {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  font-size: 1.2rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, background-color .25s, color .25s;
}
.bk-nav:hover:not(:disabled) { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.bk-nav:disabled { opacity: .28; cursor: not-allowed; }
.bk-cal__dows, .bk-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .3rem; }
.bk-cal__dows {
  margin-bottom: .5rem; font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-2); text-align: center;
}
.bk-day {
  aspect-ratio: 1; border-radius: 50%; border: 1px solid transparent; background: transparent;
  font-size: .92rem; font-weight: 500; color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background-color .2s, color .2s, transform .2s var(--ease-out);
}
.bk-day:hover:not(:disabled):not(.is-empty) { border-color: var(--ink); }
.bk-day:disabled { color: rgba(23, 19, 14, .22); cursor: default; }
.bk-day.is-empty { visibility: hidden; }
.bk-day.is-active { background: var(--accent); border-color: var(--accent); color: var(--ink); font-weight: 700; transform: scale(1.04); }
.bk-cal__hint { margin-top: 1rem; font-size: .78rem; color: var(--ink-2); }

.bk-slots { margin-top: 1.8rem; }
.bk-slots__label {
  font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); margin-bottom: .9rem;
}
.bk-slot { padding: .55rem 1rem; font-size: .85rem; }

/* fields */
.bk-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bk-field { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.bk-field.bk-full { grid-column: 1 / -1; }
.bk-field span { font-size: .78rem; font-weight: 600; color: var(--ink-2); }
.bk-field span em { font-style: normal; opacity: .7; font-weight: 400; }
.bk-field input, .bk-field textarea {
  width: 100%; padding: .85rem .95rem; border: 1px solid var(--line); border-radius: 8px;
  background: var(--bg); font: inherit; color: var(--ink); resize: vertical;
  transition: border-color .25s, box-shadow .25s;
}
.bk-field input:focus, .bk-field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(176, 141, 87, .16);
}
.bk-field.is-invalid input { border-color: #b4553f; }

/* foot */
.bk-foot { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.bk-summary {
  font-family: var(--serif); font-size: 1.25rem; line-height: 1.35; color: var(--ink);
}
.bk-summary em { font-style: italic; color: var(--accent); }
.bk-summary.is-placeholder { color: var(--ink-2); font-family: var(--sans); font-size: .95rem; }
.bk-error { color: #b4553f; font-size: .88rem; font-weight: 600; }
.bk-foot .btn { align-self: stretch; }

/* confirmation */
.booking__done { text-align: center; padding: clamp(1rem, 4vw, 3rem) 1rem; max-width: 560px; margin: 0 auto; }
.booking__done-mark {
  width: 72px; height: 72px; margin: 0 auto 1.6rem; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
}
.booking__done h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.booking__done-summary {
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--accent);
  margin-bottom: 1.2rem;
}
.booking__done-note { color: var(--ink-2); max-width: 42ch; margin: 0 auto 2rem; }
.booking__done-cta { display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }

@media (max-width: 820px) {
  .booking__form {
    grid-template-columns: 1fr;
    grid-template-areas: "service" "date" "data" "foot";
  }
  .bk-cal { max-width: none; }
  .bk-foot .btn { align-self: stretch; }
}
@media (max-width: 480px) {
  .bk-fields { grid-template-columns: 1fr; }
}

/* ── Footer ────────────────────────────────────────────── */
.footer { background: var(--bg-2); overflow: hidden; }
.footer__row {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1.4rem var(--gutter); border-top: 1px solid var(--line);
  font-size: .85rem; color: var(--ink-2);
}
.footer__row a:hover, .footer__top:hover { color: var(--accent); }
.footer__mark {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(4rem, 17vw, 17rem); line-height: 1;
  text-align: center; padding: 0 .5rem 1.5rem;
  color: var(--ink); opacity: .95; user-select: none;
}

/* ── Motion preferences ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .grain, .hero__scrollcue i::after, .hero__media img { animation: none !important; }
  .hero__media img { transform: scale(1.04); }
  html { scroll-behavior: auto; }
}
