/* site.css — the fake client site around the widget.
   This is the HOST page, not the booking system. It exists to prove the drop-in
   path: two tags, one JSON file, and the studio has bookings on its own site.
   Nothing here leaks into .gb; the widget only reads the --gb-* variables the
   host chooses to set. */

:root {
  color-scheme: light;
  --ink: hsl(220 20% 10%);
  --ink-2: hsl(220 10% 32%);
  --ink-mute: hsl(220 8% 46%);
  --bg: hsl(38 24% 96%);
  --surface: #fff;
  --surface-2: hsl(38 20% 92.5%);
  --line: hsl(30 12% 86%);
  --coral: hsl(8 85% 55%);
  --coral-deep: hsl(8 85% 44%);
  --coral-text: hsl(8 85% 38%);
  --night: hsl(222 24% 10%);
  --night-2: hsl(222 20% 14%);
  --site-font: ui-sans-serif, -apple-system, "Segoe UI Variable Text", "Segoe UI", system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display-font: var(--site-font);
  --maxw: 1160px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: hsl(40 22% 95%);
  --ink-2: hsl(40 8% 76%);
  --ink-mute: hsl(40 6% 62%);
  --bg: hsl(222 22% 8%);
  --surface: hsl(222 20% 11.5%);
  --surface-2: hsl(222 16% 16%);
  --line: hsl(222 12% 24%);
  --coral-text: hsl(8 90% 70%);
  --coral-deep: hsl(8 88% 62%);
  --night: hsl(222 24% 6%);
  --night-2: hsl(222 20% 10%);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--site-font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--display-font); margin: 0; letter-spacing: -0.028em; line-height: 1.08; font-weight: 800; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--coral-deep); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .wrap { padding: 0 16px; } }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--coral-deep); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip:focus { left: 0; }

/* ------------------------------------------------------------------ head */

