/* =========================================================================
   Top Dog Salon & Spa — Design System
   Dark theme · cyan-teal accent (matched to brand logo)
   ========================================================================= */

:root {
  /* Surfaces */
  --bg:           #0A1316;
  --bg-elevated:  #0F1B1F;
  --surface:      #142024;
  --surface-2:    #1A2A2F;
  --border:       #233539;
  --border-soft:  rgba(255, 255, 255, 0.06);

  /* Brand */
  --accent:        #2DC4DD;   /* matches logo */
  --accent-bright: #5BE0F5;
  --accent-deep:   #1A9FB8;
  --accent-glow:   rgba(45, 196, 221, 0.35);
  --gold:          #C9A36B;   /* premium spa accent, used sparingly */

  /* Text */
  --text:        #ECF4F6;
  --text-muted:  #8FA3A8;
  --text-faint:  #5B6F74;

  /* State */
  --success: #4ADE80;
  --warning: #FBBF24;
  --danger:  #F87171;

  /* Type */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px var(--accent-glow);

  /* Layout */
  --container: 1240px;
  --nav-h: 84px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-bright); }
button { font-family: inherit; cursor: pointer; }

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 var(--sp-4);
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

p { margin: 0 0 var(--sp-4); color: var(--text-muted); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.section { padding: var(--sp-10) 0; }
.section--tight { padding: var(--sp-9) 0; }
.section--dark { background: var(--bg-elevated); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: var(--sp-3);
  display: inline-block;
}
.section-heading {
  text-align: center;
  margin-bottom: var(--sp-8);
}
.section-heading p {
  max-width: 620px;
  margin: var(--sp-3) auto 0;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.95rem 1.6rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: #04181C;
  box-shadow: 0 6px 24px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-bright);
  color: #04181C;
  box-shadow: 0 10px 32px var(--accent-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn .arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 104px;
  z-index: 50;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
  transition: border-color .25s ease, height .25s ease;
  overflow: visible;
}
/* Backdrop-blur lives on a pseudo-element so it doesn't clip a spilling logo */
.site-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 19, 22, 0.65);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  z-index: -1;
  pointer-events: none;
  transition: background .25s ease;
}
.site-nav.is-scrolled::before { background: rgba(10, 19, 22, 0.92); }
.site-nav.is-scrolled { height: var(--nav-h); }
.site-nav .container { overflow: visible; position: relative; }
.site-nav.is-scrolled {
  background: rgba(10, 19, 22, 0.92);
  border-bottom-color: var(--border);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}
/* Logo — sits inside the nav, image spills ~35% below it */
.site-nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}
.site-nav__brand img {
  height: 140px;
  width: auto;
  margin-bottom: -50px;   /* spills ~36% below the 104px nav */
  transition: height .25s ease, margin-bottom .25s ease;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}
.site-nav.is-scrolled .site-nav__brand img {
  height: 50px;
  margin-bottom: 0;
  filter: none;
}
@media (max-width: 720px) {
  .site-nav__brand img { height: 110px; margin-bottom: -38px; }
  .site-nav.is-scrolled .site-nav__brand img { height: 44px; margin-bottom: 0; }
}
.site-nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-nav__brand-text strong {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.site-nav__brand-text span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-top: 2px;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  list-style: none;
  margin: 0; padding: 0;
}
.site-nav__links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}
.site-nav__links a:hover,
.site-nav__links a.is-active {
  color: var(--text);
}
.site-nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.site-nav__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
}
.site-nav__phone:hover { color: var(--text); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px;
  color: var(--text);
}

/* ---------- Hero (slider) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  padding-top: calc(var(--nav-h) + var(--sp-8));
  padding-bottom: var(--sp-9);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Slide layer — each slide stacked, fade transition */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  filter: saturate(1) brightness(0.85);
  transform: scale(1.05);
  animation: heroKenBurns 12s ease-in-out infinite alternate;
  animation-play-state: paused;
}
.hero__slide.is-active {
  opacity: 1;
  animation-play-state: running;
}
@keyframes heroKenBurns {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1.5%, -1%); }
}

