/* ============================================================
   WASAMU — editorial portrait studio
   Design tokens + shared components
   Display: Condor Bold (brand). Big Shoulders Display = fallback
   until the licensed Condor web fonts are dropped into /fonts.
   Body: Helvetica stack. Accents: Spectral italic.
   ============================================================ */

/* Brand display face — drop the licensed Condor web fonts here.
   (Adobe Fonts users: replace this with your kit <link> and set
   --display to 'condor', sans-serif.) */
/* Licensed Condor web fonts are not shipped, so the display face falls back
   to 'Big Shoulders Display' (loaded from Google Fonts). To use Condor, drop
   Condor-Bold.woff2/.woff into /fonts and un-comment this @font-face block. */
/*
@font-face {
  font-family: 'Condor';
  src: url('fonts/Condor-Bold.woff2') format('woff2'),
       url('fonts/Condor-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*/

:root {
  /* Color — warm paper, near-black ink, periwinkle + amber accents, deep navy */
  --paper:        #faf8f3;
  --paper-band:   #f1ede4;
  --ink:          #211f1b;
  --ink-soft:     #423e38;
  --muted:        #8d877a;
  --line:         #ddd7c9;
  --line-soft:    #e7e2d6;
  --accent:       oklch(0.60 0.105 262);  /* periwinkle word-tints + links */
  --accent-warm:  oklch(0.62 0.085 56);   /* timestamps */
  --navy:         #1e2740;
  --navy-2:       #19203a;
  --on-navy:      #e7e7ee;
  --on-navy-dim:  #a7abbd;

  /* Type */
  --display: 'Condor', 'Big Shoulders Display', 'Helvetica Neue', Arial, sans-serif;
  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --sans:  'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(72px, 11vw, 132px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

::selection { background: oklch(0.60 0.105 262 / 0.22); }

/* ---- Layout helpers ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: var(--section-y) 0; }
.section--band { background: var(--paper-band); }

.grid { display: grid; gap: clamp(32px, 5vw, 72px); }

/* ---- Type system ---- */
.serif { font-family: var(--serif); }

h1, h2, h3 { font-family: var(--display); font-weight: 700; margin: 0; }

.display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

.headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(29px, 3.6vw, 43px);
  line-height: 1.12;
  letter-spacing: -0.004em;
  text-wrap: pretty;
}

.headline--center { text-align: center; }

.lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--ink-soft);
}

.body p { color: var(--ink-soft); margin: 0 0 1.05em; }
.body p:last-child { margin-bottom: 0; }
.body { font-size: 16px; line-height: 1.68; }

/* periwinkle editorial word-tints */
.hl { color: var(--accent); }

/* timestamp eyebrow */
.stamp {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--accent-warm);
  letter-spacing: 0.01em;
  margin: 0 0 18px;
}

/* uppercase tracked label */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 20px;
}

/* "See more …" inline link */
.morelink {
  display: inline-block;
  margin-top: 26px;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
}
.morelink:hover { color: var(--accent); border-color: var(--accent); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: #161d33; }
.btn--primary:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { color: var(--accent); }
.btn--block { width: 100%; }

/* text link with arrow */
.linkarrow {
  font-size: 14px; text-decoration: none; color: var(--ink);
  display: inline-flex; align-items: center; gap: 7px;
  transition: color .2s ease;
}
.linkarrow:hover { color: var(--accent); }
.linkarrow .arr { transition: transform .2s ease; }
.linkarrow:hover .arr { transform: translateX(3px); }

/* ---- Header ---- */
.site-head {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--paper) 86%, transparent);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-head.is-stuck { border-color: var(--line); }
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.brand-logo {
  display: block;
  width: 126px;
  height: auto;
  transition: opacity .2s ease;
}
.brand:hover .brand-logo { opacity: .62; }
.site-foot .brand-logo { width: 118px; }
.head-nav { display: flex; align-items: center; gap: 28px; }
.head-nav a {
  font-size: 13.5px; text-decoration: none; color: var(--ink-soft);
  letter-spacing: 0.01em; transition: color .2s ease;
}
.head-nav a:hover { color: var(--ink); }
.head-nav a.head-cta {
  border-bottom: 1px solid var(--ink); padding-bottom: 2px; color: var(--ink);
}
.head-nav a.head-cta:hover { color: var(--accent); border-color: var(--accent); }
.nav-toggle { display: none; }

/* ---- Image slot styling ---- */
.frame { position: relative; }
image-slot {
  display: block; width: 100%; height: 100%;
  background: #e9e4d8;
  --slot-bg: #e9e4d8;
}
.frame--portrait { aspect-ratio: 4 / 5; }
.frame--tall     { aspect-ratio: 3 / 4; }
.frame--land     { aspect-ratio: 5 / 4; }
.frame--square   { aspect-ratio: 1 / 1; }

