/* Brand colors — all computed at build time, no color-mix() needed */
:root {
  --primary:       #7d4f6d;
  --primary-dark:  #623e55;
  --primary-darker:#4b2f41;
  --primary-light: #efeaed;
  --accent:        #eec5d8;
  --accent-dark:   #ba9aa8;
  /* Guaranteed-readable text colors for sections that use --primary as a background */
  --on-primary:        #ffffff;
  --on-primary-soft:   #c5b0bd;
  --on-primary-border: #946f87;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.14);

  /* ── Bold redesign additions (static — no builder.js placeholders needed) ── */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 96px;
  --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-brand-dark: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-dark) 100%);
  --shadow-glow: 0 0 0 4px rgba(255,255,255,.08), 0 12px 40px rgba(0,0,0,.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── UTILS ─────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: var(--space-xl) 0; scroll-margin-top: 80px; }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-dark); margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(30px, 4.5vw, 46px); font-weight: 900; margin-bottom: 16px; letter-spacing: -.02em; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 17px; }

/* Inline SVG icon — sized to text by default, override per-context */
.icon { width: 1em; height: 1em; flex-shrink: 0; }

/* Visually hidden but available to assistive tech */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 1200;
  background: var(--primary); color: var(--on-primary);
  padding: 12px 20px; border-radius: 8px; font-weight: 700;
  text-decoration: none; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 999px; font-weight: 700;
  font-size: 15px; text-decoration: none; border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn .icon { width: 18px; height: 18px; }
.btn-primary {
  background: var(--primary); color: var(--on-primary); border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--on-primary); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-accent {
  background: var(--accent); color: var(--on-primary); border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-large { padding: 20px 40px; font-size: 17px; }
.btn-glow { animation: pulseGlow 2.4s ease-in-out infinite; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,.18), var(--shadow); }
  50% { box-shadow: 0 0 0 14px rgba(0,0,0,0), var(--shadow-lg); }
}

/* ─── ANNOUNCE BAR ─────────────────────────────────── */
.announce-bar {
  position: relative; z-index: 1001; background: var(--gradient-brand);
  color: var(--on-primary); text-align: center; padding: 8px 16px;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
}
.announce-bar:has(.announce-bar-text:empty) { display: none; }
.announce-bar .rating-num { margin-right: 6px; }
.announce-bar .rating-detail { font-weight: 500; opacity: .9; }

/* ─── NAV ─────────────────────────────────── */
.nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; color: var(--text); text-decoration: none;
}
.logo-img { height: 36px; width: auto; object-fit: contain; }
.logo-text { display: none; }
.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 14px;
  font-weight: 600; transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--gradient-brand) !important; color: var(--on-primary) !important;
  padding: 12px 24px; border-radius: 999px; font-weight: 800 !important;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); filter: brightness(1.08); }
.nav-call {
  display: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: var(--on-primary); text-decoration: none;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-call .icon { width: 18px; height: 18px; }

/* ─── HAMBURGER ICON (animates to an X when open) ─── */
.nav-burger {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer;
  padding: 0;
}
.nav-burger span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--text); transition: transform .3s ease, opacity .2s ease;
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV MENU ─── */
.nav-mobile {
  display: flex; flex-direction: column; padding: 0 24px;
  max-height: 0; opacity: 0; overflow: hidden;
  background: #fff; border-top: 0 solid transparent;
  transition: max-height .35s ease, opacity .25s ease, padding .35s ease, border-color .35s ease;
}
.nav-mobile.open {
  max-height: 320px; opacity: 1; padding: 8px 24px 20px;
  border-top: 1px solid #f0f0f0;
}
.nav-mobile a {
  padding: 14px 16px; color: var(--text); text-decoration: none; font-weight: 700;
  border-radius: 10px; display: flex; align-items: center; justify-content: space-between;
  transition: background .2s, color .2s, transform .3s ease, opacity .25s ease;
  opacity: 0; transform: translateY(-6px);
}
.nav-mobile a::after {
  content: '›'; font-weight: 400; opacity: .4; transition: transform .2s;
}
.nav-mobile a:hover { background: var(--bg-alt); color: var(--primary); }
.nav-mobile a:hover::after { transform: translateX(3px); }
.nav-mobile.open a { opacity: 1; transform: translateY(0); }
.nav-mobile.open a:nth-child(1) { transition-delay: .05s; }
.nav-mobile.open a:nth-child(2) { transition-delay: .1s; }
.nav-mobile.open a:nth-child(3) { transition-delay: .15s; }
.nav-mobile.open a:nth-child(4) { transition-delay: .2s; }