/* Overlay gradient — sits above slides, below content. Lighter than before so photos pop. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 600px at 15% 30%, rgba(45,196,221,0.14), transparent 60%),
    linear-gradient(180deg, rgba(10,19,22,0.35) 0%, rgba(10,19,22,0.75) 65%, var(--bg) 100%);
  pointer-events: none;
}

/* Content panel — each slide caption fades with its slide */
.hero__inner {
  position: relative;
  max-width: 760px;
  min-height: 320px;
}
.hero__caption {
  position: absolute;
  inset: 3rem 0 0 0; /* clear the hero__meta (4.7 stats) row at the top */
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.hero__caption.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: .3s;
}
.hero h1 { margin-bottom: var(--sp-5); }
.hero h1 em {
  color: var(--accent);
  font-style: normal;
  background: linear-gradient(120deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lede {
  font-size: 1.2rem;
  color: var(--text);
  opacity: 0.92;
  margin-bottom: var(--sp-7);
  max-width: 580px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.hero__meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6) var(--sp-7);
  font-size: 0.95rem;
}
.hero__meta div {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--text-muted);
}
.hero__meta strong { color: var(--text); font-weight: 600; }

/* Slider controls — dots + arrows */
.hero__controls {
  position: absolute;
  bottom: 80px;
  right: var(--sp-5);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.hero__dots {
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .25s ease, width .25s ease;
}
.hero__dot:hover { background: rgba(255,255,255,0.5); }
.hero__dot.is-active {
  background: var(--accent);
  width: 44px;
}
.hero__arrows {
  display: flex;
  gap: 6px;
  margin-left: var(--sp-3);
}
.hero__arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(10,19,22,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.hero__arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #04181C;
}
@media (max-width: 720px) {
  .hero__controls {
    bottom: 60px;
    right: 50%;
    transform: translateX(50%);
  }
  .hero__arrows { display: none; }
  .hero__inner { min-height: 360px; }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}
.scroll-hint::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--text-faint), transparent);
  animation: scrollHint 2.2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(0.6); transform-origin: top; opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: linear-gradient(180deg, var(--bg), var(--bg-elevated));
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: var(--sp-7) 0;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.trust-item { text-align: center; }
.trust-item__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.trust-item__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* ---------- Cards (services) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  opacity: 0;
  transition: opacity .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-deep);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(45,196,221,0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--sp-2);
}
.service-card p {
  font-size: 0.95rem;
  margin-bottom: var(--sp-5);
  flex-grow: 1;
}
.service-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}
.service-card__price {
  color: var(--text);
  font-weight: 600;
}
.service-card__price small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2px;
  font-weight: 500;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---------- Why us ---------- */
.why {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
.why__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface);
}
.why__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,19,22,0.5));
}
.why__badge {
  position: absolute;
  bottom: var(--sp-5);
  left: var(--sp-5);
  background: rgba(10,19,22,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  color: var(--text);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.why__badge strong {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}
.why__list {
  list-style: none;
  padding: 0; margin: var(--sp-6) 0 0;
}
.why__list li {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border);
}
.why__list li:last-child { border-bottom: none; }
.why__list .ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(45,196,221,0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__list h4 { margin-bottom: 4px; }
.why__list p { margin: 0; font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: relative;
}
.testimonial__stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: var(--sp-3);
  font-size: 1.05rem;
}
.testimonial__quote {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: var(--sp-5);
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #04181C;
}
.testimonial__name { font-weight: 600; font-size: 0.95rem; }
.testimonial__meta { font-size: 0.8rem; color: var(--text-faint); }

/* ---------- Gallery preview ---------- */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--sp-3);
}
.gallery-preview a {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  display: block;
}
.gallery-preview img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-preview a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,19,22,0.6));
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery-preview a:hover img { transform: scale(1.06); }
.gallery-preview a:hover::after { opacity: 1; }
.gallery-preview__cta {
  text-align: center;
  margin-top: var(--sp-7);
}

/* ---------- Info row (hours + map) ---------- */
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
}
.hours-block { padding: var(--sp-7); }
.hours-block h3 { margin-bottom: var(--sp-5); }
.hours-list {
  list-style: none;
  padding: 0; margin: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--text-muted); }
