:root {
  --primary: #f8275e;
  --primary-hover: #d91f50;
  --primary-soft: rgba(248, 39, 94, 0.1);
  --cta: #f82b60;
  --cta-text: #ffffff;
  --foreground: #141820;
  --muted: #5c6470;
  --muted-bg: #eef1f4;
  --border: #e2e6eb;
  --card: #ffffff;
  --bg: #f3f4f6;
  --header: #ffffff;
  --footer: #0b1220;
  --nav: #141820;
  --nav-hover: #f8275e;
  --radius: 0.75rem;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 12px 32px rgba(15, 23, 42, 0.1);
  --container: 1200px;
  --font: Inter, ui-sans-serif, system-ui, sans-serif;
  --header-h: 4.25rem;
  --bar-h: 4.75rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html, body {
  height: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--foreground);
  line-height: 1.7;
  min-height: 100vh;
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
  -webkit-tap-highlight-color: transparent;
}

body.menu-open { overflow: hidden; }
body.menu-open .mobile-bar { display: none; }

img, svg, video { max-width: 100%; }
img { height: auto; display: block; }
iframe {
  border: 0;
  max-width: 100%;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4, p {
  margin: 0;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  max-width: 100%;
}
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }
ul { margin: 0; padding: 0; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0.4rem;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
}
.container {
  width: 100%;
  max-width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 1rem;
}
.main { flex: 1; max-width: 100%; overflow: visible; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
  max-width: 100%;
  background: var(--header);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.header.is-scrolled { box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img {
  height: 2.75rem;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.nav { display: none; align-items: center; gap: 1.15rem; margin-left: auto; }
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--nav);
  padding: 0.35rem 0;
  transition: color .15s ease;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--nav-hover); }
