/* =========================================================
   Cut & Styles — dark cinematic theme
   Plain CSS, no build step. Edit the tokens below to rebrand.
   ========================================================= */

:root {
  /* Palette */
  --bg:        #0a0a0b;
  --bg-soft:   #0e0e10;
  --surface:   #121214;
  --surface-2: #18181b;
  --line:      #26262b;
  --text:      #f4f4f3;
  --muted:     #a0a0aa;
  --muted-dim: #909099; /* WCAG AA (~5:1) on --bg and --surface for small text */

  /* One accent (neon blade-orange) */
  --accent:      #ff5a36;
  --accent-soft: #ff7a5c;
  --accent-glow: rgba(255, 90, 54, 0.45);

  /* Type */
  --font-display: "Anton", Impact, sans-serif;
  --font-head: "Syne", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 22px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;

  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--accent);
  color: #111;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* Visually-hidden but available to screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.accent { color: var(--accent); }
code {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.85em;
  color: var(--accent-soft);
  background: rgba(255,255,255,0.04);
  padding: 0.1em 0.4em;
  border-radius: 5px;
}

/* ---------- Shared bits ---------- */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.6rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn span { transition: transform 0.25s var(--ease); }
.btn:hover span { transform: translateX(4px); }

.btn--primary {
  background: var(--accent);
  color: #160a06;
  box-shadow: 0 8px 30px -8px var(--accent-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px var(--accent-glow);
  background: var(--accent-soft);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
              border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header[data-state="scrolled"] {
  background: rgba(10,10,11,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.site-header[data-state="hidden"] { transform: translateY(-100%); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand__mark { color: var(--accent); font-size: 1.1em; transform: rotate(-8deg); }
.brand__amp { color: var(--accent); margin-inline: 0.05em; }

.nav__links { display: flex; align-items: center; gap: 0.4rem; }
.nav__links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::after {
  content: "";
  display: block;
  height: 2px;
  width: 18px;
  margin: 2px auto 0;
  background: var(--accent);
  border-radius: 2px;
}
.nav__cta {
  background: var(--accent) !important;
  color: #160a06 !important;
  padding-inline: 1.15rem !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--accent-soft) !important; }

/* Tap-to-call: hidden on desktop (the "Call to book" pill covers it),
   shown as an always-visible icon button on mobile (outside the hamburger). */
.nav__phone { display: none; align-items: center; gap: 0.4rem; color: var(--text); font-family: var(--font-head); font-weight: 700; }
.nav__phone-icon { color: var(--accent); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle span {
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--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); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% 0%, #1a1410 0%, transparent 55%),
    radial-gradient(100% 80% at 10% 100%, #14100f 0%, transparent 50%),
    var(--bg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  z-index: 0;
  filter: brightness(0.5) saturate(1.05) contrast(1.02);
}
.hero__bg.is-broken { display: none; }
/* Cinematic scrim: keeps the headline readable over the photo, and fades the
   bottom edge into the page so the hero blends into the marquee below. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(95deg, rgba(10,10,11,0.95) 0%, rgba(10,10,11,0.78) 34%, rgba(10,10,11,0.36) 66%, rgba(10,10,11,0.6) 100%),
    linear-gradient(0deg, var(--bg) 1%, rgba(10,10,11,0) 26%);
}
.hero__spotlight {
  position: absolute;
  inset: -20%;
  background: radial-gradient(420px circle at var(--mx, 70%) var(--my, 30%), var(--accent-glow), transparent 60%);
  opacity: 0.4;
  pointer-events: none;
  transition: background 0.18s linear;
  z-index: 2;
  mix-blend-mode: screen;
}
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.45;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%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)' opacity='0.5'/%3E%3C/svg%3E");
}
.hero__inner { position: relative; z-index: 4; padding-block: 6vh 14vh; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 12vw, 9.5rem);
  margin: 1.1rem 0 0;
}
.hero__title .accent { text-shadow: 0 0 38px var(--accent-glow); }
.hero__sub {
  max-width: 48ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 0.95rem + 0.5vw, 1.25rem);
  margin-top: 1.4rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.2rem; }
.hero__callnote { margin-top: 1.1rem; color: var(--muted); font-size: 0.95rem; }
.hero__callnote a { color: var(--text); font-weight: 600; border-bottom: 1px solid var(--accent); padding-bottom: 1px; }
.hero__callnote a:hover { color: var(--accent); }
.hero__status { display: inline-block; margin-left: 0.3rem; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.02em; }
.hero__status[data-open="true"] { color: #6ee7a8; }
.hero__status[data-open="false"] { color: var(--accent-soft); }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  margin-top: 3.2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 640px;
}
.stat dt {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-dim);
}
.stat dd {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1;
  margin-top: 0.35rem;
  display: flex;
  align-items: baseline;
}
.stat__suffix { color: var(--accent); margin-left: 0.05em; }

.hero__scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-arrow { animation: bob 1.8s var(--ease) infinite; font-size: 1rem; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  padding-block: 1rem;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: max-content;
  animation: scroll-x 32s linear infinite;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.marquee__track .dot { color: var(--accent); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Section scaffolding ---------- */
.section { padding-block: clamp(4.5rem, 9vw, 8rem); scroll-margin-top: var(--header-h); }
.section--alt { background: var(--bg-soft); }
.book { scroll-margin-top: var(--header-h); }

.section__head { max-width: 64ch; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  font-size: clamp(2.4rem, 7vw, 5rem);
  margin: 0.6rem 0 0;
}
.section__lead { color: var(--muted); margin-top: 1rem; font-size: 1.08rem; }

/* ---------- Services (image cards → open a detail dialog) ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 1rem;
}
.svc-card {
  position: relative;
  isolation: isolate;
  min-height: 360px;
  display: flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.svc-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  z-index: -2;
  filter: brightness(0.82) saturate(1.04);
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}
.svc-card__bg.is-broken { display: none; }
/* Readability scrim — darker at the bottom where the text sits */
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,11,0.12) 0%, rgba(10,10,11,0.5) 46%, rgba(10,10,11,0.95) 100%);
  transition: background 0.35s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,90,54,0.55);
  box-shadow: 0 24px 55px -24px rgba(0,0,0,0.85);
}
.svc-card:hover .svc-card__bg { transform: scale(1.07); filter: brightness(0.92) saturate(1.1); }
.svc-card:hover::after {
  background: linear-gradient(180deg, rgba(10,10,11,0.08) 0%, rgba(20,10,7,0.5) 46%, rgba(10,10,11,0.96) 100%);
}
.svc-card__content {
  margin-top: auto;
  position: relative;
  padding: 1.4rem 1.45rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}
.svc-card__cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-dim);
}
.svc-card__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #160a06;
  background: var(--accent);
  padding: 0.28em 0.7em;
  border-radius: 100px;
}
.svc-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.32rem;
  line-height: 1.15;
}
.svc-card__tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-dim);
  vertical-align: middle;
  margin-left: 0.3rem;
}
.svc-card__desc { color: var(--muted); font-size: 0.92rem; }
.svc-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.svc-card__price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--accent);
  line-height: 1;
}
.svc-card__more {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.svc-card__more span { color: var(--accent); display: inline-block; transition: transform 0.25s var(--ease); }
.svc-card:hover .svc-card__more,
.svc-card:focus-within .svc-card__more { opacity: 1; transform: none; }
/* Touch devices have no hover — keep the "View details" cue always visible there */
@media (hover: none) {
  .svc-card__more { opacity: 1; transform: none; }
}
.svc-card:hover .svc-card__more span { transform: translateX(4px); }
/* Invisible button stretched over the whole card = the click/keyboard target */
.svc-card__open {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.svc-card__open:focus-visible { outline: 2px solid var(--accent); outline-offset: -4px; border-radius: var(--radius); }
.svc-card--feature { border-color: rgba(255,90,54,0.5); }
.svc-card--feature .svc-card__price { text-shadow: 0 0 28px var(--accent-glow); }
@media (min-width: 580px) {
  .svc-card--feature { grid-column: span 2; }
  .svc-card--feature .svc-card__name { font-size: 1.7rem; }
}

/* ---------- Gallery (real photos → open a lightbox) ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
/* Uniform tiles (aspect-ratio gives each one height) so the owner can add/remove
   photos without leaving gaps. */
.gallery__item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
}
/* Caption-legibility scrim */
.gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,11,0.05) 40%, rgba(10,10,11,0.85) 100%);
}
.gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.85);
  transition: transform 0.6s var(--ease), filter 0.5s var(--ease);
}
.gallery__img.is-broken { opacity: 0; }
.gallery__item:hover .gallery__img,
.gallery__item:focus-within .gallery__img {
  transform: scale(1.06);
  filter: grayscale(0.1) contrast(1.05) brightness(1);
}
/* Fallback glyph if a photo fails to load (offline / blocked) */
.gallery__item::after {
  content: "✂";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--muted-dim);
}
.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.gallery__item figcaption span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}
.gallery__item figcaption::after {
  content: "⤢";
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery__item:hover figcaption::after,
.gallery__item:focus-within figcaption::after { opacity: 1; transform: translateX(0); }
.gallery__open {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.gallery__open:focus-visible { outline: 2px solid var(--accent); outline-offset: -4px; border-radius: var(--radius); }

/* ---------- Team ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.member {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.member:hover { transform: translateY(-5px); border-color: rgba(255,90,54,0.4); }
.member__avatar {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, #26262c, #131316);
  border: 2px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.member:hover .member__avatar {
  border-color: var(--accent);
  box-shadow: 0 0 30px -6px var(--accent-glow);
}
/* Initials sit underneath; the photo covers them when it loads (and is hidden
   again via .is-broken if the photo fails). */
.member__avatar::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.member__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: grayscale(0.25) contrast(1.03);
  transition: filter 0.4s var(--ease), transform 0.5s var(--ease);
}
.member:hover .member__photo { filter: grayscale(0) contrast(1.05); transform: scale(1.05); }
.member__photo.is-broken { display: none; }
.member__name { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; }
.member__role { color: var(--accent); font-weight: 600; font-size: 0.9rem; margin-top: 0.2rem; }
.member__spec { color: var(--muted); font-size: 0.9rem; margin-top: 0.4rem; }

/* ---------- Visit (hours + map) ---------- */
.visit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.visit__info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.visit__subhead {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-dim);
  margin-bottom: 0.8rem;
}
.visit__subhead:not(:first-child) { margin-top: 2rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: 0.7rem 0; text-align: left; border-bottom: 1px solid var(--line); }
.hours th { font-weight: 500; color: var(--text); }
.hours td { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; }
.hours__today th { color: var(--accent); font-weight: 700; }
.hours__today td { color: var(--accent-soft); }
.visit__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.visit__status::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--muted-dim);
}
.visit__status[data-open="true"] { color: #6ee7a8; border-color: rgba(110,231,168,0.35); }
.visit__status[data-open="true"]::before { background: #6ee7a8; box-shadow: 0 0 10px #6ee7a8; }
.visit__status[data-open="false"] { color: var(--muted); border-color: var(--line); }
.visit__status[data-open="false"]::before { background: var(--muted-dim); }

.visit__address { font-style: normal; color: var(--muted); line-height: 1.9; margin-top: 1.6rem; margin-bottom: 1.4rem; }
.visit__address a { color: var(--text); font-weight: 600; }
.visit__address a:hover { color: var(--accent); }
.visit__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 360px;
  background: var(--surface-2);
}
/* Fallback link sits behind the iframe; visible only if the iframe never paints */
.visit__map-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--muted);
}
.visit__map-fallback:hover { color: var(--accent); }
.visit__map-note {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  z-index: 2;
  margin: 0;
  font-size: 0.7rem;
  color: var(--muted);
  background: rgba(10,10,11,0.82);
  border: 1px solid var(--line);
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.visit__map-note code { font-size: 0.95em; }
/* Dark-mode the light OSM tiles to match the theme: desaturate then invert
   so the map reads as a clean monochrome dark map. */
.visit__map iframe { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(1) invert(0.91) contrast(0.9) brightness(1.05); }

/* ---------- Book ---------- */
.book {
  position: relative;
  text-align: center;
  padding-block: clamp(5rem, 11vw, 9rem);
  overflow: hidden;
  background:
    radial-gradient(90% 120% at 50% 0%, #1c1410 0%, transparent 55%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.book__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.4; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.book__inner { position: relative; z-index: 1; max-width: 720px; }
.book__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  font-size: clamp(2.8rem, 9vw, 6rem);
  margin: 0.8rem 0 0;
}
.book__lead { color: var(--muted); max-width: 46ch; margin: 1.2rem auto 0; }
.book__phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4rem);
  color: var(--text);
  margin: 2rem 0 0.4rem;
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease), text-shadow 0.25s var(--ease);
}
.book__phone:hover { color: var(--accent); text-shadow: 0 0 34px var(--accent-glow); }
.book__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin-top: 1.4rem; }
.book__hours-note {
  margin-top: 1.8rem;
  font-size: 0.85rem;
  color: var(--muted-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding-block: 3rem 1.5rem; }
.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.footer__tag { color: var(--muted); margin-top: 0.8rem; font-size: 0.92rem; max-width: 32ch; }
.footer__links, .footer__social { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a, .footer__social a { color: var(--muted); width: max-content; transition: color 0.2s var(--ease); }
.footer__links a:hover, .footer__social a:hover { color: var(--accent); }
.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 1.5rem;
  color: var(--muted-dim);
  font-size: 0.82rem;
}

/* ---------- Scroll reveal (progressive enhancement) ----------
   Hidden state only applies once JS adds `.js` to <html>, so visitors
   without JS (or if the script fails) always see the content. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Book background photo ---------- */
.book__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  z-index: 0;
  filter: brightness(0.3) saturate(1.05) contrast(1.02);
}
.book__bg.is-broken { display: none; }
.book::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(95% 130% at 50% 0%, rgba(28,20,16,0.55), transparent 55%),
    linear-gradient(0deg, var(--bg) 4%, rgba(10,10,11,0.4) 55%, rgba(10,10,11,0.62) 100%);
}