.hours-list .time { color: var(--text); font-weight: 500; }
.hours-list .closed { color: var(--text-faint); }
.hours-list .today {
  color: var(--accent);
  font-weight: 600;
}
.hours-list .today .day::before {
  content: '● ';
  color: var(--accent);
}
.map-block {
  position: relative;
  min-height: 380px;
  background: var(--surface-2);
}
.map-block iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6);
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 80% 50%, rgba(45,196,221,0.18), transparent 60%),
    var(--bg-elevated);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: var(--sp-9) 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: var(--sp-3); }
.cta-band p { max-width: 540px; margin: 0 auto var(--sp-6); font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: #06101280;
  border-top: 1px solid var(--border);
  padding: var(--sp-9) 0 var(--sp-5);
  color: var(--text-muted);
  font-size: 0.92rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-7);
}
.site-footer h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
  margin: 0 0 var(--sp-4);
  font-weight: 600;
}
.site-footer ul {
  list-style: none;
  padding: 0; margin: 0;
}
.site-footer li { margin-bottom: var(--sp-2); }
.site-footer a {
  color: var(--text-muted);
}
.site-footer a:hover { color: var(--accent); }
.site-footer__brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.site-footer__brand img {
  height: 125px !important;
  width: auto;
  margin: 0 auto var(--sp-4) !important;
  display: block;
}
.site-footer__brand p { max-width: 360px; margin: 0 auto var(--sp-4); }
.site-footer__social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  justify-content: center;
}
.site-footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all .2s ease;
}
.site-footer__social a:hover {
  background: var(--accent);
  color: #04181C;
  border-color: var(--accent);
}
.site-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
  .why { grid-template-columns: 1fr; gap: var(--sp-7); }
  .why__media { aspect-ratio: 16 / 10; max-width: 600px; }
  .testimonials { grid-template-columns: 1fr; }
  .gallery-preview { grid-template-columns: repeat(2, 1fr); }
  .info-row { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --nav-h: 72px; }
  .section { padding: var(--sp-8) 0; }
  .site-nav__links, .site-nav__phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { min-height: 80vh; padding-top: calc(var(--nav-h) + var(--sp-6)); }
  .hero__meta { gap: var(--sp-4); }
  .service-grid { grid-template-columns: 1fr; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .site-footer__bottom { flex-direction: column; gap: var(--sp-3); }
}

/* ---------- Mobile menu (drawer) ---------- */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-5);
  display: none;
  z-index: 49;
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul {
  list-style: none;
  padding: 0; margin: 0 0 var(--sp-4);
}
.mobile-menu li { margin-bottom: var(--sp-3); }
.mobile-menu a { color: var(--text); font-size: 1.05rem; }

/* ---------- Utility ---------- */
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  border: none;
  margin: var(--sp-3) auto var(--sp-5);
}

/* ===================== INNER PAGE HERO ===================== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + var(--sp-9)) 0 var(--sp-8);
  text-align: center;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 360px at 50% 0%, rgba(45,196,221,0.16), transparent 60%);
}
.page-hero h1 { margin-bottom: var(--sp-3); }
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Sub-page hero slider — injected by the script in footer.php. Slides are
   absolutely positioned so the hero height stays exactly the same. */
.page-hero__slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero__slides::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,20,0.42), rgba(10,14,20,0.6));
}
.page-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) saturate(1.05);
}
.page-hero__slide.is-active { opacity: 1; }
.breadcrumb {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  margin-bottom: var(--sp-4);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ===================== SERVICE DETAIL CARDS (services page) ===================== */
.service-detail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  margin-bottom: var(--sp-6);
}
.service-detail__body { padding: var(--sp-7); }
.service-detail__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.service-detail h3 { margin: 0; font-size: 1.6rem; }
.service-detail__duration {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  flex-shrink: 0;
  padding-top: 6px;
}
.service-detail p { font-size: 1rem; margin-bottom: var(--sp-5); }
.service-detail ul.feat {
  list-style: none;
  padding: 0; margin: 0 0 var(--sp-5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2) var(--sp-4);
}
.service-detail ul.feat li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}
.service-detail ul.feat li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.price-matrix {
  background: var(--bg-elevated);
  padding: var(--sp-6);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.price-matrix h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin: 0 0 var(--sp-4);
}
.price-matrix__rows {
  flex-grow: 1;
}
.price-matrix__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--sp-3) 0;
  border-bottom: 1px dashed var(--border);
}
.price-matrix__row:last-child { border-bottom: none; }
.price-matrix__size {
  color: var(--text);
  font-weight: 500;
}
.price-matrix__size small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-faint);
  font-weight: 400;
  margin-top: 2px;
}
.price-matrix__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
}
.price-matrix__cta {
  margin-top: var(--sp-5);
}