.site-head {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-head__in { display: flex; align-items: center; gap: 20px; height: 66px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.logo__mark {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: var(--night); color: hsl(8 90% 62%);
}
html[data-theme="dark"] .logo__mark { background: hsl(8 85% 55%); color: hsl(222 30% 8%); }
.logo__name { display: block; font-family: var(--display-font); font-weight: 800; font-size: 16px; letter-spacing: -0.02em; line-height: 1.05; }
.logo__sub { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }

.site-nav { display: flex; gap: 4px; }
.site-nav a {
  padding: 8px 12px; border-radius: 8px; text-decoration: none;
  font-size: 14.5px; font-weight: 600; color: var(--ink-2);
}
.site-nav a:hover { background: var(--surface-2); color: var(--ink); }
@media (max-width: 860px) { .site-nav { display: none; } }
@media (max-width: 560px) {
  .site-head__in { height: 58px; gap: 10px; }
  .logo__sub { display: none; }
  .logo__mark { width: 30px; height: 30px; }
  .head-actions .btn { padding: 8px 12px; font-size: 13.5px; white-space: nowrap; }
  .icon-btn { width: 34px; height: 34px; }
}

.head-actions { display: flex; align-items: center; gap: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: 10px; border: 1px solid transparent;
  font-size: 15px; font-weight: 700; text-decoration: none; cursor: pointer;
  background: var(--coral-deep); color: #fff;
  transition: transform 140ms ease-out, background 140ms ease-out;
}
html[data-theme="dark"] .btn { color: hsl(222 30% 8%); }
.btn:hover { transform: translateY(-1px); }
.btn--line { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--line:hover { background: var(--surface-2); }
.btn--sm { padding: 8px 13px; font-size: 14px; }
.btn--ghost { background: transparent; color: var(--ink-2); }
.btn--ghost:hover { background: var(--surface-2); color: var(--ink); }

.icon-btn {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 9px; border: 1px solid var(--line); background: var(--surface);
  color: var(--ink-2); cursor: pointer;
}
.icon-btn:hover { color: var(--ink); background: var(--surface-2); }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn .moon { display: none; }
html[data-theme="dark"] .icon-btn .moon { display: block; }
html[data-theme="dark"] .icon-btn .sun { display: none; }

/* ------------------------------------------------------------------ hero */

.hero {
  background: var(--night);
  color: hsl(40 20% 96%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 88% 8%, hsl(8 85% 55% / 0.30), transparent 62%);
  pointer-events: none;
}
.hero__in {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px; align-items: center;
  padding: 84px 24px 76px; max-width: var(--maxw); margin: 0 auto;
}
@media (max-width: 900px) { .hero__in { grid-template-columns: 1fr; gap: 34px; padding: 54px 20px 48px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: hsl(8 90% 70%); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }

.hero h1 { font-size: clamp(38px, 6.2vw, 68px); letter-spacing: -0.038em; }
.hero h1 em { font-style: normal; color: hsl(8 90% 66%); }
.hero__lede { margin-top: 20px; font-size: clamp(16px, 1.6vw, 19px); color: hsl(40 12% 80%); max-width: 46ch; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero .btn--line { border-color: hsl(0 0% 100% / 0.28); color: hsl(40 20% 96%); }
.hero .btn--line:hover { background: hsl(0 0% 100% / 0.08); }
.hero .btn:not(.btn--line) { color: #fff; background: hsl(8 85% 52%); }

.hero__facts {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px; margin-top: 44px; padding-top: 26px;
  border-top: 1px solid hsl(0 0% 100% / 0.14);
}
.hero__facts dt { font-family: var(--display-font); font-size: 26px; font-weight: 800; letter-spacing: -0.03em; }
.hero__facts dd { margin: 2px 0 0; font-size: 12.5px; color: hsl(40 10% 72%); line-height: 1.35; }
@media (max-width: 560px) { .hero__facts { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; } }

.hero__art { display: grid; place-items: center; }
.hero__art svg { width: 100%; max-width: 380px; height: auto; }
@media (max-width: 900px) { .hero__art { display: none; } }

/* ----------------------------------------------------------------- strip */

.strip { padding: 56px 0 8px; }
.strip__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 820px) { .strip__grid { grid-template-columns: 1fr; } }
.value {
  padding: 22px 22px 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface);
}
.value__icon {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: hsl(8 85% 55% / 0.12); color: var(--coral-text); margin-bottom: 14px;
}
.value h3 { font-size: 17px; margin-bottom: 6px; letter-spacing: -0.02em; }
.value p { font-size: 14.5px; color: var(--ink-2); }

/* ------------------------------------------------------------------ book */

.book { padding: 56px 0 64px; }
.book__head { max-width: 62ch; margin-bottom: 26px; }
.book__head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.book__head p { margin-top: 12px; color: var(--ink-2); font-size: 16.5px; }
.book__note {
  display: flex; gap: 10px; align-items: flex-start; margin-top: 16px;
  font-size: 13.5px; color: var(--ink-mute);
  padding: 10px 13px; border-radius: 10px; background: var(--surface-2);
}
.book__note svg { width: 16px; height: 16px; flex: none; margin-top: 2px; }

/* ----------------------------------------------------------------- visit */

.visit { padding: 8px 0 72px; }
.visit__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; }
@media (max-width: 820px) { .visit__grid { grid-template-columns: 1fr; } }
.panel { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); padding: 24px; }
.panel h2 { font-size: 22px; margin-bottom: 14px; }
.panel h3 { font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); font-weight: 800; margin-bottom: 8px; }
.panel dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; font-size: 15px; margin: 0; }
.panel dt { color: var(--ink-mute); }
.panel dd { margin: 0; font-weight: 600; }
.hours { display: grid; gap: 6px; font-size: 15px; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 6px; border-bottom: 1px solid var(--line); }
.hours li:last-child { border-bottom: 0; }
.hours span:last-child { font-variant-numeric: tabular-nums; color: var(--ink-2); }

/* ---------------------------------------------------------------- footer */

.site-foot { border-top: 1px solid var(--line); padding: 28px 0 40px; font-size: 13.5px; color: var(--ink-mute); }
.site-foot__in { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.site-foot a { color: var(--coral-text); }
.badge-demo {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 700; color: var(--ink-2);
}
.badge-demo svg { width: 14px; height: 14px; color: var(--coral-text); }