/* ===================== MODAL (service details + image lightbox) ===================== */
body.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0s linear 0.35s;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s var(--ease), visibility 0s;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,6,7,0.72);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}
.modal__dialog {
  position: relative;
  z-index: 1;
  --modal-cap: min(90svh, 760px);
  width: min(940px, 100%);
  max-height: var(--modal-cap);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 120px -30px rgba(0,0,0,0.9);
  transform: translateY(28px) scale(0.96);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.4s var(--ease);
}
.modal.is-open .modal__dialog { transform: none; opacity: 1; }
.modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text);
  background: rgba(10,10,11,0.55);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.modal__close:hover { background: var(--accent); color: #160a06; border-color: var(--accent); transform: rotate(90deg); }

/* --- media column (left) --- */
.modal__media {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #0c0c0e;
  min-height: 0;
  max-height: var(--modal-cap);
}
.modal__viewer {
  position: relative;
  flex: 1;
  min-height: 0;
  background: #0c0c0e;
  overflow: hidden;
}
.modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%; /* bias toward the top so tall portraits don't crop the hair */
  transition: opacity 0.3s var(--ease);
}
.modal__img.is-swapping { opacity: 0; }
.modal__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.2rem 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  background: linear-gradient(0deg, rgba(10,10,11,0.92), transparent);
}
.modal__thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.6rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.modal__thumb {
  position: relative;
  flex: 1;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 9px;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
  opacity: 0.6;
  transition: opacity 0.2s var(--ease), border-color 0.2s var(--ease);
}
.modal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.modal__thumb:hover { opacity: 1; }
.modal__thumb[aria-pressed="true"] { opacity: 1; border-color: var(--accent); }

