/* ==========================================================
   Modern Image Barber & Stylist
   Editorial monochrome aesthetic: bright white/grey studio
   sections bookended by a black header + hero, echoing the
   brand's black-and-white circular logo.
   ========================================================== */

:root {
  --black: #0a0a0a;
  --near-black: #141414;
  --white: #ffffff;
  --off-white: #f6f5f3;
  --panel: #ffffff;
  --line: rgba(0, 0, 0, 0.1);
  --line-soft: rgba(0, 0, 0, 0.06);
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-dark-strong: rgba(255, 255, 255, 0.3);
  --ink: #141414;
  --muted: #6f6f6f;
  --muted-light: #9a9a9a;
  --display: 'Tenor Sans', 'Jost', sans-serif;
  --sans: 'Jost', 'Helvetica Neue', sans-serif;
  --header-h: 78px;

  /* ---- Editable typography (set live via admin.html Typography panel) ---- */
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --font-heading: 'Tenor Sans', 'Jost', sans-serif;
  --font-hero-title: 'Tenor Sans', 'Jost', sans-serif;
  --text-scale: 1;              /* multiplies ALL text sizes (1 = 100%) */
  --heading-scale: 1;           /* multiplies heading sizes only */
  --body-color: var(--ink);     /* body / paragraph text */
  --heading-color: var(--ink);  /* section headings on light sections */
  --hero-title-color: #ffffff;  /* big hero headline */
  --hero-eyebrow-color: var(--muted-light);  /* small line above the headline */
  --hero-accent-color: var(--muted-light);   /* headline line 2 (italic accent) */
  --hero-tagline-color: var(--muted-light);  /* paragraph under the headline */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 38px); /* header + Next Available bar */
  font-size: calc(100% * var(--text-scale)); /* admin "Text size" control scales every rem */
}

body {
  background: var(--off-white);
  color: var(--body-color);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.04em;
}
h2 em, h1 em { font-style: normal; color: var(--muted); }

/* Subtle grain overlay for a filmic, editorial texture */
#noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.03;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 2.3rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-primary:hover { background: transparent; color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.64rem; letter-spacing: 0.14em; }

/* Buttons on dark backgrounds (hero) */
.on-dark .btn-primary { background: var(--white); color: var(--black); border-color: var(--white); }
.on-dark .btn-primary:hover { background: transparent; color: var(--white); }
.on-dark .btn-ghost { color: var(--white); border-color: var(--line-dark-strong); }
.on-dark .btn-ghost:hover { background: var(--white); color: var(--black); }

/* ==========================================================
   HEADER (dark, bookends the hero)
   ========================================================== */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: linear-gradient(rgba(8,8,8,0.92), rgba(8,8,8,0.72));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand-mark-img { width: 46px; height: 46px; object-fit: contain; }
.brand-text {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  line-height: 1.3;
  display: flex; flex-direction: column;
  color: var(--white);
}
.brand-sub {
  font-size: 0.52rem;
  letter-spacing: 0.32em;
  color: var(--muted-light);
  font-weight: 300;
}

#main-nav { display: flex; gap: 2.25rem; }
#main-nav a {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-light);
  transition: color 0.25s;
  position: relative;
}
#main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.3s;
}
#main-nav a:hover { color: var(--white); }
#main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1.1rem; }

.social-icons { display: flex; gap: 0.35rem; }
.social-icons a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--muted-light);
  font-size: 0.9rem;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.social-icons a:hover { color: var(--white); border-color: var(--line-dark-strong); }

.call-bubble {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255,255,255,0.15);
  transition: all 0.3s;
  white-space: nowrap;
}
.call-bubble:hover { background: #d8d8d8; transform: translateY(-1px); }

#nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-dark);
  color: var(--white);
  width: 42px; height: 42px;
  font-size: 1rem;
  cursor: pointer;
}

/* ==========================================================
   NEXT AVAILABLE BAR — slim clickable announcement strip
   pinned just under the header. Text + link are editable in
   admin.html → Hero & Text; leave the text empty to hide it.
   ========================================================== */