/* ===================== GALLERY ===================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-7);
}
.gallery-filters button {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
}
.gallery-filters button:hover {
  color: var(--text);
  border-color: var(--text-muted);
}
.gallery-filters button.is-active {
  background: var(--accent);
  color: #04181C;
  border-color: var(--accent);
}
.gallery-grid {
  column-count: 4;
  column-gap: var(--sp-3);
}
@media (max-width: 1024px) { .gallery-grid { column-count: 3; } }
@media (max-width: 720px)  { .gallery-grid { column-count: 2; } }
.gallery-grid > a {
  display: block;
  break-inside: avoid;
  margin-bottom: var(--sp-3);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--surface);
}
.gallery-grid > a img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease, filter .3s ease;
}
.gallery-grid > a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,19,22,0);
  transition: background .25s ease;
}
.gallery-grid > a:hover img { transform: scale(1.04); }
.gallery-grid > a:hover::after { background: rgba(10,19,22,0.25); }
.gallery-load-more {
  text-align: center;
  margin-top: var(--sp-7);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 12, 14, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: var(--sp-5);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__nav:hover, .lightbox__close:hover {
  background: var(--accent);
  color: #04181C;
  border-color: var(--accent);
}

/* ===================== ABOUT / TEAM ===================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
.story-grid h2 { margin-bottom: var(--sp-5); }
.story-grid p { font-size: 1.02rem; }
.story-grid__media {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.story-grid__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-grid__media { aspect-ratio: 16/10; max-width: 600px; }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: center;
}
.team-card__photo {
  aspect-ratio: 1/1;
  background: var(--surface-2);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: var(--sp-5); }
.team-card h4 { margin: 0 0 4px; font-family: var(--font-display); }
.team-card .role {
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: block;
  margin-bottom: var(--sp-3);
}
.team-card p {
  font-size: 0.92rem;
  margin: 0;
}
@media (max-width: 1024px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px)  { .team-grid { grid-template-columns: 1fr; } }

.feat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.feat-row .feat {
  text-align: center;
  padding: var(--sp-6);
}
.feat-row .feat .ico {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(45,196,221,0.08);
  color: var(--accent);
  margin: 0 auto var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 720px) { .feat-row { grid-template-columns: 1fr; } }

/* ===================== FORMS ===================== */
.form-grid {
  display: grid;
  gap: var(--sp-4);
}
.form-grid.two-col { grid-template-columns: 1fr 1fr; }
@media (max-width: 720px) { .form-grid.two-col { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.field label .req { color: var(--accent); margin-left: 2px; }
.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  border-radius: var(--r-md);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-elevated);
}
.field textarea { min-height: 130px; resize: vertical; font-family: inherit; }
.field .help { font-size: 0.78rem; color: var(--text-faint); margin-top: 4px; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
}
.checkbox input { margin-top: 3px; accent-color: var(--accent); }