/* --- detail column (right) --- */
.modal__body {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  overflow-y: auto;
  min-height: 0;
  max-height: var(--modal-cap);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.modal__cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); font-weight: 600; }
.modal__title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; line-height: 0.98; font-size: clamp(1.9rem, 4vw, 2.6rem); margin-top: 0.1rem; }
.modal__price { font-family: var(--font-display); font-size: 1.7rem; color: var(--accent); }
.modal__desc { color: var(--muted); margin-top: 0.2rem; }
.modal__included-wrap { margin-top: 0.6rem; }
.modal__included-head { font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-dim); margin-bottom: 0.5rem; }
.modal__included { display: flex; flex-direction: column; gap: 0.4rem; }
.modal__included li { position: relative; padding-left: 1.5rem; color: var(--text); font-size: 0.93rem; }
.modal__included li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.modal__duration { color: var(--muted-dim); font-size: 0.85rem; margin-top: 0.3rem; }
.modal__cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: auto; padding-top: 1.3rem; }

/* image-only (gallery lightbox) mode */
.modal--media-only .modal__dialog { --modal-cap: min(92svh, 960px); grid-template-columns: 1fr; width: min(840px, 100%); background: transparent; border: 0; box-shadow: none; }
.modal--media-only .modal__body,
.modal--media-only .modal__thumbs { display: none; }
.modal--media-only .modal__media { background: transparent; }
.modal--media-only .modal__viewer { border-radius: var(--radius-lg); border: 1px solid var(--line); }
.modal--media-only .modal__img { max-height: min(86svh, 920px); object-fit: contain; background: #0c0c0e; }

@media (max-width: 720px) {
  /* Stack the columns and let the whole dialog scroll on small screens */
  .modal__dialog { grid-template-columns: 1fr; grid-template-rows: auto auto; max-height: 92svh; overflow-y: auto; }
  .modal__media { height: 40svh; max-height: 40svh; }
  .modal__body { max-height: none; overflow-y: visible; }
  .modal__viewer { min-height: 180px; }
  .modal--media-only .modal__media { height: auto; max-height: none; }
}

/* Short / landscape phones: a 40svh media column would crush the photo under the
   thumbnail strip — drop the thumbs and let the photo size naturally instead. */
@media (max-width: 720px) and (max-height: 520px) {
  .modal__media { height: auto; }
  .modal__viewer { min-height: 60svh; }
  .modal__thumbs { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .visit { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  /* Always-visible tap-to-call icon button, sits right of the links, left of the hamburger */
  .nav__phone {
    display: inline-flex;
    margin-left: auto;
    margin-right: 0.6rem;
    width: 44px; height: 44px;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 1.15rem;
    transition: border-color 0.2s var(--ease);
  }
  .nav__phone:hover { border-color: var(--accent); }
  .nav__phone-num { display: none; }
  .nav__links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 1rem var(--gutter) 1.4rem;
    background: rgba(12,12,14,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden; /* removes off-canvas links from tab order when closed */
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0s linear 0.3s;
  }
  .nav__links.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0s;
  }
  .nav__links a { padding: 0.85rem 0.5rem; font-size: 1.05rem; }
  .nav__links a.is-active::after { margin: 4px 0 0; }
  .nav__cta { text-align: center; margin-top: 0.4rem; }

  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 460px) {
  .hero__stats { gap: 1.4rem 2rem; }
  .btn { width: 100%; justify-content: center; }
  .hero__cta, .book__cta { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__spotlight { display: none; }
  /* No fade-out delay → the closed modal stops capturing clicks immediately */
  .modal { transition-delay: 0s !important; }
  .modal__dialog { transform: none; }
}