/* caption bar under a framed image */
.capbar {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  padding: 12px 2px 0;
  border-top: 1px solid var(--line);
  margin-top: 14px;
}
.capbar .cat {
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 11px; font-weight: 600; color: var(--ink-soft);
}
.capbar .spec {
  font-size: 12px; color: var(--muted); letter-spacing: 0.01em;
  text-align: right;
}

/* ---- Hero ---- */
.hero { padding-top: clamp(40px, 6vw, 72px); padding-bottom: var(--section-y); }
.hero .grid { grid-template-columns: 1fr 1fr; align-items: center; }
.hero-copy { max-width: none; }
.hero h1 { margin-bottom: 38px; font-size: clamp(31px, 3.7vw, 46px); line-height: 1.12; }
.hero .lede { max-width: 38ch; }
.hero .actions { display: flex; align-items: center; gap: 22px; margin: 30px 0 26px; flex-wrap: wrap; }
.hero .meta { font-size: 13px; color: var(--muted); letter-spacing: 0.01em; }

/* ---- Editorial two-col rows ---- */
.editorial .grid { grid-template-columns: 1fr; }
.split { display: grid; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--text-left  { grid-template-columns: 0.82fr 1.18fr; }
.split--text-right { grid-template-columns: 1.12fr 0.88fr; }
.col-text { max-width: 46ch; }

/* couple: headline atop left col, text vertically centered right */
.duo { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.duo .left-stack .headline { margin-bottom: 28px; }

/* ---- Three-up grid ---- */
.triptych {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
  margin-top: 8px;
}
.triptych .frame--tall { aspect-ratio: 3 / 4; }
.tcap { margin-top: 12px; font-size: 12px; color: var(--muted); letter-spacing: 0.01em; }
.tcap b { color: var(--ink-soft); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; }
.other-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }

/* ---- Navy promise block ---- */
.promise { background: var(--navy); color: var(--on-navy); }
.promise .inner { max-width: 720px; }
.promise .eyebrow { color: var(--on-navy-dim); }
.promise h2 { color: #fff; margin-bottom: 30px; }
.promise p { color: var(--on-navy-dim); margin: 0 0 1.2em; font-size: 16px; line-height: 1.72; }
.promise .pull {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(19px, 2vw, 23px); line-height: 1.4; color: #fff;
  border-left: 2px solid var(--accent);
  padding-left: 24px; margin: 30px 0; max-width: 30ch;
}

/* ---- Booking footer block ---- */
.booking { text-align: center; }
.booking .inner { max-width: 540px; margin: 0 auto; }
.booking h2 { margin-bottom: 20px; }
.booking p { color: var(--ink-soft); margin: 0 auto 30px; max-width: 44ch; }
.booking .whatsapp { margin-top: 22px; font-size: 13px; color: var(--muted); }
.booking .whatsapp a { color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--line); }
.booking .whatsapp a:hover { color: var(--accent); border-color: var(--accent); }

/* ---- Footer ---- */
.site-foot { border-top: 1px solid var(--line); padding: 46px 0; }
.site-foot .wrap { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.site-foot .brand { font-size: 18px; }
.foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.14em; font-size: 10.5px; color: var(--muted); margin: 0 0 12px; font-weight: 600; }
.foot-col a, .foot-col span { display: block; font-size: 13px; color: var(--ink-soft); text-decoration: none; margin-bottom: 7px; }
.foot-col a:hover { color: var(--accent); }
.foot-col a.icon-link { display: flex; width: fit-content; align-items: center; gap: 9px; }
.icon-link .ic { width: 16px; height: 16px; flex: none; }
.icon-link .ic svg { display: block; width: 100%; height: 100%; fill: currentColor; }
.foot-col a.icon-link[href*="instagram"] .ic { color: #E1306C; }
.foot-col a.icon-link[href*="wa.me"] .ic { color: #25D366; }
.copyline { font-size: 12px; color: var(--muted); width: 100%; margin-top: 10px; }

/* =========================================================
   Booking modal + form
   ========================================================= */
.modal-scrim {
  position: fixed; inset: 0; z-index: 100;
  background: color-mix(in oklab, var(--navy) 55%, transparent);
  backdrop-filter: blur(3px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: clamp(16px, 5vh, 64px) 16px;
  overflow-y: auto;
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.modal-scrim.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--paper); width: 100%; max-width: 560px;
  border-radius: 4px; box-shadow: 0 30px 80px -20px rgba(20,24,40,.5);
  transform: translateY(14px); transition: transform .25s ease;
  position: relative;
}
.modal-scrim.open .modal { transform: translateY(0); }
.modal-head { padding: 30px 34px 0; position: relative; }
.modal-head .eyebrow { margin-bottom: 14px; }
.modal-head h2 { font-size: clamp(24px, 3vw, 30px); }
.modal-head p { color: var(--ink-soft); font-size: 14.5px; margin: 12px 0 0; }
.modal-close {
  position: absolute; top: 22px; right: 22px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent; cursor: pointer;
  font-size: 17px; color: var(--ink-soft); line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.modal-close:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* form (shared by modal + booking page) */
.bform { padding: 26px 34px 34px; display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field > label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 600; }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: #fff; border: 1px solid var(--line);
  border-radius: 3px; padding: 11px 13px; width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(0.60 0.105 262 / 0.14);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b4453a; }
.field .err { font-size: 12px; color: #b4453a; min-height: 0; display: none; letter-spacing: 0; text-transform: none; font-weight: 400; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bform .actions { display: flex; align-items: center; gap: 16px; margin-top: 6px; }
.bform .note { font-size: 12px; color: var(--muted); }

/* type chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 13px; padding: 8px 14px; border: 1px solid var(--line);
  border-radius: 100px; background: #fff; cursor: pointer; color: var(--ink-soft);
  transition: all .18s ease;
}
.chip:hover { border-color: var(--accent); }
.chip.sel { background: var(--navy); color: #fff; border-color: var(--navy); }

/* inline submit status / error + WhatsApp fallback */
.form-status {
  display: none; font-size: 13.5px; line-height: 1.5;
  color: var(--ink-soft); margin-top: 2px;
}
.form-status.is-error {
  color: #b4453a;
  background: color-mix(in oklab, #b4453a 8%, var(--paper));
  border: 1px solid color-mix(in oklab, #b4453a 30%, var(--line));
  border-radius: 3px; padding: 10px 12px;
}
.form-status a { color: var(--accent); text-decoration: none; font-weight: 500; }
.form-status a:hover { text-decoration: underline; }

/* confirmation */
.confirm { padding: 44px 34px 46px; text-align: center; display: none; }
.confirm.show { display: block; }
.bform.hide { display: none; }
.confirm .tick {
  width: 54px; height: 54px; margin: 0 auto 22px; border-radius: 50%;
  border: 1.5px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.confirm h3 { font-family: var(--display); font-weight: 700; font-size: 27px; margin: 0 0 12px; }
.confirm p { color: var(--ink-soft); font-size: 14.5px; max-width: 38ch; margin: 0 auto 24px; }

/* =========================================================
   Stub page (work / booking) shared bits
   ========================================================= */
.page-hero { padding: clamp(54px, 8vw, 96px) 0 clamp(32px, 5vw, 56px); }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero .display { max-width: 16ch; }
.page-hero .lede { max-width: 52ch; margin-top: 22px; }
.cta-row { display: flex; align-items: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; }

/* Google map embed */
.map-embed {
  width: 100%; aspect-ratio: 5 / 4; display: block;
  border: 1px solid var(--line); border-radius: 5px;
  filter: grayscale(0.25) contrast(1.02);
}

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.quote-card {
  display: flex; flex-direction: column; gap: 22px;
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  padding: clamp(26px, 3vw, 40px);
}
.quote-card .q {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 1.65vw, 22px); line-height: 1.5; color: var(--ink);
  text-wrap: pretty;
}
.quote-card .q::before { content: "“"; color: var(--accent); font-style: normal; margin-right: 2px; }
.quote-card .who { margin-top: auto; }
.quote-card .who .name { font-size: 14px; font-weight: 600; color: var(--ink); }
.quote-card .who .role { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.13em; margin-top: 5px; }
@media (max-width: 760px) { .quotes { grid-template-columns: 1fr; } }

.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 40px); }
.work-grid .item .capbar { margin-top: 12px; }

.booking-page { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.booking-page .panel { background: #fff; border: 1px solid var(--line); border-radius: 5px; }
.booking-page .panel .bform { padding: 30px 32px 34px; }
.booking-page .panel .confirm { padding: 54px 32px; }
.booking-aside .detail { border-top: 1px solid var(--line); padding: 18px 0; }
.booking-aside .detail h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.13em; font-size: 11px; color: var(--muted); margin: 0 0 6px; font-weight: 600; }
.booking-aside .detail p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* reveal on scroll — only hides when JS is present (print / no-JS show content) */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
  html.js .reveal.in { opacity: 1; transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  body { font-size: 16px; }
  .hero .grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: none; }
  .hero-figure { order: -1; }
  .split--text-left, .split--text-right, .duo { grid-template-columns: 1fr; }
  .split--text-right .col-text { order: -1; }
  .col-text { max-width: none; }
  .booking-page { grid-template-columns: 1fr; }
  .booking-aside { order: -1; }
  .work-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .head-nav { gap: 16px; }
  .triptych { grid-template-columns: 1fr; gap: 26px; }
  .triptych .frame--tall { aspect-ratio: 4 / 3; }
  .field-row { grid-template-columns: 1fr; }
  .hero .actions { gap: 16px; }
  .capbar { flex-direction: column; gap: 4px; }
  .capbar .spec { text-align: left; }
  .other-head { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---- Mobile header drawer ---- */
@media (max-width: 680px) {
  .site-head .wrap { position: relative; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; margin-right: -8px; padding: 0;
    background: none; border: 0; cursor: pointer; align-items: center;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
    transition: transform .26s ease, opacity .18s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .head-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 6px var(--gutter) 16px;
    box-shadow: 0 22px 44px -26px rgba(20, 24, 40, .45);
  }
  .head-nav.open { display: flex; }
  .head-nav a {
    font-size: 17px; padding: 15px 2px; width: 100%;
    border-bottom: 1px solid var(--line-soft); letter-spacing: 0;
  }
  .head-nav a:last-child { border-bottom: 0; }
  .head-nav a.head-cta { border-bottom: 0; padding-bottom: 2px; align-self: flex-start; margin-top: 6px; }
}

/* ============================================================
   ✦ PREMIUM REDESIGN LAYER (2026)
   Refines the studio site: an even modular type scale (same
   font families), warmer premium palette, calmer spacing, and
   cinematic photo transitions. Loaded last, so it refines the
   base without touching the booking/admin markup.
   ============================================================ */

:root {
  /* Warmer, quieter premium palette */
  --paper:      #f7f4ee;
  --paper-band: #efeae0;
  --ink:        #1c1a17;
  --ink-soft:   #4a453d;
  --muted:      #948d7f;
  --line:       #e2dccf;
  --line-soft:  #ece7db;
  --accent:     oklch(0.585 0.115 47);    /* refined terracotta — warm, premium */
  --accent-2:   oklch(0.66 0.10 52);      /* lighter warm for hovers */
  --navy:       #1a2138;
  --navy-2:     #141a2e;

  /* Even modular type scale (~1.28 ratio), fluid + capped */
  --fs-display:  clamp(2.6rem, 1.4rem + 3.9vw, 4.6rem);
  --fs-h2:       clamp(1.75rem, 1.3rem + 1.7vw, 2.6rem);
  --fs-h3:       clamp(1.35rem, 1.1rem + 0.9vw, 1.7rem);
  --fs-lede:     clamp(1.1rem, 1rem + 0.5vw, 1.32rem);
  --fs-body:     1.0625rem;
  --fs-small:    0.9rem;

  --ease-out:    cubic-bezier(.16, 1, .3, 1);
  --ease-inout:  cubic-bezier(.76, 0, .24, 1);

  --maxw: 1200px;
  --section-y: clamp(84px, 12vw, 152px);
}

body { font-size: var(--fs-body); line-height: 1.68; letter-spacing: -0.003em; }

/* ---- Even, harmonious type scale (overrides scattered inline sizes) ---- */
.display,
h1.display { font-size: var(--fs-display) !important; line-height: 1.02; letter-spacing: -0.022em; font-weight: 700; }
.headline,
h2.headline { font-size: var(--fs-h2) !important; line-height: 1.08; letter-spacing: -0.015em; }
.hero h1 { font-size: var(--fs-display) !important; margin-bottom: clamp(26px, 3vw, 40px); }
.lede { font-size: var(--fs-lede) !important; line-height: 1.6; color: var(--ink-soft); max-width: 44ch; }
.body { font-size: var(--fs-body); line-height: 1.78; }
.body p { margin: 0 0 1.15em; }
.eyebrow { font-size: 0.72rem; letter-spacing: 0.24em; }
.stamp { font-size: 0.95rem; margin-bottom: 20px; }
.modal-head h2, .confirm h3, .drawer-panel h3 { letter-spacing: -0.01em; }

/* Unify accent word-tints (beats stray inline colors for consistency) */
.hl { color: var(--accent) !important; font-style: normal; }
a { color: inherit; }
::selection { background: color-mix(in oklab, var(--accent) 26%, transparent); }

/* ---- Header: airier, refined ---- */
.site-head { background: color-mix(in oklab, var(--paper) 82%, transparent); }
.site-head .wrap { height: 74px; }
.brand-logo { width: 132px; }
.head-nav { gap: 34px; }
.head-nav a { font-size: 13px; letter-spacing: 0.02em; position: relative; }
.head-nav a:not(.head-cta)::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px;
  background: var(--accent); transition: right .4s var(--ease-out);
}
.head-nav a:not(.head-cta):hover::after { right: 0; }
.head-cta {
  border: 1px solid var(--ink) !important; border-radius: 100px; padding: 9px 18px !important;
  font-size: 12.5px; transition: background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.head-nav a.head-cta:hover { background: var(--ink); color: var(--paper); border-color: var(--ink) !important; }

/* ---- Buttons: quieter, more tactile ---- */
.btn {
  font-size: 13.5px; letter-spacing: 0.02em; padding: 15px 28px; border-radius: 100px;
  transition: transform .4s var(--ease-out), background .3s ease, color .3s ease, box-shadow .4s var(--ease-out);
}
.btn--primary { background: var(--navy) !important; color: #fff !important; box-shadow: 0 1px 0 rgba(0,0,0,.04); }
.btn--primary:hover { background: var(--navy-2) !important; transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(26,33,56,.55); }
.btn--ghost { border: 1px solid var(--line); }
.linkarrow { font-size: 13.5px; letter-spacing: 0.01em; }
.morelink { font-size: 13px; letter-spacing: 0.03em; border-color: var(--accent); }
.morelink:hover { color: var(--accent); }

/* ---- Section rhythm ---- */
.section { padding: var(--section-y) 0; }
.hero { padding-top: clamp(48px, 7vw, 92px); }
.hero .grid { gap: clamp(40px, 6vw, 90px); align-items: center; }
/* editorial text + photo align uniformly at the top (home + About) */
.split { gap: clamp(40px, 6vw, 88px); align-items: start; }
.split .col-text { padding-top: 2px; }
/* Work gallery grid: items align at the top so photos stay in a clean row */
.work-grid { align-items: start; }
.work-grid .item .capbar { min-height: 0; }

/* --- Editorial text: compact & creative so columns don't run long --- */
.split--text-left  { grid-template-columns: 0.96fr 1.04fr; }
.split--text-right { grid-template-columns: 1.04fr 0.96fr; }
.split .col-text { max-width: 30rem; }
.split .col-text .headline { line-height: 1.08; }
.split .col-text .body {
  margin-top: 16px !important;
  font-size: 1rem; line-height: 1.58; color: var(--ink-soft);
  max-width: 40ch;
}
.split .col-text .body p { margin-bottom: 0.7em; }
.split .col-text .body p:last-child { margin-bottom: 0; }
.split .col-text .morelink { margin-top: 20px; }

/* Editorial drop-cap — a bit of character without adding height */
.section.editorial .col-text .body p:first-of-type::first-letter {
  font-family: var(--display); font-weight: 700; color: var(--accent);
  float: left; font-size: 3em; line-height: 0.78; padding: 6px 12px 0 0;
}
@media (max-width: 620px) {
  .split .col-text .body p:first-of-type::first-letter { font-size: 2.4em; padding-right: 9px; }
}
.capbar { border-top-color: var(--line); padding-top: 14px; margin-top: 16px; }
.capbar .cat { letter-spacing: 0.18em; }

/* =========================================================
   ✦ CINEMATIC PHOTO TRANSITIONS
   Every framed photo "develops" in: a paper curtain wipes
   away while the image settles from a slow push-in. On hover
   the image breathes with a slow cinematic zoom + soft glow.
   ========================================================= */
.frame { position: relative; overflow: hidden; border-radius: 4px; background: var(--paper-band); }
.frame image-slot { display: block; width: 100%; height: 100%; will-change: transform; }

@media (prefers-reduced-motion: no-preference) {
  html.js .frame image-slot {
    transform: scale(1.18);
    transition: transform 1.5s var(--ease-out);
  }
  html.js .frame::after {
    content: ''; position: absolute; inset: 0; z-index: 3;
    background: var(--paper-band);
    transform: translateY(0);
    transition: transform 1.05s var(--ease-inout);
  }
  html.js .frame::before {
    content: ''; position: absolute; inset: 0; z-index: 4; pointer-events: none;
    background: linear-gradient(115deg, transparent 30%, color-mix(in oklab, #fff 55%, transparent) 48%, transparent 66%);
    transform: translateX(-120%); opacity: 0;
  }
  html.js .frame.is-shot image-slot { transform: scale(1); }
  html.js .frame.is-shot::after { transform: translateY(-101%); }
  html.js .frame.is-shot::before {
    animation: photo-sheen 1.2s .55s var(--ease-out) both;
  }
  /* staggered curtains for grids/triptychs */
  html.js .triptych figure:nth-child(2) .frame::after,
  html.js .work-grid .item:nth-child(2) .frame::after { transition-delay: .1s; }
  html.js .triptych figure:nth-child(3) .frame::after,
  html.js .work-grid .item:nth-child(3) .frame::after { transition-delay: .2s; }
  html.js .work-grid .item:nth-child(4) .frame::after { transition-delay: .12s; }
}

@keyframes photo-sheen {
  0%   { transform: translateX(-120%); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}

/* Slow cinematic hover zoom + soft vignette (declared after reveal so it wins) */
@media (hover: hover) {
  .frame image-slot { transition: transform 1.2s var(--ease-out); }
  .frame:hover image-slot { transform: scale(1.07); }
  .frame::after { will-change: transform; }
  .frame .cap-hover { }
  .frame:not(.is-shot):hover image-slot { transform: scale(1.18); } /* don't zoom before revealed */
  .col-figure .frame, .hero-figure, .triptych .frame, .work-grid .frame { box-shadow: 0 1px 0 rgba(0,0,0,0); transition: box-shadow .5s var(--ease-out); }
  .col-figure .frame:hover, .hero-figure:hover, .triptych .frame:hover, .work-grid .frame:hover {
    box-shadow: 0 30px 60px -34px rgba(28,26,23,.5);
  }
}

/* Hero figure floats subtly (parallax set inline by JS via translateY var) */
.hero-figure { transition: box-shadow .5s var(--ease-out); }

/* ---- Reveal-on-scroll: refined easing + gentle stagger for text ---- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
  html.js .reveal.in { opacity: 1; transform: none; }
  html.js .split .col-text > * { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
  html.js .split.in .col-text > * { opacity: 1; transform: none; }
  html.js .split.in .col-text > *:nth-child(2) { transition-delay: .08s; }
  html.js .split.in .col-text > *:nth-child(3) { transition-delay: .16s; }
  html.js .split.in .col-text > *:nth-child(4) { transition-delay: .24s; }
  /* gentle page-load fade */
  html.js body { animation: page-in 1s var(--ease-out) both; }
}
@keyframes page-in { from { opacity: 0; } to { opacity: 1; } }

/* ---- Promise (navy) block: richer ---- */
.promise { background: linear-gradient(160deg, var(--navy), var(--navy-2)); }
.promise .pull { border-left-color: var(--accent); }

/* ---- Quote cards / testimonials premium ---- */
.quote-card { border-radius: 8px; transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out); }
.quote-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -34px rgba(28,26,23,.4); }
.quote-card .q::before { color: var(--accent); }

/* ---- Footer refinement ---- */
.site-foot { padding: 64px 0 54px; }
.foot-col a:hover { color: var(--accent); }

/* Respect users who prefer less motion — show everything, no transforms */
@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .split .col-text > *, html.js .frame image-slot { opacity: 1 !important; transform: none !important; }
  html.js .frame::after, html.js .frame::before { display: none; }
}

/* ============================================================
   ✦ PREMIUM ENHANCEMENTS
   lightbox · photo cursor + hover captions · typographic detail
   · film grain · intro loader · scroll progress · hero parallax
   ============================================================ */

/* --- Typographic detail (Spectral old-style figures + ligatures) --- */
.serif, .lede, .quote-card .q, .promise .pull, .modal-head p, .drawer-panel .dl dd,
.stamp, .quote-card .who .name {
  font-feature-settings: "onum" 1, "liga" 1, "kern" 1;
}
body { font-feature-settings: "kern" 1, "liga" 1; }

/* --- Editorial section numbering (01 / 02 / 03) --- */
main { counter-reset: wsec; }
.section.editorial { counter-increment: wsec; }
.section.editorial .col-text::before {
  content: counter(wsec, decimal-leading-zero);
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.3em; color: var(--accent);
  margin-bottom: 16px;
}

/* --- Refined scrollbar --- */
* { scrollbar-width: thin; scrollbar-color: color-mix(in oklab, var(--ink) 30%, transparent) transparent; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: color-mix(in oklab, var(--ink) 24%, transparent);
  border-radius: 10px; border: 3px solid var(--paper); background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: color-mix(in oklab, var(--ink) 42%, transparent); background-clip: padding-box; }

/* --- Fine film grain overlay --- */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 55; pointer-events: none;
  opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

/* --- Hover caption over each photo --- */
.frame__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5; pointer-events: none;
  padding: 46px 18px 16px; color: #fff; font-size: 12px; letter-spacing: 0.02em; line-height: 1.4;
  background: linear-gradient(to top, rgba(20,24,40,.72), rgba(20,24,40,.15) 60%, transparent);
  transform: translateY(100%); opacity: 0;
  transition: transform .55s var(--ease-out), opacity .55s var(--ease-out);
}
.frame.is-shot:hover .frame__cap { transform: translateY(0); opacity: 1; }
.frame__cap b { font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; font-size: 10.5px; }
@media (hover: none) { .frame__cap { display: none; } }

/* --- Custom "View" photo cursor --- */
.photo-cursor {
  position: fixed; top: 0; left: 0; z-index: 120; pointer-events: none;
  width: 76px; height: 76px; margin: -38px 0 0 -38px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  transform: scale(0); opacity: 0;
  transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
  will-change: transform, left, top;
}
.photo-cursor.active { transform: scale(1); opacity: 1; }
@media (hover: none) { .photo-cursor { display: none; } }
@media (hover: hover) { .frame[data-zoomable] { cursor: none; } }
.frame[data-zoomable] { cursor: zoom-in; }

/* --- Lightbox --- */
.lb-scrim {
  position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: clamp(20px, 5vw, 64px);
  background: color-mix(in oklab, var(--navy-2) 93%, black);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease-out), visibility .4s;
}
.lb-scrim.open { opacity: 1; visibility: visible; }
.lb-stage { position: relative; max-width: 100%; max-height: 82vh; display: flex; }
.lb-img {
  max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: 3px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.7);
  transform: scale(.96); opacity: 0;
  transition: transform .5s var(--ease-out), opacity .5s var(--ease-out);
}
.lb-scrim.open .lb-img { transform: scale(1); opacity: 1; }
.lb-cap { margin-top: 18px; color: var(--on-navy-dim); font-size: 13px; letter-spacing: 0.03em; text-align: center; max-width: 60ch; }
.lb-cap b { color: #fff; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; margin-right: 8px; }
.lb-btn, .lb-close {
  border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, border-color .25s ease;
}
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 54px; height: 54px; font-size: 22px; }
.lb-btn:hover, .lb-close:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.55); }
.lb-prev { left: clamp(8px, 3vw, 34px); }
.lb-next { right: clamp(8px, 3vw, 34px); }
.lb-close { position: absolute; top: clamp(16px, 3vw, 30px); right: clamp(16px, 3vw, 34px); width: 46px; height: 46px; font-size: 20px; z-index: 3; }
.lb-count { position: absolute; top: clamp(22px, 3vw, 36px); left: clamp(18px, 3vw, 36px); color: var(--on-navy-dim); font-size: 12px; letter-spacing: 0.16em; }
body.lb-open { overflow: hidden; }

/* --- Scroll progress line --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 90;
  background: linear-gradient(90deg, var(--accent), var(--accent-2)); transition: width .1s linear;
}

/* --- Intro loader --- */
.intro-loader {
  position: fixed; inset: 0; z-index: 300; background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1s var(--ease-inout);
}
.intro-loader img { width: min(46vw, 260px); opacity: 0; transform: translateY(14px); }
.intro-loader.in img { animation: intro-mark 1s var(--ease-out) forwards; }
.intro-loader.out { transform: translateY(-101%); }
@keyframes intro-mark { to { opacity: 1; transform: none; } }

/* --- Hero mouse + scroll parallax (composed via CSS vars set by app.js) --- */
@media (prefers-reduced-motion: no-preference) {
  html.js .hero-figure {
    transform: translate3d(var(--tx, 0px), calc(var(--sy, 0px) + var(--ty, 0px)), 0);
    transition: transform .35s var(--ease-out), box-shadow .5s var(--ease-out);
  }
}

/* --- Fix: booking modal close button must sit above .modal-head so
       taps register (modal-head is positioned + later in the DOM). --- */
.modal-close { z-index: 6; }
.modal-head { z-index: 1; }
/* the .frame lightbox never applies inside the booking modal */
.modal-scrim .frame, .booking-page .frame { cursor: default; }

/* ============================================================
   ✦ DANGLING PHOTOS  (replaces the curtain-wipe reveal)
   Each framed photo hangs from its top edge: it swings in on
   reveal, then keeps a soft idle sway — like mounted prints on
   a wall. The inner image still slow-zooms on hover.
   ============================================================ */
main { overflow-x: clip; }   /* the swing never spills into a scrollbar */

@media (prefers-reduced-motion: no-preference) {
  /* retire the earlier curtain wipe + sheen + reveal-zoom */
  html.js .frame::after  { display: none !important; }
  html.js .frame::before { display: none !important; }
  html.js .frame image-slot { transform: none; transition: transform 1.2s var(--ease-out); }

  html.js .frame { transform-origin: top center; }
  html.js .frame:not(.is-shot) { opacity: 0; }
  html.js .frame.is-shot {
    animation: dangle-in 1s var(--ease-out) both,
               dangle-idle 7s ease-in-out 1s infinite;
  }
  /* stagger the idle sway so photos don't swing in unison */
  html.js .work-grid .item:nth-child(2n) .frame.is-shot,
  html.js .triptych figure:nth-child(2) .frame.is-shot { animation-delay: 0s, 1.8s; }
  html.js .work-grid .item:nth-child(3n) .frame.is-shot,
  html.js .triptych figure:nth-child(3) .frame.is-shot { animation-delay: 0s, 3.4s; }

  /* hero: a touch gentler so the large image doesn't over-swing */
  html.js .hero-figure.is-shot {
    animation: dangle-in 1.1s var(--ease-out) both,
               dangle-idle 8.5s ease-in-out 1.1s infinite;
  }
}

@keyframes dangle-in {
  0%   { opacity: 0; transform: rotate(-6deg); }
  55%  { opacity: 1; transform: rotate(2.8deg); }
  78%  { transform: rotate(-1.4deg); }
  100% { opacity: 1; transform: rotate(0deg); }
}
@keyframes dangle-idle {
  0%, 100% { transform: rotate(-0.55deg); }
  50%      { transform: rotate(0.55deg); }
}

/* keep the cinematic hover zoom on the inner image (frame keeps swaying) */
@media (hover: hover) {
  .frame:hover image-slot { transform: scale(1.06); }
}

/* ============================================================
   ✦ PACKAGES / PRICING (home page, driven by the database)
   ============================================================ */
.packages .pk-head { max-width: 46ch; margin-bottom: clamp(34px, 5vw, 56px); }
.packages .pk-head .lede { margin-top: 16px; }

.pk-grid {
  display: grid; gap: clamp(18px, 2.4vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}
.pk-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: clamp(26px, 2.6vw, 34px);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s ease;
}
.pk-card:hover { transform: translateY(-5px); box-shadow: 0 34px 60px -38px rgba(28,26,23,.5); }
.pk-card.is-featured {
  border-color: color-mix(in oklab, var(--accent) 60%, var(--line));
  box-shadow: 0 24px 50px -34px color-mix(in oklab, var(--accent) 55%, transparent);
}
.pk-badge {
  position: absolute; top: 0; right: clamp(22px, 3vw, 30px); transform: translateY(-50%);
  background: var(--accent); color: #fff; font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
}
.pk-card .pk-title { font-family: var(--display); font-weight: 700; font-size: 1.5rem; line-height: 1.1; }
.pk-card .pk-price { margin: 14px 0 4px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pk-card .pk-price .amt {
  font-family: var(--display); font-weight: 700; font-size: 2rem; letter-spacing: -0.01em; color: var(--ink);
}
.pk-card .pk-price .amt.soft { font-size: 1.35rem; color: var(--ink-soft); }
.pk-card .pk-price .dur { font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; }
.pk-card .pk-desc { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; margin: 8px 0 0; }
.pk-card .pk-list {
  list-style: none; margin: 20px 0 26px; padding: 20px 0 0; border-top: 1px solid var(--line-soft);
  display: grid; gap: 11px;
}
.pk-card .pk-list li {
  position: relative; padding-left: 26px; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.45;
}
.pk-card .pk-list li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 15px; height: 15px; border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 16%, transparent);
}
.pk-card .pk-list li::after {
  content: ''; position: absolute; left: 5px; top: 7px; width: 4px; height: 7px;
  border: solid var(--accent); border-width: 0 1.6px 1.6px 0; transform: rotate(43deg);
}
.pk-card .btn { margin-top: auto; }        /* pin CTA to the bottom, cards align */