#next-available-bar {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}
#next-available-bar:hover { background: #ebebeb; }
#next-available-bar i {
  font-size: 0.8rem;
  transition: transform 0.25s;
}
#next-available-bar:hover i { transform: translateX(5px); }
#next-available-bar[hidden] { display: none; }
.next-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2fae4e;
  flex-shrink: 0;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,174,78,0.55); }
  55% { box-shadow: 0 0 0 6px rgba(47,174,78,0); }
}
@media (max-width: 640px) {
  #next-available-bar { font-size: 0.58rem; letter-spacing: 0.14em; gap: 0.5rem; }
}

/* ==========================================================
   HERO — 3D parallax stage, text bottom-left
   ========================================================== */
#hero-section {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  perspective: 1200px;
  background: var(--black);
}
#hero-stage {
  position: absolute;
  inset: -3% -3%;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s ease-out;
  /* A single guaranteed hero photo — admin-editable via admin.html → Hero
     Banner. Set once via the --hero-image CSS custom property; nothing
     else ever touches it, so it is 100% guaranteed to stay on screen. */
  background-image: var(--hero-image, url("images/hero-fallback.png"));
  background-size: cover;
  background-position: center 22%;
  filter: saturate(1.1) contrast(1.06) brightness(1.01);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(6,6,6,0.96) 0%, rgba(6,6,6,0.5) 32%, rgba(6,6,6,0.1) 58%, rgba(6,6,6,0.45) 100%),
    linear-gradient(90deg, rgba(6,6,6,0.55) 0%, rgba(6,6,6,0) 45%);
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 180px 60px rgba(0,0,0,0.85);
  pointer-events: none;
}

/* Smart-fit hero: JS measures the photo and sets the section height so
   the ENTIRE image is visible — no cropping. "contain" guarantees the
   full photo shows regardless; any unavoidable spare space is a clean
   dark letterbox instead of a crop. */
