/* ================================================
   SWANSON CARPET & UPHOLSTERY CLEANING
   Coastal Teal · Cream · Navy · Muted Gold
   ================================================ */

:root {
  --teal:        #4A9B8E;
  --teal-light:  #6DB8AD;
  --teal-dark:   #2C6E64;
  --teal-bg:     #E8F5F3;
  --navy:        #1B3A4B;
  --navy-dark:   #112433;
  --cream:       #FAF7F2;
  --beige:       #F0EBE1;
  --beige-dark:  #E4DDD1;
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-pale:   #FBF4E2;
  --white:       #FFFFFF;
  --red-accent:  #C0392B;

  --text-dark:   #1A2B35;
  --text-med:    #4A5568;
  --text-light:  #4E5D6C;

  --shadow-sm:   0 1px 3px rgba(27,58,75,0.08), 0 1px 2px rgba(27,58,75,0.06);
  --shadow-md:   0 4px 16px rgba(27,58,75,0.10), 0 2px 6px rgba(27,58,75,0.06);
  --shadow-lg:   0 10px 40px rgba(27,58,75,0.13), 0 4px 12px rgba(27,58,75,0.08);
  --shadow-teal: 0 8px 24px rgba(74,155,142,0.25);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --font-head:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:       1200px;
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}

/* ── Utilities ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 88px 0;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-med);
  line-height: 1.7;
}
.mt-2 { margin-top: 16px; }
.hidden { display: none !important; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-lg { padding: 15px 32px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

.btn-primary {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  background: #1F5C54;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(44,110,100,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal-bg);
  padding: 10px 20px;
}
.btn-ghost:hover {
  background: var(--teal-bg);
  border-color: var(--teal-light);
}

.btn-white {
  background: var(--white);
  color: var(--red-accent);
  font-weight: 700;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ── Animations ─────────────────────────────────── */
/* Default: fully visible. JS adds .js-loaded to <body> to enable animations. */
.fade-in, .fade-in-up {
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up { transform: none; }

/* Only animate when JS has confirmed the page is ready */
.js-loaded .fade-in,
.js-loaded .fade-in-up {
  opacity: 0;
}
.js-loaded .fade-in-up { transform: translateY(28px); }

.js-loaded .fade-in.visible,
.js-loaded .fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANNOUNCEMENT BAR ──────────────────────────── */
.announcement-bar {
  background: var(--red-accent);
  overflow: hidden;
  padding: 8px 0;
  position: sticky;
  top: 160px;
  z-index: 999;
}
.announcement-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.announcement-track span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}
.ann-divider {
  color: rgba(255,255,255,0.45) !important;
  font-size: 0.65rem !important;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.announcement-bar:hover .announcement-track {
  animation-play-state: paused;
}

/* ── LOGO BADGE ─────────────────────────────────── */
.nav-logo-badge {
  height: 140px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo-badge {
  height: 160px;
  width: auto;
}

/* ── HEADER / NAV ───────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,155,142,0.12);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 160px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal-dark);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-med);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--teal-dark);
  background: var(--teal-bg);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--teal); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1B3A4B 0%, #2C6E64 45%, #1B4B5A 75%, #112433 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(74,155,142,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.12) 0%, transparent 50%);
}
.hero-wave-1, .hero-wave-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--white);
}
.hero-wave-1 {
  clip-path: ellipse(55% 100% at 50% 100%);
  opacity: 0.06;
}
.hero-wave-2 {
  clip-path: polygon(0 60%, 25% 30%, 50% 55%, 75% 25%, 100% 50%, 100% 100%, 0 100%);
  opacity: 0.04;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  padding: 80px 24px;
  color: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 22px;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.20);
}
.headline-accent {
  color: #FFE082;
  text-decoration: underline;
  text-decoration-color: rgba(255,224,130,0.45);
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.hero-trust-item svg { color: var(--gold-light); flex-shrink: 0; }
.hero-phone-badge {
  position: absolute;
  top: 100px;
  right: 40px;
  z-index: 3;
}
.hero-phone-badge a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--white);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.hero-phone-badge a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.4);
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.65; }
}

/* ── TRUST BAR ──────────────────────────────────── */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--beige-dark);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  padding: 4px 8px;
  white-space: nowrap;
}
.trust-icon { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--beige-dark);
}