/* ─── HERO ─────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 24px 60px;
  color: #fff;
  /* Bolder fallback gradient blending primary into accent */
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 45%, var(--accent-dark) 100%);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  /* Bolder layered dark gradient for stronger text contrast over any photo */
  background: linear-gradient(135deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.3) 55%, rgba(0,0,0,.6) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; min-width: 0; }
.hero-title {
  font-size: clamp(40px, 7vw, 84px); font-weight: 900; line-height: 1.05;
  margin-bottom: 20px; letter-spacing: -.03em;
}
.hero-sub {
  font-size: clamp(17px, 2.6vw, 23px); opacity: .92;
  margin-bottom: 36px; font-weight: 400; max-width: 620px; margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.hero-scroll span {
  display: block; width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,.6); border-bottom: 2px solid rgba(255,255,255,.6);
  transform: rotate(45deg);
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ─── TRUST BADGES ─────────────────────────────────── */
.trust-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.trust-badges:empty { display: none; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
  padding: 8px 16px; font-size: 13px; font-weight: 600; color: #fff;
}

/* ─── STATS ─────────────────────────────────── */
.stats {
  position: relative; overflow: hidden;
  background: var(--gradient-brand-dark);
  color: var(--on-primary); padding: 56px 0;
}
.stats::before {
  content: ''; position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image: radial-gradient(circle, var(--on-primary) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: center; padding: 20px; border-right: 1px solid var(--on-primary-border); }
.stat:last-child { border-right: none; }
.stat-num { font-size: clamp(30px, 4.5vw, 48px); font-weight: 900; line-height: 1; margin-bottom: 8px; }
.stat:first-child .stat-num { text-shadow: 0 0 24px var(--accent); }
.stat-label { font-size: 13px; color: var(--on-primary-soft); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }

/* ─── SERVICES ─────────────────────────────────── */
.services { background: var(--bg-alt); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px;
}
.service-card {
  background: var(--bg-alt); padding: 40px 28px; border-radius: var(--radius);
  box-shadow: var(--shadow); text-align: left;
  border-top: 4px solid var(--accent);
  transition: transform .3s, box-shadow .3s, border-color .3s, background .3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-top-color: var(--primary); background: #fff; }
.service-card h3::before {
  content: ''; display: block; width: 32px; height: 4px; border-radius: 2px;
  background: var(--gradient-brand); margin-bottom: 16px;
}
.service-card h3 { font-size: 17px; font-weight: 800; }
.services-empty {
  text-align: center; color: var(--text-muted); font-size: 16px; padding: 24px;
}
.services-cta { text-align: center; margin-top: 40px; font-size: 16px; }
.services-cta a { color: var(--primary); font-weight: 800; text-decoration: none; }
.services-cta a:hover { text-decoration: underline; }

/* ─── NEWS / UPDATES ────────────────────────── */
/* Hidden until js/main.js finds at least one published post — an empty
   "news" section with no real content looks worse than no section at all. */
.news { display: none; }
.news.has-posts { display: block; }
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.news-card {
  background: var(--bg-alt); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column;
  border-top: 4px solid var(--accent);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-top-color: var(--primary); }
.news-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.news-card-body { padding: 24px 28px; }
.news-card-date {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--text-muted); margin-bottom: 8px;
}
.news-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.news-card p {
  color: var(--text-muted); font-size: 15px; line-height: 1.6; white-space: pre-wrap;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}

/* ─── ABOUT ─────────────────────────────────── */
.about { background: var(--bg); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.about-image img { width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; display: block; }
.about-image--fallback {
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand);
}
.about-image--fallback::after {
  content: '✦';
  font-size: 64px; color: var(--on-primary-soft);
}
.about-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--accent); color: var(--on-primary); padding: 14px 24px;
  border-radius: 999px; font-weight: 800; font-size: 14px; box-shadow: var(--shadow-lg);
}
.about-text h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; margin-bottom: 20px; letter-spacing: -.02em; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 16px; }
.about-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.about-checklist li { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
.about-checklist .icon { width: 18px; height: 18px; color: var(--accent-dark); flex-shrink: 0; }
.about-contact { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 12px; font-size: 15px; overflow-wrap: anywhere; }
.contact-item a { color: var(--primary); text-decoration: none; font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }
.contact-icon { font-size: 18px; flex-shrink: 0; }
.contact-item--hours { align-items: flex-start; }

/* ─── OPENING HOURS ───────────────────────────── */
.hours-table { display: flex; flex-direction: column; gap: 4px; font-size: 14px; }
.hours-row { display: flex; gap: 16px; justify-content: space-between; }
.hours-day { color: var(--text); font-weight: 600; }
.hours-time { color: var(--text-muted); }
.contact-detail-hours { display: flex; gap: 10px; align-items: flex-start; }
.contact-detail-hours .hours-table { font-size: 15px; }
.contact-detail-hours .hours-day { color: var(--text-muted); font-weight: 500; }
.contact-detail-hours .hours-time { color: var(--text); font-weight: 600; }

/* ─── REVIEWS ─────────────────────────────────── */
.reviews { background: var(--gradient-brand-dark); color: var(--on-primary); }
.reviews .section-header h2 { color: var(--on-primary); }
.reviews .section-tag { color: var(--on-primary-soft); }
/* No real reviews at all — collapse the whole section rather than showing
   an empty gradient band with just a heading. */
.reviews:has(.review-track:empty) { display: none; }
.rating-hero { text-align: center; margin-bottom: 40px; }
.rating-hero:empty { display: none; margin: 0; }
.rating-hero .rating-num {
  display: block; font-size: clamp(40px, 7vw, 64px); font-weight: 900; line-height: 1;
  text-shadow: 0 0 32px rgba(255,255,255,.35); margin-bottom: 8px;
}
.rating-hero .rating-detail { font-size: 15px; font-weight: 600; color: var(--on-primary-soft); }

/* ─── REVIEW CAROUSEL ─────────────────────────── */
.review-carousel { display: flex; align-items: center; gap: 12px; }
.review-viewport {
  flex: 1; min-width: 0; overflow: hidden; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}
.review-track { display: flex; gap: 24px; transition: transform .5s ease; }
/* Fewer reviews than fit in one view (e.g. 1-2 on desktop) — center them
   instead of leaving them stuck against the left edge. */
.review-track.review-track--centered { justify-content: center; }
.review-arrow {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--on-primary-border); border: 1px solid var(--on-primary-border);
  color: var(--on-primary); cursor: pointer; transition: background .2s, transform .2s;
}
.review-arrow .icon { width: 20px; height: 20px; }
.review-arrow:hover { background: rgba(255,255,255,.25); }
.review-arrow:active { transform: scale(.92); }
.review-arrow[hidden] { display: none; }
.review-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.review-dots[hidden] { display: none; }
.review-dot {
  width: 10px; height: 10px; padding: 0; border-radius: 50%; border: none;
  background: var(--on-primary-border); cursor: pointer; transition: background .2s, transform .2s;
}
.review-dot:hover { background: rgba(255,255,255,.5); }
.review-dot.active { background: var(--on-primary); transform: scale(1.3); }
.review-card {
  flex: 0 0 calc((100% - 48px) / 3); min-width: 260px;
  display: flex; flex-direction: column; text-align: left;
  background: var(--on-primary-border); backdrop-filter: blur(8px);
  border: 1px solid var(--on-primary-border); border-radius: var(--radius);
  padding: 32px 28px;
}
.stars { font-size: 18px; letter-spacing: 3px; margin-bottom: 16px; color: #ffd700; }
blockquote {
  font-size: 15px; font-style: italic;
  line-height: 1.7; margin-bottom: 24px; opacity: .95; flex-grow: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-brand); color: var(--on-primary);
  font-weight: 800; font-size: 16px;
}
cite { font-size: 14px; color: var(--on-primary); font-style: normal; font-weight: 700; }