#hero-section.hero-fit { transition: height 0.35s ease; }
.hero-fit #hero-stage {
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--black);
}
.hero-fit .hero-overlay {
  background:
    linear-gradient(0deg, rgba(6,6,6,0.9) 0%, rgba(6,6,6,0.35) 30%, rgba(6,6,6,0) 55%);
}
.hero-fit .hero-vignette { box-shadow: inset 0 0 120px 30px rgba(0,0,0,0.6); }
.hero-content {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  padding: 0 1.75rem 5.5rem;
  max-width: 760px;
  text-align: left;
  color: var(--white);
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--hero-eyebrow-color);
  margin-bottom: 1.2rem;
  text-wrap: balance; /* avoid a lone word ("TX") on the wrapped line */
}
.hero-content h1 {
  font-family: var(--font-hero-title);
  font-size: calc(clamp(2.2rem, 6vw, 4.2rem) * var(--heading-scale));
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--hero-title-color);
}
.accent-text { color: var(--hero-accent-color); font-style: italic; }
.hero-tagline {
  margin: 1.4rem 0 2.2rem;
  max-width: 460px;
  color: var(--hero-tagline-color);
  font-size: 1rem;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero price pill — "Haircuts starting at $40" */
.hero-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.6rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line-dark-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-price-pill i { color: #7fd992; font-size: 0.8rem; }
.hero-price-pill[hidden] { display: none; }

/* ==========================================================
   GOOGLE TRUST STRIP — first thing seen after the hero
   ========================================================== */
#google-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
#google-strip-link {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem; /* tighter padding — bigger content, same strip height */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  transition: opacity 0.25s;
}
#google-strip-link:hover { opacity: 0.8; }
.gs-logo {
  font-family: 'Jost', 'Product Sans', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-yellow { color: #FBBC05; }
.g-green { color: #34A853; }
.gs-rating { display: inline-flex; align-items: center; gap: 0.7rem; }
.gs-rating strong {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.gs-stars {
  color: #FBBC05;
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.12);
}
.gs-count {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.gs-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  transition: all 0.25s;
}
#google-strip-link:hover .gs-cta { background: transparent; color: var(--ink); }
@media (max-width: 640px) {
  #google-strip-link { gap: 0.9rem; padding: 0.75rem 1rem; }
  .gs-logo { font-size: 1.6rem; }
  .gs-rating strong { font-size: 1.6rem; }
  .gs-stars { font-size: 1.1rem; }
  .gs-count { font-size: 0.66rem; }
  .gs-cta { display: none; }
}

/* ==========================================================
   WALK-INS / APPOINTMENTS PROMO BANNER
   Sits in the natural gap between the hero and the team
   section — a bold, high-contrast strip that fills what would
   otherwise be blank space, while flowing visually out of the
   hero (dark) into the bright body sections below.
   ========================================================== */
#promo-banner {
  background: var(--ink);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}
#promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.03) 100%);
  pointer-events: none;
}
.promo-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.promo-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.promo-item i {
  color: #7fd992;
  font-size: 1.15em;
  flex-shrink: 0;
}
.promo-item span { line-height: 1.2; }
.promo-divider {
  width: 1px;
  height: 2rem;
  background: var(--line-dark-strong);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .promo-inner { gap: 1.1rem; }
  .promo-divider { display: none; }
  .promo-item { font-size: 1rem; }
}

.scroll-hint {
  position: absolute;
  bottom: 2rem; right: 2rem;
  z-index: 2;
  color: var(--muted-light);
  font-size: 1.1rem;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ==========================================================
   SECTION HEADINGS (bright content sections)
   ========================================================== */
main > section { padding: 6rem 1.5rem; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.25rem; }
.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 0.9rem;
}
.section-head h2 { font-size: calc(clamp(2rem, 4.6vw, 3rem) * var(--heading-scale)); color: var(--heading-color); }
.section-lede { color: var(--muted); margin-top: 1rem; font-weight: 300; }

/* ==========================================================
   TEAM — luxury rows (adopted from the approved team-trial):
   deep charcoal-to-champagne gradient backdrop, every barber
   in ONE list, each white card carrying its own tier badge.
   ========================================================== */
#team-section {
  max-width: 100%;
  padding-top: 3.5rem; padding-bottom: 4.5rem;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(201, 168, 106, 0.28), transparent 60%),
    radial-gradient(900px 420px at 0% 110%, rgba(201, 168, 106, 0.16), transparent 55%),
    linear-gradient(160deg, #161513 0%, #23201b 42%, #3a3227 100%);
}
#team-section .section-head { margin-bottom: 1.9rem; }
#team-section .section-eyebrow { color: #c9a86a; }
#team-section .section-head h2 { color: #f4efe6; }
#team-section .section-head h2 em { color: #c9a86a; }
#team-section .section-lede { color: rgba(244, 239, 230, 0.72); }

#team-rows {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.team-loading, .team-empty { text-align: center; color: rgba(244, 239, 230, 0.65); font-size: 0.85rem; letter-spacing: 0.1em; padding: 1.5rem 0; }

.row-card {
  display: flex; align-items: stretch; gap: 1.1rem;
  background: var(--white);
  border: 1px solid rgba(201, 168, 106, 0.35);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  padding: 0.9rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.row-card:hover { box-shadow: 0 14px 34px rgba(0,0,0,0.4); border-color: rgba(201, 168, 106, 0.7); }
.row-card.moving { transform: scale(0.995); opacity: 0.6; }

.row-photo { position: relative; flex: 0 0 118px; }
.row-photo img { width: 118px; height: 118px; object-fit: cover; }
.row-bio {
  position: absolute; inset: 0; background: rgba(8,8,8,0.86); color: #eee;
  font-size: 0.62rem; line-height: 1.45; padding: 0.5rem;
  opacity: 0; transition: opacity 0.25s; overflow: hidden; display: flex; align-items: center;
}
.row-photo:hover .row-bio { opacity: 1; }

.row-main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 0.28rem; }
.row-top { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.row-name {
  font-family: 'Montserrat', var(--font-heading);
  font-size: 1.08rem; font-weight: 800;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--ink);
}
.tier-badge {
  font-size: 0.55rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.22rem 0.6rem; border-radius: 999px; white-space: nowrap;
}
.tier-badge.master_barber_stylist { background: var(--black); color: #fff; }
.tier-badge.barber_stylist { background: #e7e5e1; color: var(--ink); }
.tier-badge.barber { background: transparent; color: var(--muted); border: 1px solid var(--line); }

/* OWNER MODE: badge is clickable to change the barber's tier */
.tier-badge.tier-editable { cursor: pointer; position: relative; }
.tier-badge.tier-editable::after {
  content: "\f078"; /* chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.5em;
  margin-left: 0.45em;
  opacity: 0.7;
}
.tier-badge.tier-editable:hover { outline: 2px solid #c9a86a; outline-offset: 1px; }
.tier-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  background: var(--white);
  border: 1px solid rgba(201, 168, 106, 0.55);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  padding: 0.55rem;
  border-radius: 10px;
}
.tier-menu-opt { cursor: pointer; font-family: inherit; transition: transform 0.15s; }
.tier-menu-opt:hover { transform: scale(1.05); }
.tier-menu-opt.current { outline: 2px solid #c9a86a; outline-offset: 1px; }
/* the menu anchors to the name row */
.row-top { position: relative; }
.row-price { font-family: 'Montserrat', var(--font-body); font-size: 0.88rem; font-weight: 700; color: var(--ink); }

/* Schedule line — plain text for visitors; owner mode swaps in an
   auto-growing textarea (see .schedule-input) */
.row-schedule { display: flex; align-items: baseline; gap: 0.45rem; position: relative; width: 100%; }
.row-schedule i { font-size: 0.7rem; color: var(--muted-light); }
.schedule-text {
  font-size: 0.78rem; font-weight: 300; color: var(--muted);
  line-height: 1.45; white-space: pre-wrap; word-break: break-word;
  min-width: 0;
}
.schedule-input {
  flex: 1 1 auto; min-width: 0;
  display: block; width: 100%;
  font-family: var(--font-body); font-weight: 300; font-size: 0.78rem; color: var(--muted);
  border: 1px dashed transparent; background: transparent; padding: 0.15rem 0.35rem;
  transition: border-color 0.2s, background 0.2s;
  /* textarea: wrap + auto-grow so the schedule is always FULLY visible */
  resize: none; overflow: hidden; line-height: 1.45; white-space: pre-wrap; word-break: break-word;
}
.owner-mode .schedule-input { border-color: var(--line); }
.schedule-input:hover { border-color: var(--muted); }
.schedule-input:focus { outline: none; border-color: var(--ink); background: #faf9f7; color: var(--ink); }
.schedule-input::placeholder { color: #b9b6b1; font-style: italic; }
/* Status floats above the field so it never steals width from the schedule text */
.schedule-status { display: none; position: absolute; top: -0.95rem; right: 0; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: #4d9d63; white-space: nowrap; }
.schedule-status.show { display: inline; }
.schedule-status.err { color: #b03030; }

/* Actions: Book (bigger) above/beside the Instagram brand button */
.row-actions { display: flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: 0.45rem; flex: 0 0 auto; }
.row-actions-inner { display: flex; align-items: center; gap: 0.5rem; }
.btn-book {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--black); color: #fff; border: 1px solid var(--black);
  padding: 0.85rem 2.1rem; transition: all 0.25s;
}
.btn-book:hover { background: #c9a86a; border-color: #c9a86a; color: #161513; }
.row-ig {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: none; border-radius: 10px;
  /* Official Instagram brand gradient */
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff; font-size: 1.05rem;
  box-shadow: 0 3px 10px rgba(214, 36, 159, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.row-ig:hover { transform: scale(1.1); box-shadow: 0 5px 16px rgba(214, 36, 159, 0.5); }

/* Reorder arrows — OWNER MODE ONLY */
.row-move { display: none; flex-direction: column; justify-content: center; gap: 0.3rem; flex: 0 0 auto; }
.owner-mode .row-move { display: flex; }
.move-btn {
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); color: var(--muted);
  cursor: pointer; font-size: 0.7rem; transition: all 0.2s;
}
.move-btn:hover:not(:disabled) { background: var(--black); color: #fff; border-color: var(--black); }
.move-btn:disabled { opacity: 0.25; cursor: default; }

/* ==========================================================
   GALLERY
   ========================================================== */
#gallery-section { background: var(--white); }

/* ---- Gallery as a horizontal slide/carousel ---- */
.gallery-slider {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gallery-track {
  flex: 1;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 0.25rem 1rem;
  -webkit-overflow-scrolling: touch;
}
.gallery-track::-webkit-scrollbar { height: 6px; }
.gallery-track::-webkit-scrollbar-thumb { background: var(--line-dark-strong); }
.gallery-track::-webkit-scrollbar-track { background: transparent; }

.gallery-nav {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s;
  z-index: 2;
}
.gallery-nav:hover { background: var(--ink); color: var(--white); }

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--line);
  flex: 0 0 auto;
  width: min(320px, 78vw);
  scroll-snap-align: start;
}
.gallery-item img {
  height: 380px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
  filter: saturate(1.08) contrast(1.03);
}
.gallery-item:hover img { transform: scale(1.05); filter: saturate(1.18) contrast(1.05); }
.gallery-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(6,6,6,0.85));
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s;
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }
.gallery-cap small { display: block; color: var(--muted-light); font-size: 0.6rem; letter-spacing: 0.22em; margin-top: 0.15rem; }

/* Lightbox (stays dark for image focus regardless of page theme) */
.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4,4,4,0.96);
  display: grid;
  place-items: center;
  padding: 2rem;
}
.lightbox img { max-width: min(92vw, 1000px); max-height: 80vh; object-fit: contain; border: 1px solid var(--line-dark); filter: saturate(1.08) contrast(1.03); }
.lightbox p { margin-top: 1rem; color: var(--muted-light); letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.75rem; text-align: center; }
#lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: 1px solid var(--line-dark);
  color: var(--white);
  width: 48px; height: 48px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
}
#lightbox-close:hover { border-color: var(--white); }

/* ==========================================================
   REVIEWS
   ========================================================== */
/* Same luxury charcoal-to-champagne gradient as #team-section */
#reviews-section {
  padding-bottom: 4rem;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(201, 168, 106, 0.28), transparent 60%),
    radial-gradient(900px 420px at 0% 110%, rgba(201, 168, 106, 0.16), transparent 55%),
    linear-gradient(160deg, #161513 0%, #23201b 42%, #3a3227 100%);
}
#reviews-section .section-eyebrow { color: #c9a86a; }
#reviews-section .section-head h2 { color: #f4efe6; }
#reviews-section .section-head h2 em { color: #c9a86a; }
#reviews-section .section-lede { color: rgba(244, 239, 230, 0.72); }
#reviews-section .review-hub { border-color: rgba(201, 168, 106, 0.35); box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32); }
#reviews-section .review-card { border-color: rgba(201, 168, 106, 0.35); }
#reviews-section .review-card:hover { border-color: rgba(201, 168, 106, 0.7); box-shadow: 0 16px 38px rgba(0, 0, 0, 0.4); }

/* --- Google-style rating summary panel --- */
.review-hub {
  max-width: 780px;
  margin: 0 auto 3rem;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2.25rem 2rem;
  flex-wrap: wrap;
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
}
.review-hub-score { text-align: center; }
.review-hub-number {
  font-family: var(--display);
  font-size: 3.6rem;
  line-height: 1;
  color: var(--ink);
}
.review-hub-stars {
  color: #FBBC05;
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  margin: 0.5rem 0 0.4rem;
}
.review-hub-count {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-hub-divider { width: 1px; align-self: stretch; background: var(--line); }
.review-hub-info { text-align: center; max-width: 300px; display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.review-hub-glogo {
  font-family: 'Jost', 'Product Sans', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.review-hub-glabel { color: var(--muted); font-weight: 300; font-size: 1.15rem; }
.review-hub-tag { font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.5; }
@media (max-width: 640px) {
  .review-hub { gap: 1.5rem; padding: 1.75rem 1.25rem; }
  .review-hub-divider { display: none; }
}

/* --- Review cards (Google-card style) --- */
.reviews-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.6rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.review-card:hover { transform: translateY(-5px); border-color: rgba(0,0,0,0.28); box-shadow: 0 16px 38px rgba(0,0,0,0.1); }

.review-head { display: flex; align-items: center; gap: 0.85rem; }
.review-avatar {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.15rem;
}
.review-id { display: flex; flex-direction: column; gap: 0.15rem; flex: 1; min-width: 0; }
.review-author {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-stars { color: #FBBC05; font-size: 0.78rem; letter-spacing: 0.22em; line-height: 1; }
.review-gmark {
  color: var(--muted-light);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.review-quote {
  color: #333;
  font-size: 0.95rem;
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  flex: 1;
}
.review-verified {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 0.85rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-verified i { color: #34A853; font-size: 0.75rem; }

/* ==========================================================
   LOCATION
   ========================================================== */
#location-section { background: var(--white); }
.location-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: 2rem;
  align-items: stretch;
}
.location-info {
  background: var(--off-white);
  border: 1px solid var(--line);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.location-info h3 { font-size: calc(1.5rem * var(--heading-scale)); line-height: 1.4; color: var(--heading-color); }
.location-tag {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.3rem 0.75rem;
  background: var(--white);
}
.location-info address { font-style: normal; display: flex; flex-direction: column; gap: 0.7rem; color: var(--muted); }
.location-info address i { color: var(--ink); width: 20px; margin-right: 0.5rem; }
.location-info address a:hover { color: var(--ink); }
.hours h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}
.location-info .btn { justify-content: center; margin-top: auto; }
.location-map { min-height: 420px; border: 1px solid var(--line); }
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================
   FOOTER (dark, bookends the page)
   ========================================================== */
#site-footer { border-top: 1px solid var(--line-dark); padding: 3.5rem 1.5rem; background: var(--black); }
.footer-inner { max-width: 1180px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.footer-logo-wrap { background: var(--white); padding: 1.5rem 2.25rem; border: 1px solid var(--line-dark); }
.footer-logo-img { height: 56px; width: auto; }
.footer-social { justify-content: center; }
.footer-social a { color: var(--muted-light); }
.footer-social a:hover { color: var(--white); border-color: var(--line-dark-strong); }
.footer-note { color: var(--muted-light); font-size: 0.76rem; letter-spacing: 0.06em; }
.footer-note a { color: var(--white); }
.footer-admin a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-light);
  opacity: 0.55;
  transition: opacity 0.25s, color 0.25s;
}
.footer-admin a:hover { opacity: 1; color: var(--white); }

/* Floating call bubble (mobile) */
#floating-call {
  display: none;
  position: fixed;
  bottom: 1.4rem; right: 1.4rem;
  z-index: 150;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 1.3rem;
  place-items: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(20,20,20,0.4); }
  70% { box-shadow: 0 0 0 18px rgba(20,20,20,0); }
  100% { box-shadow: 0 0 0 0 rgba(20,20,20,0); }
}

/* ==========================================================
   STUDIO ASSISTANT — floating chat + voice widget
   ========================================================== */
#chat-toggle {
  position: fixed;
  bottom: 1.4rem; right: 1.4rem;
  z-index: 160;
  width: 60px; height: 60px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 26px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, background 0.25s ease;
}
#chat-toggle:hover { transform: translateY(-2px) scale(1.04); }
#chat-toggle::after {
  content: "";
  position: absolute;
  top: 4px; right: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #4CD964;
  border: 2px solid var(--ink);
}

#chat-panel {
  position: fixed;
  bottom: 6rem; right: 1.4rem;
  z-index: 160;
  width: min(370px, calc(100vw - 2rem));
  height: min(560px, calc(100vh - 8rem));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#chat-panel[hidden] { display: none; }

#chat-header {
  background: var(--ink);
  color: var(--white);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-shrink: 0;
}
.chat-header-id { display: flex; align-items: center; gap: 0.7rem; }
.chat-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--white); object-fit: contain; padding: 3px; }
#chat-header strong { font-family: var(--font-heading); font-size: 0.86rem; letter-spacing: 0.05em; display: block; }
#chat-status { font-size: 0.66rem; color: var(--muted-light); letter-spacing: 0.04em; }
#chat-close { background: none; border: none; color: var(--white); font-size: 1rem; cursor: pointer; opacity: 0.8; }
#chat-close:hover { opacity: 1; }

#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--off-white);
}
.chat-msg {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  font-size: 0.84rem;
  line-height: 1.5;
}
.chat-msg-bot { align-self: flex-start; background: var(--white); border: 1px solid var(--line); color: var(--ink); border-bottom-left-radius: 4px; }
.chat-msg-user { align-self: flex-end; background: var(--ink); color: var(--white); border-bottom-right-radius: 4px; }
.chat-msg .chat-list { margin: 0.5rem 0 0.2rem 1.1rem; }
.chat-msg .chat-list li { margin-bottom: 0.25rem; }
.chat-typing { display: flex; gap: 4px; align-items: center; padding: 0.85rem 1rem; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: chatTypingBounce 1.1s infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatTypingBounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }

#chat-quick-replies { display: flex; gap: 0.5rem; flex-wrap: wrap; padding: 0 1rem; background: var(--off-white); }
#chat-quick-replies:empty { padding: 0; }
.quick-reply {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 0.7rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  margin-bottom: 0.6rem;
  transition: all 0.25s;
}
.quick-reply:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

#chat-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--line);
  background: var(--white);
  flex-shrink: 0;
}
#chat-input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  outline: none;
}
#chat-input:focus { border-color: var(--ink); }
#chat-mic, #chat-send {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--off-white);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.25s;
}
#chat-send { background: var(--ink); color: var(--white); border-color: var(--ink); }
#chat-mic:hover, #chat-send:hover { transform: scale(1.06); }
#chat-mic.listening { background: #d43b3b; color: var(--white); border-color: #d43b3b; animation: pulse 1.4s infinite; }
#chat-mic[hidden] { display: none; }