/* ── SERVICES ───────────────────────────────────── */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 14px;
  row-gap: 6px;
  align-items: start;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card--highlight {
  border-color: #FECACA;
  background: linear-gradient(135deg, #FFF5F5 0%, var(--white) 100%);
}
.service-card--highlight::before {
  background: linear-gradient(90deg, #E74C3C, #C0392B);
}
.service-card--highlight:hover { border-color: #FC8181; }
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red-accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: 1;
  grid-column: 1;
  align-self: center;
}
.service-icon svg { width: 26px; height: 26px; }
.service-icon--teal   { background: var(--teal-bg); color: var(--teal); }
.service-icon--gold   { background: var(--gold-pale); color: var(--gold); }
.service-icon--navy   { background: rgba(27,58,75,0.08); color: var(--navy); }
.service-icon--red    { background: #FFF5F5; color: #E74C3C; }
/* Cards are <a> tags — reset link styling */
a.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 0.02em;
  transition: gap var(--transition), color var(--transition);
}
.service-card--highlight .service-card-cta {
  color: var(--red-accent);
}
.service-card:hover .service-card-cta {
  gap: 9px;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0;
  font-family: var(--font-body);
  grid-row: 1;
  grid-column: 2;
  align-self: center;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-med);
  line-height: 1.6;
  grid-column: 1 / -1;
}
.service-card-cta {
  grid-column: 1 / -1;
}
.services-cta {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: var(--teal-bg);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(74,155,142,0.2);
}
.services-cta p {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 16px;
}

/* ── ABOUT ──────────────────────────────────────── */
.about-section { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
  overflow: visible;
}
.about-photo-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(27, 58, 75, 0.18),
    0 8px 24px rgba(27, 58, 75, 0.10),
    0 0 0 1.5px rgba(255, 255, 255, 0.75);
}
.about-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
@property --led-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes ledTrace {
  to { --led-angle: 360deg; }
}
.about-photo-placeholder {
  background: linear-gradient(135deg, var(--teal-bg) 0%, var(--beige) 100%);
  border-radius: var(--radius-xl);
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  border: 2px dashed rgba(74,155,142,0.3);
}
.about-photo-placeholder svg { width: 100px; height: 100px; }
.placeholder-note {
  font-size: 0.85rem;
  color: var(--teal-dark);
  font-weight: 500;
  opacity: 0.7;
}
.about-badge-card {
  position: absolute;
  bottom: 32px;
  right: -24px;
  z-index: 20;
  isolation: isolate;
  background: rgba(255, 253, 250, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow:
    0 12px 36px rgba(27, 58, 75, 0.24),
    0 4px 12px rgba(27, 58, 75, 0.14),
    0 0 0 1px rgba(74, 155, 142, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.about-badge-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  padding: 3px;
  border-radius: 17px;
  background: conic-gradient(
    from var(--led-angle),
    transparent  0%,
    transparent  65%,
    rgba(130, 200, 190, 0.30) 74%,
    rgba(130, 200, 190, 0.85) 80%,
    #82C8BE              84%,
    rgba(130, 200, 190, 0.85) 88%,
    rgba(130, 200, 190, 0.30) 94%,
    transparent  100%
  );
  /* punch out the interior — only the 3px ring is visible */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  filter: drop-shadow(0 0 4px rgba(74, 155, 142, 0.55));
  animation: ledTrace 3.5s linear infinite;
  pointer-events: none;
  z-index: -1;
}
.about-badge-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 14px 40px rgba(27, 58, 75, 0.20),
    0 4px 14px rgba(27, 58, 75, 0.11);
}
@media (prefers-reduced-motion: reduce) {
  .about-badge-card::before { animation: none; }
}
.about-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.about-badge-icon svg { width: 20px; height: 20px; }
.about-badge-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.about-badge-card span {
  font-size: 0.77rem;
  color: var(--text-light);
}
.about-content .section-title {
  text-align: left;
  margin-bottom: 6px;
}
.about-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--teal-dark);
  margin-bottom: 16px;
}
.about-content p {
  color: var(--text-med);
  margin-bottom: 14px;
  line-height: 1.75;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0 28px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}