.header-cta { display: none; align-items: center; gap: 1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0.5rem;
  min-height: 44px;
  padding: 0 1.1rem;
  transition: background-color .15s ease, opacity .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.btn-cta {
  background: var(--cta);
  color: var(--cta-text);
}
.btn-cta:hover { background: var(--primary-hover); }
.btn-white {
  background: #fff;
  color: var(--primary);
  padding: 0 1.6rem;
}
.btn-white:hover { opacity: .92; }
.btn-outline {
  background: #fff;
  color: var(--foreground);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.menu-toggle {
  position: relative;
  width: auto;
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-left: auto;
  padding: 0 0.7rem;
  background: #fff;
  border: 1px solid #cfc9d8;
  border-radius: 0.5rem;
  color: #1e1b2e;
  flex-shrink: 0;
  z-index: 2;
}
.menu-toggle-label {
  font-size: 0.8rem;
  font-weight: 600;
}
.menu-toggle-icon {
  position: relative;
  width: 18px;
  height: 14px;
  display: inline-block;
}
.menu-toggle-bar {
  position: absolute;
  left: 0;
  display: block;
  width: 18px;
  height: 2px;
  background: #1e1b2e;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle-bar:nth-child(1) { top: 0; }
.menu-toggle-bar:nth-child(2) { top: 6px; }
.menu-toggle-bar:nth-child(3) { top: 12px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) { top: 6px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 70;
}
.nav-overlay.open { display: block; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.35rem 1rem 1.25rem;
  background: var(--header);
  border-top: 1px solid var(--border);
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.85rem 0.15rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-nav a[aria-current="page"] { color: var(--nav-hover); }
.mobile-nav .btn-cta {
  margin-top: 0.85rem;
  width: 100%;
  border-bottom: 0;
  justify-content: center;
}

/* Heroes */
.hero-home {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
  min-height: auto;
  padding: 1.75rem 0 3.75rem;
  background: #111 url("../images/hero-home.jpg") center / cover no-repeat;
  color: #fff;
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.42) 55%, rgba(0,0,0,.28) 100%);
}
.hero-home::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3.25rem;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}
.hero-home .container { position: relative; z-index: 2; }
.hero-home h1 {
  font-size: clamp(1.65rem, 6.5vw, 2.15rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.7rem;
  max-width: 18ch;
}
.hero-home .lead {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,.9);
  margin-bottom: 0;
  max-width: 34rem;
}

.widget-card {
  width: 100%;
  max-width: min(36rem, 100%);
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  color: var(--foreground);
}
.widget-slot,
.inline-widget,
#s4s-booking-widget {
  width: 100%;
  max-width: 100%;
  min-height: 220px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.widget-slot { padding: 0.35rem; }
.inline-widget { min-height: 240px; }
.inline-widget.tall { min-height: 280px; }
#s4s-booking-widget iframe,
.widget-slot iframe,
.inline-widget iframe { max-width: 100%; }

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  min-height: 220px;
  padding: 3.25rem 0 2.85rem;
}
.page-hero .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 18, .48);
}
.page-hero .container { position: relative; z-index: 2; padding-inline: 1.25rem; }
.page-hero h1,
.page-hero .hero-title {
  font-size: clamp(1.7rem, 6.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.page-hero .lead {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
  margin: 0 auto 1.25rem;
  max-width: min(36rem, 100%);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Sections */
.section { padding: 3.25rem 0; }
.section-muted { background: #f7f8fa; }
.section-card { background: var(--card); }
.eyebrow {
  display: block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.center {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}
.center h1.h2,
.center h2,
.center .h2 {
  font-size: clamp(1.5rem, 4.2vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--foreground);
  margin-bottom: 0.8rem;
  line-height: 1.28;
}
.center p { color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.section-muted .center h2,
.section-muted .center .h2 { color: var(--foreground); }

.grid-3, .grid-2, .grid-gallery, .grid-contact, .grid-find, .grid-steps, .grid-services {
  display: grid;
  gap: 1.15rem;
  width: 100%;
}
.grid-3 > *,
.grid-2 > *,
.grid-gallery > *,
.grid-contact > *,
.grid-find > * { min-width: 0; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.05rem;
  padding: 1.7rem 1.55rem 1.75rem;
  box-shadow: none;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.icon-box {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.icon-box svg { width: 1.35rem; height: 1.35rem; }
.card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
  color: var(--foreground);
}
.card p, .muted { color: var(--muted); font-size: 0.98rem; line-height: 1.7; }

.feature-row { display: flex; gap: 1rem; align-items: flex-start; }
.feature-row .icon-box { margin-bottom: 0; }
.feature-row h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }

.prose { max-width: 48rem; }
.prose h1 {
  font-size: clamp(1.6rem, 5vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.prose h2, .prose h3 {
  font-weight: 700;
  margin: 1.1rem 0 0.5rem;
  color: var(--foreground);
  line-height: 1.25;
}
.prose h2 { font-size: clamp(1.35rem, 4vw, 1.85rem); }
.prose h3 { font-size: 1.25rem; }
.prose p { margin-bottom: 1rem; line-height: 1.75; }
.prose ul { list-style: disc; padding-left: 1.2rem; margin: 0.75rem 0 1.25rem; }
.prose li { margin: 0.35rem 0; color: var(--muted); }
.prose li strong { color: var(--foreground); }

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.6rem 1.55rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.05rem;
  box-shadow: none;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  color: var(--foreground);
}
.service-card .more {
  margin-top: auto;
  padding-top: 1.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
}
.service-card .icon-box {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 0.75rem;
  margin-bottom: 1.15rem;
  transition: background .25s, color .25s, transform .25s;
}
.service-card .icon-box svg { width: 1.6rem; height: 1.6rem; }
.service-card h3 { font-size: 1.15rem; line-height: 1.35; margin-bottom: 0.7rem; }
.service-card p { color: var(--muted); font-size: 0.98rem; line-height: 1.7; }

.booking-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}
.booking-panel-head {
  padding: 1.4rem 1.4rem 0.5rem;
}
.booking-panel-head h2 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.45rem;
}
.booking-panel-head p { color: var(--muted); font-size: 0.98rem; line-height: 1.65; }
.booking-panel .inline-widget { padding: 0.5rem 0.75rem 1rem; min-height: 220px; }

.find-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.hours-list {
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hours-list strong { color: var(--foreground); font-weight: 600; min-width: 5.5rem; display: inline-block; }

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
}

/* Testimonials */
.quotes-grid {
  display: grid;
  gap: 1rem;
}
.quote-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.55rem 1.4rem 1.5rem;
  text-align: left;
  box-shadow: none;
}
.stars {
  display: flex;
  justify-content: flex-start;
  gap: 0.2rem;
  color: #f59e0b;
}
.stars svg { width: 1.05rem; height: 1.05rem; fill: currentColor; stroke: currentColor; }
.quote-card .quote {
  color: var(--foreground);
  font-size: 0.98rem;
  margin: 0.9rem 0 1.05rem;
  font-style: normal;
  line-height: 1.7;
}
.quote-card .name { font-size: 0.9rem; font-weight: 600; }
.quote-card .loc { font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }
.dots { display: none; }
.dots button {
  height: 10px;
  width: 10px;
  min-width: 28px;
  min-height: 28px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.dots button::after {
  content: "";
  position: absolute;
  inset: 9px auto 9px 9px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d4d4d8;
}
.dots button.active::after {
  width: 22px;
  background: var(--primary);
}

/* Find us */
.map-wrap {
  min-height: 240px;
  height: 240px;
  background: #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; }
.contact-lines { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-line { display: flex; gap: 0.85rem; align-items: flex-start; }
.contact-line .icon-box { width: 3rem; height: 3rem; border-radius: 0.75rem; }
.contact-line h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; }
.contact-line a,
.contact-line p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-break: normal;
}
.contact-line a:hover { color: var(--primary); }

a[href^="mailto:"],
a[href^="tel:"] { overflow-wrap: break-word; }

/* Steps */
.steps-wrap { position: relative; margin-top: 0.75rem; }
.steps-line { display: none; }
.steps { list-style: none; display: none; }
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-num {
  position: relative;
  z-index: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.step h3 { margin-top: 0.7rem; font-size: 0.92rem; font-weight: 600; }
.steps-mobile {
  list-style: none;
  position: relative;
  padding: 0.4rem 0 0.2rem;
}
.steps-mobile::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 1px;
  background: rgba(248,39,94,.3);
}
.steps-mobile li {
  position: relative;
  padding: 0.15rem 0 1.15rem 3.4rem;
  min-height: 2.6rem;
}
.steps-mobile li:last-child { padding-bottom: 0; }
.steps-mobile .step-num { position: absolute; left: 0; top: 0; }
.steps-mobile h3 { font-size: 1rem; font-weight: 600; }

/* FAQ */
.faq { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: #fff;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.15rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  min-height: 52px;
}
.faq-item button:hover { background: rgba(248, 39, 94, 0.05); }
.faq-item button svg { width: 1.15rem; height: 1.15rem; flex-shrink: 0; transition: transform .2s; }
.faq-item.open button svg { transform: rotate(180deg); }
.faq-body { display: none; padding: 0 1.2rem 1.25rem; color: var(--muted); font-size: 0.98rem; line-height: 1.75; }
.faq-item.open .faq-body { display: block; }
.faq-body p { margin-bottom: 0.7rem; }
.faq-body ul {
  list-style: disc;
  padding-left: 1.15rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem 1rem;
}

/* Footer */
.footer {
  background: var(--footer);
  color: #e2e8f0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
  padding: 2.25rem 0 1.5rem;
}
.footer h3 { color: #fff; font-size: 0.95rem; margin-bottom: 0.8rem; }
.footer p, .footer a, .footer li { color: #94a3b8; font-size: 0.9rem; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-brand img {
  height: 2.75rem;
  width: auto;
  margin-bottom: 0.7rem;
  background: #fff;
  border-radius: 0.4rem;
  padding: 0.15rem 0.35rem;
}
.footer-copy {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.1rem 0 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.78rem;
}
.footer-copy .created-by {
  color: #cbd5e1;
  font-weight: 600;
}
.footer-sister { margin-top: 1rem; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
}
.hero-copy {
  max-width: min(48rem, 100%);
  text-align: left;
  margin-right: auto;
}
.hero-home .widget-card {
  margin-right: auto;
}

.crumb-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.breadcrumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  align-items: center;
  padding: 0.65rem 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.55rem;
  color: #c4c0ce;
}
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs [aria-current="page"] { color: var(--foreground); font-weight: 600; }

.facts {
  position: relative;
  z-index: 4;
  margin-top: -2.75rem;
  padding: 0 0 0.5rem;
  background: transparent;
  border: 0;
}
.stats-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}
.stat {
  padding: 1.3rem 1.2rem 1.35rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.stat:nth-child(odd) { border-right: 1px solid var(--border); }
.stat:nth-child(n + 3) { border-bottom: 0; }
.stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--foreground);
  margin-bottom: 0.45rem;
}
.stat-label {
  display: block;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--muted);
}

.prose-block {
  max-width: 42rem;
  margin: 0 auto 2rem;
}
.prose-block h2 {
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}
.prose-block p { margin-bottom: 1rem; line-height: 1.75; color: var(--muted); }
.prose-block p strong { color: var(--foreground); }
.prose-block a { color: var(--primary); font-weight: 600; }
.prose-block a:hover { text-decoration: underline; }

.answer {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 0 0.85rem 0.85rem 0;
  padding: 1.15rem 1.2rem;
  margin-bottom: 1.5rem;
}
.answer p { margin: 0; color: var(--foreground); line-height: 1.7; }

.option-kicker {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem !important;
}
.option-card { padding-bottom: 1.85rem; }
.option-card h3 { margin-bottom: 0.65rem; line-height: 1.35; }

.areas-line {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}
.find-panel {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  overflow: hidden;
}
.find-panel .map-wrap {
  border-radius: 0;
  min-height: 260px;
  height: 260px;
}
.find-panel .find-body {
  padding: 1.35rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.find-body .contact-line { margin: 0; }

.cta-band {
  background: #0b1220;
  color: #fff;
  text-align: center;
  padding: 3.25rem 0;
}
.cta-band h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}
.cta-band p {
  color: #94a3b8;
  margin: 0 auto 1.35rem;
  max-width: 36rem;
}
.cta-band .hero-actions { justify-content: center; }

.center { max-width: 44rem; }

/* Mobile action bar */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.65rem;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
}
.mobile-bar.is-booking { display: none; }

@media (max-width: 639px) {
  .hero-home .lead,
  .page-hero .lead { font-size: 1rem; }
  .btn-white { width: min(100%, 16rem); }
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-gallery { grid-template-columns: 1fr 1fr; }
  .grid-contact { grid-template-columns: 1fr 1fr; }
  .grid-services { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-body ul { grid-template-columns: 1fr 1fr 1fr; }
  .page-hero { min-height: 0; padding: 4.25rem 0 3.5rem; }
}

@media (min-width: 768px) {
  :root { --header-h: 5rem; }
  body { padding-bottom: 0; }
  .mobile-bar { display: none; }
  .logo img { height: 3.5rem; max-width: 200px; }
  .section { padding: 4.5rem 0; }
  .center { margin-bottom: 2.75rem; }
  .card { padding: 1.5rem; }
  .hero-home {
    min-height: 26rem;
    padding: 3.5rem 0 6rem;
  }
  .facts { margin-top: -2.75rem; }
  .stats-board { grid-template-columns: repeat(4, 1fr); }
  .stat {
    text-align: center;
    padding: 1.5rem 1.15rem 1.55rem;
    border-bottom: 0;
    border-right: 1px solid var(--border);
  }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:last-child { border-right: 0; }
  .stat-value { font-size: 1.45rem; }
  .hero-split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .hero-copy {
    flex: 1 1 50%;
    max-width: 32rem;
  }
  .hero-home .widget-card {
    flex: 0 1 24rem;
    width: 100%;
    max-width: 24rem;
    margin-left: auto;
    margin-right: 0;
  }
  .hero-home h1 { font-size: 2.45rem; margin-bottom: 0.75rem; max-width: 14ch; }
  .hero-home .lead { font-size: 1.05rem; line-height: 1.65; margin-bottom: 0; }
  .hero-home::before {
    background: linear-gradient(90deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.28) 50%, rgba(0,0,0,.18) 100%);
  }
  .page-hero { min-height: 0; padding: 4.25rem 0 3.5rem; }
  .page-hero h1,
  .page-hero .hero-title { font-size: 2.65rem; max-width: 20ch; letter-spacing: -0.025em; }
  .page-hero .lead { font-size: 1.08rem; line-height: 1.65; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .quote-card { padding: 1.65rem 1.5rem; }
  .quote-card .quote { font-size: 1rem; line-height: 1.7; }
  .map-wrap { height: 320px; min-height: 320px; }
  .faq-item button { font-size: 1.02rem; padding: 1.2rem 1.3rem; }
  .faq-body { padding: 0 1.3rem 1.3rem; font-size: 1rem; line-height: 1.75; }
  .service-card { padding: 1.85rem 1.7rem 1.65rem; }
  .card { padding: 1.8rem 1.65rem 1.85rem; }
}

@media (min-width: 1024px) {
  :root { --header-h: 5rem; }
  .container { padding: 0 2rem; }
  .nav, .header-cta { display: flex; }
  .menu-toggle, .mobile-nav, .nav-overlay { display: none !important; }
  .hero-home { min-height: 30rem; padding: 4.25rem 0 6.5rem; }
  .hero-home h1 { font-size: 2.75rem; }
  .hero-split {
    gap: 2.25rem;
  }
  .hero-copy { max-width: 34rem; }
  .hero-home .widget-card {
    flex-basis: 25rem;
    max-width: 25rem;
  }
  .page-hero { min-height: 0; padding: 5rem 0 4rem; }
  .quotes-grid { grid-template-columns: 1fr 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-services { grid-template-columns: 1fr 1fr; }
  .grid-contact { grid-template-columns: 1fr 1fr 1fr; }
  .grid-gallery { grid-template-columns: 1fr 1fr 1fr; }
  .grid-find { grid-template-columns: 1.15fr 0.85fr; gap: 0; align-items: stretch; }
  .find-panel { grid-template-columns: 1.15fr 0.85fr; }
  .find-panel .map-wrap { height: 100%; min-height: 420px; }
  .find-panel .find-body { padding: 1.75rem 1.6rem; }
  .map-wrap { height: 100%; min-height: 400px; }
  .steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; }
  .steps-line {
    display: block;
    position: absolute;
    left: 4%;
    right: 4%;
    top: 1.25rem;
    height: 1px;
    background: rgba(248,39,94,.3);
  }
  .steps-mobile { display: none; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; padding: 3rem 0 2rem; }
  .service-card:hover {
    border-color: rgba(248,39,94,.5);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
  }
  .card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
  }
  .service-card:hover .icon-box {
    background: var(--primary);
    color: #fff;
    transform: scale(1.08);
  }
  .service-card:hover h3 { color: var(--primary); }
  .page-hero { min-height: 0; padding: 4.5rem 0; }
}

@media (min-width: 1280px) {
  .hero-home { min-height: 32rem; padding: 4.75rem 0 7rem; }
  .hero-home h1 { font-size: 2.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
