/* Rabbit's Paw Tattoo — hand-written CSS, no frameworks, no CDNs.
   Blue palette + self-hosted Fraunces/Inter. Dark default + light toggle.
   Metallic shine + gradient borders adapted from tattooatlas.org. */

/* Self-hosted fonts (no network calls) */
@font-face{font-family:'Fraunces';src:url('/assets/fonts/fraunces-900.woff2') format('woff2');font-weight:900;font-style:normal;font-display:swap}
@font-face{font-family:'Fraunces';src:url('/assets/fonts/fraunces-600.woff2') format('woff2');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'Fraunces';src:url('/assets/fonts/fraunces-400.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Fraunces';src:url('/assets/fonts/fraunces-400-italic.woff2') format('woff2');font-weight:400;font-style:italic;font-display:swap}
@font-face{font-family:'Inter';src:url('/assets/fonts/inter-600.woff2') format('woff2');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'Inter';src:url('/assets/fonts/inter-500.woff2') format('woff2');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Inter';src:url('/assets/fonts/inter-400.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}

:root, [data-theme="dark"] {
  --bg: #0b0e12;        /* cool near-black */
  --surface: #131a24;
  --surface-2: #1c2531;
  --line: #29323f;
  --text: #e8edf3;      /* cool off-white */
  --muted: #9aa7b4;     /* slate */
  --accent: #5aa9e6;    /* luminous steel blue */
  --accent-hover: #7cc1f5;
  --focus: #5aa9e6;
  --hero-overlay: rgba(9, 12, 17, 0.74);
  --shadow: rgba(0,0,0,0.45);
}

[data-theme="light"] {
  --bg: #f3f6fa;
  --surface: #ffffff;
  --surface-2: #e7eef6;
  --line: #d2dde8;
  --text: #142230;
  --muted: #5a6a79;
  --accent: #1f6fb2;    /* deeper blue — readable on light */
  --accent-hover: #17578c;
  --focus: #1f6fb2;
  --hero-overlay: rgba(10, 18, 28, 0.52);
  --shadow: rgba(20,45,70,0.15);
}

/* Blue CTA buttons stay consistent across both themes */
:root { --btn-bg: #1f6fb2; --btn-bg-hover: #17578c; --btn-ink: #ffffff; --radius: 10px; --maxw: 1120px;
  --serif: 'Fraunces', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font: var(--sans);
  --shine: linear-gradient(105deg,#173a5c 0%,#2f7fc4 26%,#8fd0ff 45%,#eaf6ff 50%,#8fd0ff 55%,#2f7fc4 74%,#173a5c 100%); }
/* Light theme: darker metallic stops so the wordmark stays readable on the pale header */
[data-theme="light"] { --shine: linear-gradient(105deg,#0d2c49 0%,#17578c 26%,#1f6fb2 45%,#3d86c4 50%,#1f6fb2 55%,#17578c 74%,#0d2c49 100%); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], [id] { scroll-margin-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }

body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--sans); line-height: 1.65; font-size: 17px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }

h1, h2, h3 { font-family: var(--serif); line-height: 1.1; letter-spacing: -0.015em; margin: 0 0 0.5em; text-transform: none; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 6.5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: 1.2rem; letter-spacing: 1px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }

.skip { position: absolute; left: -999px; top: 0; z-index: 1000; background: #0b0e12; color: #ffffff; border: 1px solid var(--accent); padding: 10px 16px; border-radius: 0 0 8px 0; }
.skip:focus { left: 0; }

/* Header / nav */
.site-header { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; padding: 12px 20px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--text); }
.brand:hover { text-decoration: none; color: var(--text); }
.brand-badge { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: #fdfdfb; border: 1px solid rgba(0,0,0,0.12); box-shadow: 0 1px 6px rgba(0,0,0,0.25); flex: none; }
.brand-badge img { width: 46px; height: 46px; object-fit: contain; }

.nav-spacer { flex: 1; }
.nav-toggle, .nav-toggle-label { display: none; }
.nav-links { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.nav-links a { color: var(--muted); padding: 8px 12px; border-radius: 8px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-links a:hover { color: var(--text); background: var(--surface-2); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--text); }

/* Theme toggle */
.theme-toggle { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); color: var(--text); cursor: pointer; flex: none; }
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

@media (max-width: 880px) {
  .nav-toggle-label { display: inline-flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
  .nav-toggle-label span { width: 26px; height: 3px; background: var(--text); border-radius: 2px; }
  .nav-links { display: none; width: 100%; flex-direction: column; align-items: stretch; padding-top: 10px; order: 3; }
  .nav { flex-wrap: wrap; }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a { padding: 12px; border-radius: 8px; }
}

/* Buttons */
.btn { display: inline-block; background: var(--btn-bg); color: var(--btn-ink); padding: 13px 22px; border-radius: var(--radius); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.95rem; border: 2px solid var(--btn-bg); transition: background 0.15s, border-color 0.15s; }
.btn:hover { background: var(--btn-bg-hover); border-color: var(--btn-bg-hover); color: var(--btn-ink); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { background: var(--surface-2); border-color: var(--accent); color: var(--text); }
.btn--sm { padding: 9px 16px; font-size: 0.85rem; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero */
.hero { padding: 80px 0 64px; text-align: center; background: radial-gradient(1200px 420px at 50% -10%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%), var(--bg); border-bottom: 1px solid var(--line); }
.hero--home { background: linear-gradient(var(--hero-overlay), var(--hero-overlay)), url('/assets/img/gallery1.jpg') center 38%/cover no-repeat, var(--bg); }
.hero .kicker { color: var(--accent); text-transform: uppercase; letter-spacing: 3px; font-weight: 700; font-size: 0.9rem; }
.hero .meta { margin-top: 18px; color: var(--muted); }
.hero--home .meta, .hero--home .lede { color: #cfd9e3; }
.hero .meta a { color: var(--text); }
.kicker { color: var(--accent); text-transform: uppercase; letter-spacing: 3px; font-weight: 700; font-size: 0.9rem; }

/* Grid / cards */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.card__media { aspect-ratio: 4/3; background: var(--surface-2); display: grid; place-items: center; color: var(--muted); font-size: 0.85rem; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.artist-hero { width: 100%; border-radius: 10px; border: 1px solid var(--line); }
.card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body h3 { margin: 0; }
.tag { display: inline-block; font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.card .btn { margin-top: auto; }

/* Gallery */
.gallery { columns: 4 220px; column-gap: 14px; }
.gallery img { width: 100%; margin: 0 0 14px; border-radius: 8px; border: 1px solid var(--line); break-inside: avoid; }
/* Even-tile variant: uniform frames, art fitted inside (no cropping) */
.gallery--even { columns: unset; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; max-width: 760px; margin-left: auto; margin-right: auto; }
.gallery--even img { width: 100%; height: auto; margin: 0; aspect-ratio: 3 / 4; object-fit: contain; background: var(--surface-2); }
@media (max-width: 560px) { .gallery--even { grid-template-columns: minmax(0, 1fr); } }

/* Info strip */
.strip { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; }
.strip > div { min-width: 160px; }
.strip .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }
.strip .value { font-size: 1.05rem; font-weight: 700; }

/* Prose */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.6em; color: var(--text); }
.prose h3 { margin-top: 1.4em; color: var(--accent); }
.prose p, .prose li { color: var(--text); }
.prose ul { padding-left: 1.2em; }
.prose .note { background: var(--surface); border-left: 3px solid var(--accent); padding: 14px 18px; border-radius: 0 8px 8px 0; color: var(--muted); }

/* FAQ */
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; padding: 4px 18px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 14px 0; text-transform: uppercase; letter-spacing: 0.5px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] { padding-bottom: 14px; }

.crumbs { font-size: 0.85rem; color: var(--muted); padding: 16px 0 0; }
.crumbs a { color: var(--muted); }

.cta-band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Footer */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding: 48px 0 32px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; color: var(--muted); margin: 0 0 12px; }
.site-footer a { color: var(--text); display: block; padding: 3px 0; }
.site-footer .fineprint { color: var(--muted); font-size: 0.85rem; margin-top: 28px; border-top: 1px solid var(--line); padding-top: 18px; }

.stack > * + * { margin-top: 16px; }
.pill { display:inline-block; background: var(--surface-2); border:1px solid var(--line); color: var(--muted); padding: 4px 10px; border-radius: 999px; font-size: 0.8rem; letter-spacing: 0.5px; }
.soon { color: var(--muted); }

/* ============================================================
   ELEGANT LAYER — metallic type, gradient borders, hero video,
   interactive gloss. Aesthetic adapted from tattooatlas.org. */

/* Wordmark: metallic blue gradient with a slow shine sweep */
.brand span:not(.brand-badge){
  font-family: var(--serif); font-weight: 700; text-transform: none; letter-spacing: 0; font-size: 1.15rem;
  background: var(--shine); background-size: 240% 100%; background-position: 85% 0;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  animation: shine 6s cubic-bezier(.55,0,.35,1) 1s infinite;
}
@keyframes shine { 0%{background-position:85% 0} 18%{background-position:-55% 0} 100%{background-position:-55% 0} }

/* Logo emblem: a glint sweeps across it periodically */
.brand-badge { position: relative; overflow: hidden; }
.brand-badge::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg); animation: glint 6s ease-in-out 1.2s infinite;
}
@keyframes glint { 0%,62%{left:-60%} 82%{left:130%} 100%{left:130%} }

/* CTAs: highlighted gradient borders + soft glow */
.btn { position: relative; isolation: isolate; box-shadow: 0 8px 22px -12px rgba(47,127,196,.55); }
.btn::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: linear-gradient(120deg, var(--accent-hover), rgba(255,255,255,.5) 30%, transparent 46%, transparent 58%, var(--accent-hover));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: .85; transition: opacity .2s;
}
.btn:hover { box-shadow: 0 10px 28px -10px rgba(90,169,230,.7); }
.btn:hover::after { opacity: 1; }
.btn--ghost::after { background: linear-gradient(120deg, var(--accent), transparent 45%, transparent 60%, var(--accent)); }

/* Refined eyebrow/kicker */
.kicker, .hero .kicker { font-family: var(--sans); font-weight: 600; letter-spacing: .28em; font-size: .72rem; }

/* Animated corner brackets on card titles (hover) */
.card__body h3 { position: relative; display: inline-block; }
.card__body h3::before, .card__body h3::after { content: ""; position: absolute; width: 9px; height: 9px; opacity: 0; transition: all .24s cubic-bezier(.2,.9,.25,1); }
.card__body h3::before { top: -5px; left: -9px; border-top: 1.5px solid var(--accent); border-left: 1.5px solid var(--accent); transform: translate(5px,5px); }
.card__body h3::after { bottom: -5px; right: -9px; border-bottom: 1.5px solid var(--accent); border-right: 1.5px solid var(--accent); transform: translate(-5px,-5px); }
.card:hover h3::before, .card:hover h3::after { opacity: 1; transform: translate(0,0); }

/* Hero with video background */
.hero--home { position: relative; overflow: hidden; padding: 100px 0 88px;
  background: #0b0e12 url('/assets/img/studio-hero.jpg') center/cover no-repeat; }
.hero-video { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-video iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh; transform: translate(-50%,-50%) scale(1.4); border: 0; }
.nowrap { white-space: nowrap; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(130% 90% at var(--mx,50%) var(--my,30%), rgba(124,193,245,.14), transparent 42%),
    linear-gradient(180deg, rgba(10,13,18,.60) 0%, rgba(10,13,18,.72) 52%, rgba(10,13,18,.95) 100%); }
.hero--home > .container { position: relative; z-index: 2; }
/* Hero band is always dark (video + scrim) — force light text in BOTH themes */
.hero--home h1 { color: #f4f8fc; text-shadow: 0 2px 34px rgba(0,0,0,.6); }
.hero--home .kicker { color: #9fd0f5; }
.hero--home .lede, .hero--home .meta { color: #e0eaf5; }
.hero--home .meta a { color: #fff; }
.hero--home .btn--ghost { color: #f4f8fc; border-color: rgba(255,255,255,.35); }
.hero--home .btn--ghost:hover { background: rgba(255,255,255,.1); }

/* Frosted hero panel — keeps copy legible over the video */
.hero-panel {
  display: inline-block; text-align: center; max-width: 800px; margin: 0 auto;
  padding: 34px clamp(22px, 4vw, 44px) 30px; border-radius: 20px;
  background: rgba(8, 11, 16, 0.44);
  -webkit-backdrop-filter: blur(5px) saturate(1.05); backdrop-filter: blur(5px) saturate(1.05);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 36px 96px -36px rgba(0,0,0,.78);
}
.hero-panel h1 { margin-bottom: 0.35em; }
.hero-tagline { font-size: 1.12rem; line-height: 1.5; color: #eaf1f9; max-width: 54ch; margin: 12px auto 0; }
.hero-note { margin: 14px auto 0; color: #dbe6f2; font-size: 1rem; max-width: 52ch; }
.hero-note strong { color: #bfe0ff; font-weight: 700; }
.hero-cta { justify-content: center; margin-top: 24px; gap: 12px; }
.hero-meta { margin: 20px auto 0; color: #cbd8e6; font-size: 0.92rem; letter-spacing: 0.015em; }
@media (max-width: 560px) {
  .hero-panel { padding: 26px 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; text-align: center; }
}

/* Compact header on small phones — keep brand, theme toggle, and hamburger on ONE row */
@media (max-width: 480px) {
  .nav { gap: 8px; padding: 10px 14px; }
  .brand { gap: 8px; }
  .brand span:not(.brand-badge) { font-size: 0.95rem; }
  .brand-badge { width: 38px; height: 38px; }
  .brand-badge img { width: 31px; height: 31px; }
  .theme-toggle { width: 36px; height: 36px; }
}

/* Hero video pause control — visible to everyone (WCAG 2.2.2) */
.video-toggle {
  position: absolute; right: 14px; bottom: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(8,11,16,0.62); color: #f4f8fc;
  border: 1px solid rgba(255,255,255,0.28); border-radius: 999px;
  padding: 7px 13px; font: 600 0.78rem/1 var(--sans, Inter, sans-serif);
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.video-toggle:hover { border-color: rgba(255,255,255,0.6); background: rgba(8,11,16,0.8); }
.video-toggle svg { width: 12px; height: 12px; }

/* Optional metallic hero headline */
.shine-text { background: var(--shine); background-size: 240% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  animation: shine 6.5s cubic-bezier(.55,0,.35,1) infinite; }

@media (prefers-reduced-motion: reduce) {
  .brand span:not(.brand-badge), .shine-text { background-position: 50% 0 !important; }
}

/* Centralized booking prototype */
.booking-intro { max-width: 850px; margin-bottom: 34px; }
.booking-intro .lede { max-width: 68ch; }
.booking-status { display: flex; gap: 12px; align-items: flex-start; margin-top: 22px; padding: 16px 18px; background: color-mix(in srgb, var(--accent) 8%, var(--surface)); border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line)); border-radius: var(--radius); color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.booking-status strong { color: var(--text); }
.booking-status__dot { width: 10px; height: 10px; margin-top: 6px; flex: none; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 18%, transparent); }
.central-booking-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(290px, .75fr); gap: 24px; align-items: start; }
.central-booking { display: grid; gap: 18px; }
.booking-step { margin: 0; min-width: 0; padding: clamp(20px, 3vw, 28px); background: var(--surface); border: 1px solid var(--line); border-radius: 16px; }
.booking-step:disabled { opacity: .55; }
.booking-step legend, .booking-step--checkout h2 { padding: 0 8px 0 0; color: var(--text); font: 600 clamp(1.25rem, 3vw, 1.55rem)/1.2 var(--serif); }
.booking-step legend span, .booking-step--checkout h2 span { display: inline-grid; place-items: center; width: 32px; height: 32px; margin-right: 8px; border-radius: 50%; background: var(--accent); color: #08111a; font: 700 .92rem/1 var(--sans); }
.booking-step__help { margin: 6px 0 18px; color: var(--muted); }
.artist-options, .session-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.choice-card, .session-card { position: relative; display: flex; gap: 12px; align-items: center; min-width: 0; padding: 15px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: border-color .15s, transform .15s, background .15s; }
.choice-card:hover, .session-card:hover { border-color: var(--accent); transform: translateY(-1px); }
.choice-card:has(input:checked), .session-card:has(input:checked) { background: color-mix(in srgb, var(--accent) 13%, var(--surface)); border-color: var(--accent); box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 16%, transparent); }
.choice-card--featured { border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.choice-card input, .session-card input { width: 19px; height: 19px; flex: none; accent-color: var(--accent); }
.choice-card span, .session-card span { min-width: 0; }
.choice-card strong, .session-card strong { display: block; color: var(--text); }
.choice-card small, .session-card small { display: block; margin-top: 3px; color: var(--muted); font-size: .78rem; line-height: 1.35; }
.session-card b { margin-left: auto; color: var(--text); white-space: nowrap; }
.rate-decision { grid-column: 1 / -1; padding: 18px; background: color-mix(in srgb, #dcae58 10%, var(--surface)); border: 1px solid color-mix(in srgb, #dcae58 55%, var(--line)); border-radius: 12px; }
.rate-decision p { margin: 5px 0 0; color: var(--muted); }
.booking-step--checkout h2 { margin: 0 0 12px; }
.booking-step--checkout p { color: var(--muted); }
.central-checkout { display: block; width: 100%; margin-top: 18px; }
.central-checkout:disabled { background: var(--surface-2); border-color: var(--line); color: var(--muted); box-shadow: none; cursor: not-allowed; }
.central-checkout:disabled::after { display: none; }
.checkout-lock { margin: 10px 0 0; font-size: .82rem; text-align: center; }
.booking-summary { position: sticky; top: 92px; padding: 26px; background: radial-gradient(460px 240px at 0 0, color-mix(in srgb, var(--accent) 16%, transparent), transparent 72%), var(--surface); border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line)); border-radius: 16px; box-shadow: 0 24px 70px -48px var(--shadow); }
.booking-summary h2 { margin-bottom: 20px; }
.booking-summary dl { margin: 0; }
.booking-summary dl div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.booking-summary dt { color: var(--muted); }
.booking-summary dd { margin: 0; text-align: right; font-weight: 600; }
.booking-total { display: flex; justify-content: space-between; align-items: baseline; padding: 20px 0; font-weight: 700; }
.booking-total strong { font: 700 1.65rem/1 var(--serif); }
.summary-note { margin: 0; padding: 14px; background: var(--surface-2); border-radius: 10px; color: var(--muted); font-size: .86rem; }
.money-flow { margin-top: 20px; }
.money-flow div { display: flex; gap: 10px; align-items: flex-start; }
.money-flow div + div { margin-top: 10px; }
.money-flow span { display: inline-grid; place-items: center; width: 24px; height: 24px; flex: none; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line); color: var(--accent); font-size: .75rem; font-weight: 700; }
.money-flow p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.4; }
.money-flow strong { color: var(--text); }
.manual-artist { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; margin-top: 24px; padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; }
.manual-artist h2 { margin-bottom: 6px; }
.manual-artist p:not(.kicker) { margin: 0; color: var(--muted); }
.booking-policies { margin-top: 54px; }

@media (max-width: 900px) {
  .central-booking-layout { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .manual-artist { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .artist-options, .session-options { grid-template-columns: 1fr; }
  .manual-artist .btn-row { flex-direction: column; }
  .manual-artist .btn { width: 100%; text-align: center; }
}

/* ---------- Booking hub (one page, four rooms) ---------- */
.hub { display: grid; gap: 18px; }
.hub-pick { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.hub-artist { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; min-width: 0; padding: 14px 15px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; color: var(--text); font: inherit; text-align: left; cursor: pointer; transition: border-color .15s, transform .15s, background .15s; }
.hub-artist:hover { border-color: var(--accent); transform: translateY(-1px); }
.hub-artist[aria-pressed="true"] { background: color-mix(in srgb, var(--accent) 13%, var(--surface)); border-color: var(--accent); box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 16%, transparent); }
.hub-artist__head { display: flex; align-items: center; gap: 11px; min-width: 0; }
.hub-artist__head strong { color: var(--text); font-size: 1.05rem; line-height: 1.2; }
.hub-artist__thumb { width: 48px; height: 48px; flex: none; border-radius: 50%; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.hub-artist__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hub-artist__thumb--icon { display: grid; place-items: center; font: 700 1.2rem/1 var(--serif); color: var(--accent); }
.hub-artist__tag { display: block; width: 100%; color: var(--muted); font-size: .8rem; line-height: 1.45; }
.hub-chip { flex: none; margin-top: auto; padding: 4px 10px; border-radius: 999px; background: color-mix(in srgb, var(--accent) 14%, var(--surface)); border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--line)); color: var(--text); font-size: .76rem; font-weight: 700; white-space: nowrap; }
.hub-room { min-width: 0; }
.hub-roomcard { display: grid; gap: 16px; padding: clamp(18px, 3vw, 26px); background: var(--surface); border: 1px solid var(--line); border-radius: 16px; }
.hub-trust { margin: 0; color: var(--muted); line-height: 1.55; }
.hub-trust strong { color: var(--text); }
.hub-gallery { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.hub-gallery img { height: 170px; width: auto; flex: none; border-radius: 10px; border: 1px solid var(--line); scroll-snap-align: start; }
.hub-sessions { display: grid; gap: 10px; }
.hub-appay { color: var(--accent); font-weight: 600; }
.hub-appay--no { color: var(--muted); font-weight: 500; }
.hub-cta { display: block; width: 100%; text-align: center; }
.hub-cta[aria-disabled="true"] { background: var(--surface-2); border-color: var(--line); color: var(--muted); cursor: not-allowed; box-shadow: none; }
.hub-cta[aria-disabled="true"]:hover { background: var(--surface-2); border-color: var(--line); color: var(--muted); }
.hub-note { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }
.hub-note a { font-weight: 600; }
.hub-frame-wrap { position: relative; min-height: 780px; background: #ffffff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.hub-frame-wrap iframe { display: block; width: 100%; min-height: 780px; border: 0; }
.hub-frame-loading { position: absolute; top: 24px; left: 0; right: 0; margin: 0; text-align: center; color: #4a5766; }
.hub-choose { display: grid; gap: 14px; }
.hub-choose label { display: grid; gap: 6px; color: var(--muted); font-size: .88rem; font-weight: 600; }
.hub-choose input, .hub-choose select { padding: 12px 14px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; color: var(--text); font: inherit; }
.hub-choose input:focus, .hub-choose select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.artist-bookbar { position: fixed; left: 50%; bottom: 14px; transform: translateX(-50%); z-index: 90; display: flex; gap: 10px; align-items: center; max-width: calc(100vw - 24px); padding: 10px 12px 10px 18px; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 999px; box-shadow: 0 18px 50px -20px var(--shadow); }
.artist-bookbar span { color: var(--muted); font-size: .85rem; white-space: nowrap; }
@media (max-width: 900px) {
  .hub-pick { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hub-gallery img { height: 130px; }
  .hub-frame-wrap, .hub-frame-wrap iframe { min-height: 720px; }
  .artist-bookbar span { display: none; }
}