.about-feature svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ── WHY CHOOSE US ──────────────────────────────── */
.why-section {
  background: var(--navy);
}
.why-section .section-label { color: var(--gold-light); }
.why-section .section-title { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(74,155,142,0.4);
  transform: translateY(-4px);
}
.why-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal-light);
  opacity: 0.5;
  font-family: var(--font-head);
  margin-bottom: 12px;
  line-height: 1;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ── BEFORE / AFTER ─────────────────────────────── */
.before-after-section { background: var(--beige); }
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.before-after-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.before-after-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ba-images {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
}
.ba-image { flex: 1; }
.ba-placeholder {
  background: var(--beige-dark);
  border-radius: var(--radius-md);
  padding: 28px 12px;
  text-align: center;
  position: relative;
}
.ba-placeholder--after {
  background: var(--teal-bg);
}
.ba-placeholder p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 6px;
}
.ba-placeholder--after p { color: var(--teal-dark); }
.ba-img-icon { color: var(--text-light); }
.ba-img-icon svg { width: 32px; height: 32px; margin: 0 auto; }
.ba-placeholder--after .ba-img-icon { color: var(--teal); }
.ba-label-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0,0,0,0.35);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}
.ba-label-tag--after { background: var(--teal-dark); }
.ba-arrow {
  width: 24px;
  flex-shrink: 0;
  color: var(--teal);
}
.ba-arrow svg { width: 20px; height: 20px; }
.ba-caption {
  text-align: center;
  padding: 12px 16px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  border-top: 1px solid var(--beige);
}
.ba-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-med);
}

/* ── EMERGENCY BANNER ───────────────────────────── */
.emergency-section {
  background: linear-gradient(135deg, #C0392B 0%, #922B21 100%);
  padding: 40px 0;
}
.emergency-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.emergency-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.emergency-icon svg { width: 28px; height: 28px; }
.emergency-text { flex: 1; color: var(--white); }
.emergency-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-head);
}
.emergency-text p {
  font-size: 0.92rem;
  opacity: 0.85;
}
.emergency-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── BOOKING ────────────────────────────────────── */
.booking-section {
  background: var(--cream);
}

/* Calendly embed wrapper */
.calendly-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--beige-dark);
}

/* ── OLD CUSTOM CALENDAR (kept for reference, not used) ── */
.booking-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--beige-dark);
}
.booking-steps {
  display: flex;
  align-items: center;
  padding: 24px 32px;
  background: var(--navy);
  gap: 0;
}
.booking-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
  opacity: 0.45;
  transition: opacity var(--transition);
}
.booking-step.active { opacity: 1; }
.booking-step.complete { opacity: 0.75; }
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.booking-step.active .step-num {
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(74,155,142,0.3);
}
.booking-step.complete .step-num {
  background: var(--gold);
}
.booking-step span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
.booking-step-line {
  flex: 0 0 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
.booking-panel { padding: 36px 40px; }

/* Calendar */
.calendar-container { max-width: 560px; margin: 0 auto; }
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.calendar-header h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.cal-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--beige-dark);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--transition);
}
.cal-nav-btn svg { width: 18px; height: 18px; }
.cal-nav-btn:hover {
  background: var(--teal-bg);
  border-color: var(--teal-light);
  color: var(--teal-dark);
}
.calendar-day-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.calendar-day-labels span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-light);
  text-transform: uppercase;
  padding: 6px 0;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  color: var(--text-dark);
  position: relative;
}
.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--teal-bg);
  border-color: var(--teal-light);
  color: var(--teal-dark);
}
.cal-day.today {
  font-weight: 700;
  color: var(--teal);
  border-color: var(--teal-light);
}
.cal-day.selected {
  background: var(--teal) !important;
  color: var(--white) !important;
  border-color: var(--teal-dark) !important;
  font-weight: 700;
  box-shadow: var(--shadow-teal);
}
.cal-day.disabled {
  color: var(--beige-dark);
  cursor: not-allowed;
  background: transparent;
}
.cal-day.empty { cursor: default; }
.cal-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Time slots */
.timeslot-container { max-width: 560px; margin: 0 auto; }
.timeslot-date-label {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}
.timeslot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.time-slot {
  padding: 12px 8px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--beige-dark);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.time-slot:hover:not(.unavailable) {
  border-color: var(--teal);
  background: var(--teal-bg);
  color: var(--teal-dark);
}
.time-slot.selected {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal-dark);
  box-shadow: var(--shadow-teal);
}
.time-slot.unavailable {
  color: var(--beige-dark);
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.6;
}