/* Contact layout */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-8);
}
@media (max-width: 1024px) { .contact-split { grid-template-columns: 1fr; } }
.contact-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
}
.contact-info h3 { margin-bottom: var(--sp-4); }
.contact-info__item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__item .ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: rgba(45,196,221,0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info__item strong { display: block; color: var(--text); margin-bottom: 2px; }
.contact-info__item .val { color: var(--text-muted); font-size: 0.95rem; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
}
.contact-form h3 { margin-bottom: var(--sp-5); }

/* ===================== FAQ ===================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  margin-bottom: var(--sp-3);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: var(--sp-5) var(--sp-6);
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--surface-2); }
.faq-item__body {
  padding: 0 var(--sp-6) var(--sp-5);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===================== BOOKING WIZARD ===================== */
.booking-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--sp-7);
  align-items: flex-start;
}
@media (max-width: 1024px) { .booking-wrap { grid-template-columns: 1fr; } }

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-5);
}
.step-indicator__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex: 1;
  position: relative;
  color: var(--text-faint);
  font-size: 0.88rem;
  font-weight: 500;
}
.step-indicator__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%; right: -8px;
  width: 12px; height: 1px;
  background: var(--border);
}
.step-indicator__num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}
.step-indicator__item.is-active { color: var(--text); }
.step-indicator__item.is-active .step-indicator__num {
  background: var(--accent);
  color: #04181C;
  border-color: var(--accent);
}
.step-indicator__item.is-done { color: var(--text-muted); }
.step-indicator__item.is-done .step-indicator__num {
  background: rgba(45,196,221,0.18);
  border-color: var(--accent-deep);
  color: var(--accent);
}
@media (max-width: 720px) {
  .step-indicator__item span:not(.step-indicator__num) { display: none; }
}

.step-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  display: none;
}
.step-panel.is-active { display: block; }
.step-panel h2 { font-size: 1.6rem; margin-bottom: var(--sp-2); }
.step-panel > p.lead { color: var(--text-muted); margin-bottom: var(--sp-6); }

.step-actions {
  display: flex;
  justify-content: space-between;
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}

/* Selectable cards (service / size / time slot) */
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
@media (max-width: 720px) { .option-grid { grid-template-columns: 1fr; } }
.option-card {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  cursor: pointer;
  transition: all .2s ease;
  position: relative;
}
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card:hover { border-color: var(--accent-deep); }
.option-card.is-selected,
.option-card input:checked ~ .option-card,
.option-card:has(input:checked) {
  border-color: var(--accent);
  background: rgba(45,196,221,0.06);
}
.option-card__title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  gap: var(--sp-3);
}
.option-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Calendar */
.calendar {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-5);
}
.calendar__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-4);
}
.calendar__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.calendar__nav {
  display: flex;
  gap: 6px;
}
.calendar__nav button {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
}
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.calendar__dow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  padding: 6px 0;
}
.calendar__day {
  padding: 10px 0;
  border-radius: var(--r-sm);
  background: transparent;
  border: 1px solid transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.92rem;
  transition: all .15s ease;
}
.calendar__day:hover { background: var(--surface); }
.calendar__day.is-closed { color: var(--text-faint); cursor: not-allowed; opacity: 0.4; }
.calendar__day.is-closed:hover { background: transparent; }
.calendar__day.is-past { color: var(--text-faint); cursor: not-allowed; opacity: 0.3; }
.calendar__day.is-past:hover { background: transparent; }
.calendar__day.is-today { color: var(--accent); font-weight: 600; }
.calendar__day.is-selected {
  background: var(--accent);
  color: #04181C;
  font-weight: 600;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}
@media (max-width: 720px) { .slot-grid { grid-template-columns: repeat(3, 1fr); } }
.slot {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 0;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  cursor: pointer;
  text-align: center;
}
.slot:hover { border-color: var(--accent-deep); }
.slot.is-selected {
  background: var(--accent);
  color: #04181C;
  border-color: var(--accent);
  font-weight: 600;
}