#chat-voice-hint {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d43b3b;
  padding: 0 0 0.65rem;
  background: var(--white);
}
#chat-voice-hint[hidden] { display: none; }
#chat-voice-hint i { font-size: 0.5rem; animation: pulse 1.2s infinite; margin-right: 0.35rem; }

/* ==========================================================
   OWNER EDIT MODE (visible only after admin login)
   ========================================================== */
.owner-bar {
  position: fixed;
  top: calc(var(--header-h) + 48px); /* clears the Next Available bar */
  left: 50%;
  transform: translateX(-50%);
  z-index: 170;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--ink);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.5rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.35);
  max-width: calc(100vw - 2rem);
}
.owner-bar i { color: #7fd992; }
.owner-bar-link,
.owner-bar-exit {
  background: none;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.owner-bar-link:hover,
.owner-bar-exit:hover { background: var(--white); color: var(--black); }

.owner-edit-hint {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(10,10,10,0.82);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s, background 0.25s;
}
.owner-mode .row-photo:hover .owner-edit-hint,
.owner-mode .gallery-item:hover .owner-edit-hint,
.owner-edit-hint:focus { opacity: 1; }
.owner-edit-hint:hover { background: var(--black); }
.owner-hero-hint {
  top: auto;
  bottom: 5.5rem;
  right: 2rem;
  opacity: 1;
  z-index: 6;
}
/* Touch devices have no hover — keep hints visible */
@media (hover: none) {
  .owner-mode .owner-edit-hint { opacity: 1; }
}

.owner-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 210;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}
.owner-toast.show { transform: translateX(-50%) translateY(0); }
.owner-toast.err { background: #c0392b; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  #main-nav { display: none; }
  .header-inner .social-icons { display: none; }
  #nav-toggle { display: grid; place-items: center; }
  #site-header.nav-open #main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    border-bottom: 1px solid var(--line-dark);
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

@media (max-width: 760px) {
  :root { --header-h: 66px; }
  .brand-text { display: none; }
  .call-bubble span { display: none; }
  .call-bubble { padding: 0.6rem 0.8rem; }
  main > section { padding: 3.75rem 1rem; }
  .hero-content { padding: 0 1.25rem 3.5rem; text-align: left; }
  .hero-cta { justify-content: flex-start; }
  .location-wrap { grid-template-columns: 1fr; }
  .location-map { min-height: 320px; }
  #floating-call { display: grid; bottom: 1.2rem; right: 5.6rem; width: 52px; height: 52px; font-size: 1.15rem; }
  #chat-toggle { bottom: 1.2rem; right: 1.2rem; width: 54px; height: 54px; font-size: 1.25rem; }
  #chat-panel { bottom: 5.6rem; right: 0.75rem; width: min(360px, calc(100vw - 1.5rem)); }
  #team-section .section-head { margin-bottom: 1.5rem; }

  /* --- Team rows: tuned for phones (from the approved trial) --- */
  #team-rows { gap: 0.7rem; }
  .row-card { gap: 0.6rem; padding: 0.65rem; }
  .row-photo { flex-basis: 86px; }
  .row-photo img { width: 86px; height: 86px; }
  .row-name { font-size: 0.78rem; }
  .row-top { gap: 0.3rem; }
  .row-main { gap: 0.2rem; padding-right: 0.2rem; }
  .tier-badge { font-size: 0.45rem; padding: 0.14rem 0.4rem; letter-spacing: 0.06em; white-space: normal; line-height: 1.3; text-align: center; border-radius: 8px; }
  .row-price { font-size: 0.74rem; }
  .schedule-text, .schedule-input { font-size: 0.7rem; }
  .row-actions { align-items: stretch; }
  .row-actions-inner { flex-direction: column; gap: 0.4rem; align-items: center; }
  .btn-book { padding: 0.55rem 1rem; font-size: 0.66rem; }
  .row-ig { width: 26px; height: 26px; font-size: 0.8rem; border-radius: 8px; }
  .move-btn { width: 26px; height: 26px; }

  /* --- Gallery: swipe-first on phones; arrows shrink & overlay edges so
         the photo gets the full width --- */
  .gallery-slider { gap: 0; }
  .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    font-size: 0.85rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  }
  .gallery-prev { left: 0.25rem; }
  .gallery-next { right: 0.25rem; }
  .gallery-item { width: min(300px, 82vw); }
  .gallery-item img { height: 330px; }

  /* --- Reviews: scale the hub panel type to the narrow screen --- */
  .review-hub-number { font-size: 2.9rem; }
  .review-hub-stars { font-size: 1rem; }
  .review-hub-glogo { font-size: 1.35rem; }
  .review-hub-glabel { font-size: 0.95rem; }
  .review-card { padding: 1.3rem 1.15rem 1.15rem; }
  .review-avatar { width: 40px; height: 40px; font-size: 1.05rem; }
  .review-quote { font-size: 0.9rem; }

  /* --- Section headings: slightly tighter rhythm on phones --- */
  .section-head { margin-bottom: 2.25rem; }
  .section-lede { font-size: 0.9rem; }


  /* --- Location: tighter card padding, phone-friendly --- */
  .location-info { padding: 1.75rem 1.4rem; }
  .location-info h3 { font-size: 1.3rem; }

  /* --- Hero CTAs: full-impact buttons that don't crowd --- */
  .hero-cta .btn { padding: 0.85rem 1.6rem; font-size: 0.66rem; }
  .hero-price-pill { font-size: 0.62rem; padding: 0.45rem 0.9rem; }

  /* On narrow/portrait phones the hero photo is a wide landscape shot —
     switch from "cover" (which crops heavily) to "contain" so the whole
     image is always visible, letterboxed on a solid dark background
     instead of being cropped away. */
  #hero-stage {
    background-size: contain;
    background-position: center center;
    background-color: var(--black);
    background-repeat: no-repeat;
  }
}