/* Booking Form */
.booking-form { max-width: 620px; margin: 0 auto; }
.form-summary {
  background: var(--teal-bg);
  border: 1px solid rgba(74,155,142,0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.required { color: var(--red-accent); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74,155,142,0.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--red-accent);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { cursor: pointer; }
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

/* Confirmation */
.confirmation-card {
  text-align: center;
  padding: 20px 0;
  max-width: 480px;
  margin: 0 auto;
}
.confirmation-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--teal);
}
.confirmation-icon svg { width: 36px; height: 36px; }
.confirmation-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.confirmation-card > p {
  color: var(--text-med);
  margin-bottom: 20px;
}
.confirmation-details {
  background: var(--teal-bg);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 20px 0;
  text-align: left;
  font-size: 0.9rem;
}
.confirmation-details div {
  display: flex;
  gap: 10px;
  padding: 4px 0;
  color: var(--navy);
}
.confirmation-details strong { font-weight: 700; min-width: 90px; flex-shrink: 0; }
.confirmation-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.confirmation-note a { color: var(--teal-dark); font-weight: 600; }

/* ── REVIEWS / TESTIMONIALS ─────────────────────── */
.reviews-section {
  background: var(--white);
  overflow: hidden;
}
.reviews-section .section-header { margin-bottom: 44px; }

/* Marquee wrapper — clips the scrolling track */
.reviews-marquee {
  overflow: hidden;
  width: 100%;
  padding: 4px 0 28px;
}
.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

/* Track scrolls left-to-right: -50% → 0 */
.reviews-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: reviews-ltr 44s linear infinite;
}
@keyframes reviews-ltr {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.review-card {
  background: var(--cream);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}
.review-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.92rem;
  color: var(--text-med);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin: 0;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.review-author span {
  font-size: 0.77rem;
  color: var(--text-light);
}

.reviews-cta {
  text-align: center;
  margin-top: 44px;
}
.reviews-cta p {
  font-size: 1.05rem;
  color: var(--text-med);
  margin-bottom: 18px;
}

/* Reduced motion: static responsive grid, no animation */
@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 0 24px;
  }
  .reviews-marquee { overflow: visible; padding-bottom: 0; }
}

/* ── FAQ ────────────────────────────────────────── */
.faq-section { background: var(--beige); }
.faq-container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--beige-dark);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--teal-light); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-item.open .faq-question { color: var(--teal-dark); }
.faq-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform var(--transition), color var(--transition);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--teal);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 18px;
}
.faq-answer p {
  min-height: 0;
  overflow: hidden;
  font-size: 0.9rem;
  color: var(--text-med);
  line-height: 1.7;
  border-top: 1px solid var(--beige);
  padding-top: 14px;
}