/* Booking summary sidebar */
.booking-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-4));
}
.booking-summary h3 { margin-bottom: var(--sp-4); }
.booking-summary__row {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.94rem;
}
.booking-summary__row span:first-child { color: var(--text-muted); }
.booking-summary__row span:last-child { color: var(--text); font-weight: 500; }
.booking-summary__row--empty span:last-child { color: var(--text-faint); font-style: italic; font-weight: 400; }
.booking-summary__total {
  display: flex;
  justify-content: space-between;
  padding-top: var(--sp-4);
  margin-top: var(--sp-3);
  border-top: 1px solid var(--border);
  font-size: 1.1rem;
}
.booking-summary__total .lbl { color: var(--text-muted); }
.booking-summary__total .val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
}
.booking-summary__deposit {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(45,196,221,0.08);
  border-radius: var(--r-md);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.booking-summary__deposit strong { color: var(--accent); }

/* ===================== BLOG ===================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px)  { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); border-color: var(--accent-deep); }
.blog-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: var(--sp-5); flex-grow: 1; display: flex; flex-direction: column; }
.blog-card__meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--sp-3);
}
.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--sp-3);
}
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 0.92rem; flex-grow: 1; margin-bottom: var(--sp-4); }
.blog-card__more { font-size: 0.88rem; font-weight: 600; }

.article {
  max-width: 760px;
  margin: 0 auto;
}
.article__meta {
  display: flex;
  gap: var(--sp-4);
  font-size: 0.85rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--sp-4);
}
.article__title { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: var(--sp-5); }
.article__hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-7);
}
.article__body {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
}
.article__body p, .article__body ul { margin-bottom: var(--sp-4); }
.article__body h2 { margin-top: var(--sp-7); margin-bottom: var(--sp-4); }

/* ===================== ACCOUNT / AUTH ===================== */
.auth-wrap {
  max-width: 460px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
}
.auth-wrap h2 { text-align: center; margin-bottom: var(--sp-2); }
.auth-wrap .sub { text-align: center; margin-bottom: var(--sp-6); }
.auth-foot {
  text-align: center;
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-6);
}
@media (max-width: 1024px) { .dashboard-grid { grid-template-columns: 1fr; } }
.dashboard-side {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}
.dashboard-side__user {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-4);
}
.dashboard-side__user .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #04181C;
  font-weight: 600;
}
.dashboard-side__user strong { display: block; color: var(--text); }
.dashboard-side__user span { font-size: 0.82rem; color: var(--text-faint); }
.dashboard-side ul { list-style: none; padding: 0; margin: 0; }
.dashboard-side li a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 10px 12px;
  border-radius: var(--r-md);
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: all .15s ease;
}
.dashboard-side li a:hover { background: var(--bg-elevated); color: var(--text); }
.dashboard-side li a.is-active { background: rgba(45,196,221,0.08); color: var(--accent); }
.dashboard-side li a.is-active svg { color: var(--accent); }

.tile-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
@media (max-width: 720px) { .tile-row { grid-template-columns: 1fr; } }
.tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}
.tile__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  margin-bottom: var(--sp-2);
}
.tile__value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
}
.tile__sub { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.data-table th, .data-table td {
  text-align: left;
  padding: var(--sp-3) var(--sp-4);
  font-size: 0.92rem;
}
.data-table thead {
  background: var(--bg-elevated);
}
.data-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  font-weight: 500;
}
.data-table tbody tr {
  border-top: 1px solid var(--border);
}
.data-table tbody tr:hover { background: var(--bg-elevated); }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge--success { background: rgba(74, 222, 128, 0.14); color: var(--success); }
.badge--warning { background: rgba(251, 191, 36, 0.14); color: var(--warning); }
.badge--info    { background: rgba(45, 196, 221, 0.14); color: var(--accent); }
.badge--muted   { background: var(--bg-elevated); color: var(--text-muted); }

/* ===================== REVIEW MARQUEE (site-wide bottom strip) ===================== */
.review-marquee {
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg));
  border-top: 1px solid var(--border);
  padding: var(--sp-7) 0 var(--sp-6);
  overflow: hidden;
  position: relative;
}
.review-marquee__head {
  text-align: center;
  margin-bottom: var(--sp-5);
  padding: 0 var(--sp-5);
}
.review-marquee__head .eyebrow { margin-bottom: var(--sp-2); }
.review-marquee__head h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 var(--sp-2);
}
.review-marquee__head__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}
.review-marquee__head__count {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 6px;
}