@media (prefers-reduced-motion: no-preference) {
  html.js .pk-grid.in .pk-card { animation: pk-rise .7s var(--ease-out) both; }
  html.js .pk-grid.in .pk-card:nth-child(2) { animation-delay: .08s; }
  html.js .pk-grid.in .pk-card:nth-child(3) { animation-delay: .16s; }
  html.js .pk-grid.in .pk-card:nth-child(4) { animation-delay: .24s; }
}
@keyframes pk-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* --- Package picker inside the booking form/modal --- */
.field .opt-tag { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.pkg-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pkg-opt {
  display: flex; flex-direction: column; align-items: flex-start; gap: 3px;
  text-align: left; padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px;
  background: #fff; cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.pkg-opt:hover { border-color: var(--accent); transform: translateY(-1px); }
.pkg-opt.sel {
  border-color: var(--navy); background: color-mix(in oklab, var(--navy) 5%, #fff);
  box-shadow: inset 0 0 0 1px var(--navy);
}
.pkg-opt-name { font-size: 13.5px; font-weight: 500; color: var(--ink); line-height: 1.2; }
.pkg-opt-price { font-size: 12px; color: var(--muted); letter-spacing: 0.01em; }
.pkg-opt.sel .pkg-opt-price { color: var(--accent); }
@media (max-width: 520px) { .pkg-picker { grid-template-columns: 1fr; } }

/* ============================================================
   Bookable time slots (public booking form) — self-booking
   ============================================================ */
.slotpicker .slots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.slot {
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.01em;
  padding: 9px 15px; border: 1px solid var(--line); border-radius: 100px;
  background: #fff; color: var(--ink-soft); cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
}
.slot:hover:not(:disabled) { border-color: var(--accent); color: var(--ink); }
.slot:active:not(:disabled) { transform: translateY(1px); }
.slot.sel { background: var(--navy); color: #fff; border-color: var(--navy); }
.slot.is-taken, .slot:disabled {
  color: var(--muted); background: var(--paper-band);
  cursor: not-allowed; text-decoration: line-through; opacity: .65;
}
.slotpicker .slot-msg { display: block; margin-top: 9px; font-size: 12px; color: var(--muted); letter-spacing: 0; }
.slot-loading { font-size: 12px; color: var(--muted); }

/* ---- booking-form extras / add-ons + live total ---- */
.extras-pick { display: grid; gap: 8px; margin-top: 2px; }
.extra-opt {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px; border: 1px solid var(--line); border-radius: 9px;
  background: #fff; cursor: pointer; transition: border-color .15s ease, background .15s ease;
}
.extra-opt input { width: 17px; height: 17px; accent-color: var(--navy); flex: none; }
.extra-opt .x-name { flex: 1; font-size: 14px; color: var(--ink); }
.extra-opt .x-price { font-size: 13px; color: var(--muted); }
.extra-opt:has(input:checked) { border-color: var(--accent); background: color-mix(in oklab, var(--accent) 8%, #fff); }
.extra-opt:has(input:checked) .x-price { color: var(--accent); }
.order-total {
  display: block; margin-top: 12px; font-family: var(--display); font-weight: 700;
  font-size: 1.05rem; letter-spacing: .01em; color: var(--ink);
}