/* ── SERVICE AREAS ──────────────────────────────── */
.service-areas-section { background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area-card {
  background: var(--cream);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.area-card:hover {
  border-color: var(--teal);
  background: var(--teal-bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.area-card svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}
.area-card span {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.area-card small {
  font-size: 0.82rem;
  color: var(--teal-dark);
  font-weight: 500;
}
.area-card--question:hover { background: var(--gold-pale); border-color: var(--gold); }
.area-card--question:hover svg { color: var(--gold); }
.area-card--question a { color: var(--teal); font-weight: 600; }

/* ── FOOTER ─────────────────────────────────────── */
.footer { background: var(--navy-dark); }
.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-logo { margin-bottom: 14px; }
.footer-logo .logo-main { color: var(--white); }
.footer-logo .logo-sub { color: var(--teal-light); }
.footer-tagline {
  font-family: var(--font-head);
  font-size: 0.92rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.footer-links-col h3,
.footer-contact-col h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--teal-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--teal-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-keywords {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.2) !important;
}

/* ── STICKY MOBILE CTA ──────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-top: 2px solid var(--teal);
  box-shadow: 0 -4px 20px rgba(27,58,75,0.15);
}
.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.sticky-btn svg { width: 20px; height: 20px; }
.sticky-call {
  background: var(--teal-dark);
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.2);
}
.sticky-call:hover { background: var(--teal-dark); }
.sticky-text {
  background: var(--navy);
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.sticky-text:hover { background: var(--navy-dark); }
.sticky-book {
  background: var(--gold);
  color: var(--navy-dark);
}
.sticky-book:hover { background: #b8963e; color: var(--navy-dark); }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-placeholder { height: 280px; }
  .about-badge-card { bottom: 24px; right: 12px; padding: 10px 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero-wave-1 { display: none; }
  .hero-scroll-hint { display: none; }

  .announcement-bar { top: 110px; }

  /* Nav */
  .nav { height: 110px; gap: 0; }
  .nav-logo-badge { height: 100px; }
  .nav-links {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 0 12px;
    box-shadow: 0 8px 28px rgba(27,58,75,0.14), 0 2px 8px rgba(27,58,75,0.07);
    border-top: 1px solid var(--beige-dark);
    border-bottom: 2px solid var(--teal-bg);
    transform: translateY(-6px);
    opacity: 0;
    transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.18s ease;
    pointer-events: none;
    z-index: 1001;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  /* Full-width tappable rows */
  .nav-links li { display: block; }
  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--beige);
  }
  .nav-links li:last-child .nav-link { border-bottom: none; }
  .nav-link:hover, .nav-link:focus-visible {
    color: var(--teal-dark);
    background: var(--teal-bg);
  }
  .nav-link.active {
    color: var(--teal-dark);
    background: var(--teal-bg);
    font-weight: 600;
  }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 90vh; padding-top: 110px; }
  .hero-content { padding: 60px 24px 80px; }
  .hero-phone-badge { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-placeholder { height: 240px; }
  .about-features { grid-template-columns: 1fr; }
  .about-badge-card { bottom: 20px; right: 12px; padding: 9px 12px; gap: 9px; }
  .about-badge-card strong { font-size: 0.82rem; }
  .about-badge-card span { font-size: 0.72rem; }
  .about-badge-icon { width: 34px; height: 34px; }
  .about-badge-icon svg { width: 17px; height: 17px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Before/After */
  .before-after-grid { grid-template-columns: 1fr; }

  /* Emergency */
  .emergency-inner { flex-direction: column; text-align: center; }
  .emergency-icon { margin: 0 auto; }

  /* Booking */
  .booking-panel { padding: 24px 20px; }
  .booking-steps { padding: 16px 20px; }
  .booking-step span { display: none; }
  .booking-step-line { flex: 0 0 20px; }
  .timeslot-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: auto; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; justify-content: center; }

  /* Reviews */
  .review-card { width: 280px; padding: 22px 20px; }

  /* Areas */
  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Sticky CTA */
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 60px; }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .nav-links {
    transition: opacity 0.01ms;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { gap: 2px; }
  .trust-divider { display: none; }
  .trust-item { font-size: 0.76rem; }
  .hero-trust-row { gap: 10px; }
  .hero-trust-item { font-size: 0.78rem; }
  .timeslot-grid { grid-template-columns: repeat(2, 1fr); }
  .calendar-grid { gap: 2px; }
  .cal-day { font-size: 0.8rem; }
}