/* Fade-out edges so cards slide in/out gracefully */
.review-marquee__viewport {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.review-marquee__track {
  display: flex;
  gap: var(--sp-4);
  width: max-content;
  animation: scrollReviews 60s linear infinite;
}
.review-marquee:hover .review-marquee__track {
  animation-play-state: paused;
}
@keyframes scrollReviews {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.review-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-2);
}
.review-card__stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.review-card__source--google   { background: rgba(66,133,244,0.15);  color: #4285F4; border: 1px solid rgba(66,133,244,0.3); }
.review-card__source--facebook { background: rgba(24,119,242,0.15);  color: #4D8FF3; border: 1px solid rgba(24,119,242,0.3); }
.review-card__source--yelp     { background: rgba(211,35,35,0.12);   color: #FF6B6B; border: 1px solid rgba(211,35,35,0.3); }
.review-card__source--direct   { background: rgba(45,196,221,0.12);  color: var(--accent); border: 1px solid rgba(45,196,221,0.3); }
.review-card__source--other    { background: var(--bg-elevated); color: var(--text-muted); border: 1px solid var(--border); }

.review-card__body {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
  flex-grow: 1;
  /* Clamp to ~4 lines so cards stay uniform */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
}
.review-card__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #04181C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.review-card__name { color: var(--text); font-weight: 600; }
.review-card__loc { color: var(--text-faint); font-size: 0.75rem; }

.review-marquee__cta {
  text-align: center;
  margin-top: var(--sp-5);
}
.review-marquee__cta a {
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .review-card { width: 280px; }
  .review-marquee__track { animation-duration: 45s; }
}

/* ===================== REVIEWS PAGE — full grid layout ===================== */
.reviews-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-6);
  align-items: center;
  margin-bottom: var(--sp-6);
}
.reviews-summary__big {
  text-align: center;
}
.reviews-summary__big strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--text);
}
.reviews-summary__big .stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-top: 6px;
  display: block;
}
.reviews-summary__big small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-top: 8px;
}
.reviews-summary__sources {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.reviews-summary__source {
  text-align: center;
}
.reviews-summary__source strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  display: block;
  line-height: 1;
}
.reviews-summary__source small {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.reviews-filters {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}
.reviews-filters a {
  padding: 8px 18px;
  border-radius: var(--r-full);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
}
.reviews-filters a.is-active {
  background: var(--accent);
  color: #04181C;
  border-color: var(--accent);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px)  { .reviews-grid { grid-template-columns: 1fr; } .reviews-summary { grid-template-columns: 1fr; text-align: center; } }
.reviews-grid .review-card { width: auto; }
.reviews-grid .review-card__body { -webkit-line-clamp: unset; display: block; overflow: visible; }

/* ===================== VOUCHER ===================== */
.voucher-preview {
  background: linear-gradient(135deg, #0E1B1F, #0A1316);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.voucher-preview::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  z-index: -1;
}
.voucher-preview__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.voucher-preview__brand img { height: 40px; }
.voucher-preview__brand strong { font-family: var(--font-display); color: var(--text); }
.voucher-preview__amount {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.voucher-preview__label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-bottom: var(--sp-2);
}
.voucher-preview__code {
  font-family: 'Consolas', 'Monaco', monospace;
  color: var(--text);
  letter-spacing: 0.18em;
  background: rgba(0,0,0,0.3);
  padding: 10px 14px;
  border-radius: var(--r-sm);
  display: inline-block;
  margin-top: var(--sp-4);
}

/* ===================== ADMIN ===================== */
.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-side {
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  padding: var(--sp-5);
  position: sticky; top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-side__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
}
.admin-side__brand img { height: 32px; }
.admin-side__brand strong { font-family: var(--font-display); color: var(--text); font-size: 0.95rem; }
.admin-side__brand span { font-size: 0.7rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.16em; }
.admin-side ul { list-style: none; padding: 0; margin: 0; }
.admin-side li a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.admin-side li a:hover { background: var(--surface); color: var(--text); }
.admin-side li a.is-active { background: rgba(45,196,221,0.1); color: var(--accent); }
.admin-side__section {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  margin: var(--sp-5) 0 var(--sp-2);
  padding: 0 12px;
}
.admin-main {
  padding: var(--sp-6) var(--sp-7);
}
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-6);
}
.admin-topbar h1 { margin: 0; font-size: 1.8rem; }

@media (max-width: 1024px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { position: static; height: auto; }
}