@media (max-width: 900px) {
  .review-card { flex: 0 0 calc((100% - 24px) / 2); }
}

/* ─── CONTACT ─────────────────────────────────── */
.contact { background: var(--bg-alt); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 900; margin-bottom: 16px; letter-spacing: -.02em; }
.contact-info p { color: var(--text-muted); margin-bottom: 28px; }
.contact-details { margin: 28px 0; color: var(--text-muted); display: flex; flex-direction: column; gap: 10px; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.social-link {
  padding: 8px 16px; border-radius: 999px; background: var(--primary-light);
  color: var(--primary); text-decoration: none; font-size: 13px; font-weight: 700;
  text-transform: capitalize; transition: background .2s;
}
.social-link:hover { background: var(--primary); color: #fff; }

.contact-form {
  background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
}
.contact-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; margin-bottom: 16px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-family: inherit; font-size: 15px; transition: border .2s;
  background: #f9fafb;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--primary); background: #fff;
}
.contact-form input:focus-visible, .contact-form textarea:focus-visible {
  outline: 2px solid var(--primary); outline-offset: 2px;
}
.contact-form .btn { width: 100%; justify-content: center; }
.form-note {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  text-align: center; font-size: 13px; font-weight: 700; color: var(--accent-dark); margin-top: 12px;
}
.form-note .icon { width: 16px; height: 16px; }

/* ─── CTA BANNER ─────────────────────────────────── */
.cta-banner {
  background-image: linear-gradient(rgba(10,10,10,.65), rgba(10,10,10,.55)), url('../assets/hero.jpg'), var(--gradient-brand-dark);
  background-size: cover; background-position: center;
  color: #fff; padding: var(--space-lg) 0; text-align: center;
}
@media (min-width: 769px) {
  .cta-banner { background-attachment: fixed; }
}
.cta-banner-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-banner h2 { font-size: clamp(28px, 4.5vw, 44px); font-weight: 900; letter-spacing: -.02em; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 8px; }
.cta-banner .btn-accent {
  background: #fff; color: var(--primary-dark); border-color: #fff;
}
.cta-banner .btn-accent:hover { background: var(--on-primary-border); }

/* ─── FOOTER ─────────────────────────────────── */
.footer { background: #111; color: #fff; padding: 60px 0 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: start; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-inner strong { font-size: 18px; font-weight: 700; display: block; margin-bottom: 8px; }
.footer-inner p { color: rgba(255,255,255,.5); font-size: 14px; margin-bottom: 4px; overflow-wrap: anywhere; }
.footer-inner a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; overflow-wrap: anywhere; transition: color .2s; }
.footer-inner a:hover { color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-map-col { flex: 1 1 280px; max-width: 360px; }
.footer-map { border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; }
.footer-map iframe { width: 100%; height: 100%; }
.footer-copy { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 24px; text-align: center; }
.footer-copy p { color: rgba(255,255,255,.4); font-size: 12px; }

/* ─── STICKY MOBILE CTA BAR ─────────────────────────────────── */
.sticky-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1100;
  gap: 8px; padding: 10px 12px; background: #fff;
  box-shadow: 0 -4px 24px rgba(0,0,0,.12);
  border-top: 1px solid rgba(0,0,0,.06);
}
.sticky-cta-bar.hidden { transform: translateY(100%); transition: transform .3s ease; }
.sticky-cta-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px; border-radius: 999px; font-weight: 800; font-size: 14px;
  text-decoration: none; border: 2px solid transparent;
}
.sticky-cta-btn--primary { background: var(--gradient-brand); color: var(--on-primary); }
.sticky-cta-btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.sticky-cta-btn .icon { width: 16px; height: 16px; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-call { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--on-primary-border); }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; white-space: normal; }
  .section { padding: 64px 0; }
  .sticky-cta-bar { display: flex; }
  body { padding-bottom: 84px; }
  .announce-bar-text { font-size: 12px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .about-inner, .contact-inner { gap: 28px; }
  .stat { padding: 16px 10px; }
  .stat-num { font-size: clamp(24px, 7vw, 34px); }
  .review-card { padding: 32px 24px; flex: 0 0 85%; min-width: 0; }
  .review-carousel { gap: 6px; }
  .review-arrow { width: 36px; height: 36px; }
  .review-arrow .icon { width: 16px; height: 16px; }
  .hero-title { letter-spacing: -.01em; }
  .trust-badge { font-size: 12px; padding: 6px 12px; }
  .cta-banner .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); }
  .service-card { padding: 28px 16px; }
  .review-card { padding: 28px 18px; }
  .contact-form { padding: 24px 16px; }
  .nav-inner { height: 64px; }
  .hero { padding: 88px 18px 50px; }
  .announce-bar { padding: 6px 12px; font-size: 11px; }
  .btn { white-space: normal; text-align: center; }
}

/* ─── REDUCED MOTION ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-scroll { display: none; }
}
