/* ==========================================================================
   Dia's Cleaning & Laundry Service
   Built by Baha Connect
   --------------------------------------------------------------------------
   1.  Self hosted fonts
   2.  Design tokens
   3.  Base and resets
   4.  Utility and layout
   5.  Buttons
   6.  Motion (reveal, parallax, reduced motion)
   7.  Header and navigation
   8.  Hero
   9.  Section furniture (eyebrow, headings, arcs)
   10. Service spotlights
   11. Deep cleaning accordion
   12. Residential and move in / move out
   13. Additional services grid
   14. About
   15. Why Dia's
   16. Contact CTA
   17. Footer
   18. Floating WhatsApp and mobile action bar
   19. Responsive
   ========================================================================== */

/* ==========================================================================
   1. SELF HOSTED FONTS
   ========================================================================== */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/montserrat-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/montserrat-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/montserrat-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/montserrat-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/montserrat-latin-800-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Dancing Script';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/dancing-script-latin-700-normal.woff2') format('woff2');
}

/* ==========================================================================
   2. DESIGN TOKENS
   ========================================================================== */

:root {

  /* ---- Type families ---- */
  --font-display: 'Dancing Script', 'Segoe Script', cursive;
  --font-body: 'Montserrat', 'Helvetica Neue', Helvetica, sans-serif;

  /* ---- Type scale ---- */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.5rem;

  /* ---- Line heights ---- */
  --leading-none:    1;
  --leading-tight:   1.15;
  --leading-snug:    1.35;
  --leading-normal:  1.6;
  --leading-relaxed: 1.75;

  /* ---- Weights ---- */
  --weight-regular:  400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;
  --weight-black:    800;

  /* ---- Letter spacing ---- */
  --tracking-tight:  -0.025em;
  --tracking-normal: 0em;
  --tracking-wide:   0.05em;
  --tracking-widest: 0.14em;

  /* ---- Navy scale (brand dark) ---- */
  --navy-900: hsl(219, 88%, 10%);
  --navy-800: hsl(217, 86%, 16%);
  --navy-700: hsl(217, 68%, 24%);
  --navy-600: hsl(217, 55%, 33%);
  --navy-500: hsl(217, 46%, 44%);
  --navy-400: hsl(217, 42%, 60%);
  --navy-300: hsl(217, 48%, 75%);
  --navy-200: hsl(218, 56%, 87%);
  --navy-100: hsl(219, 66%, 94%);
  --navy-50:  hsl(220, 72%, 97%);

  /* ---- Pink scale (brand accent) ---- */
  --pink-900: hsl(340, 60%, 20%);
  --pink-800: hsl(340, 58%, 30%);
  --pink-700: hsl(340, 58%, 40%);
  --pink-600: hsl(340, 60%, 48%);
  --pink-500: hsl(340, 62%, 56%);
  --pink-400: hsl(340, 70%, 68%);
  --pink-300: hsl(340, 78%, 80%);
  --pink-200: hsl(340, 86%, 89%);
  --pink-100: hsl(340, 92%, 95%);
  --pink-50:  hsl(342, 100%, 98%);

  /* ---- Soft blue (small supporting accents only) ---- */
  --blue-500: hsl(206, 52%, 55%);
  --blue-200: hsl(206, 62%, 88%);
  --blue-100: hsl(206, 66%, 95%);

  /* ---- Neutrals, gently warmed so nothing reads as dead grey ---- */
  --gray-900: hsl(220, 30%, 12%);
  --gray-700: hsl(220, 18%, 26%);
  --gray-600: hsl(220, 14%, 36%);
  --gray-500: hsl(220, 12%, 46%);
  --gray-400: hsl(220, 12%, 60%);
  --gray-300: hsl(220, 14%, 78%);
  --gray-200: hsl(220, 18%, 89%);
  --gray-100: hsl(220, 26%, 95%);

  /* ---- Surfaces ---- */
  --surface:       hsl(0, 0%, 100%);
  --surface-soft:  hsl(342, 45%, 99%);
  --surface-pink:  hsl(342, 84%, 97%);
  --surface-navy:  var(--navy-800);

  /* ---- Text hierarchy on light ---- */
  --text-primary:   var(--navy-800);
  --text-body:      hsl(220, 16%, 30%);
  --text-secondary: hsl(220, 12%, 46%);
  --text-tertiary:  hsl(220, 12%, 60%);

  /* ---- Text hierarchy on navy ---- */
  --on-navy-primary:   hsl(0, 0%, 100%);
  --on-navy-secondary: hsl(218, 46%, 84%);
  --on-navy-tertiary:  hsl(218, 30%, 68%);

  /* ---- Functional ---- */
  --whatsapp: hsl(145, 78%, 27%);
  --whatsapp-dark: hsl(146, 82%, 21%);

  /* ---- Spacing ---- */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* ---- Layout ---- */
  --container-max: 1180px;
  --content-max:   68ch;
  --section-y:     clamp(4rem, 8vw, 6.5rem);
  --gutter:        clamp(1.25rem, 4vw, 2.5rem);

  /* ---- Radius ---- */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-full: 999px;

  /* ---- Shadows, two part for a natural falloff ---- */
  --shadow-xs: 0 1px 2px hsl(217 40% 20% / 0.06);
  --shadow-sm: 0 1px 4px hsl(217 40% 20% / 0.07),
               0 1px 2px hsl(217 40% 20% / 0.05);
  --shadow-md: 0 6px 16px hsl(217 40% 20% / 0.09),
               0 2px 5px  hsl(217 40% 20% / 0.06);
  --shadow-lg: 0 14px 36px hsl(217 40% 20% / 0.12),
               0 5px 10px  hsl(217 40% 20% / 0.07);
  --shadow-xl: 0 28px 68px hsl(217 40% 20% / 0.16),
               0 10px 20px hsl(217 40% 20% / 0.08);
  --shadow-pink: 0 10px 26px hsl(340 62% 46% / 0.28),
                 0 3px 7px  hsl(340 62% 46% / 0.18);

  /* ---- Header height, used for scroll offset ---- */
  --header-h: 74px;
}

/* ==========================================================================
   3. BASE AND RESETS
   ========================================================================== */

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--text-body);
  background: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-body);
  letter-spacing: var(--tracking-tight);
}

h1 { font-size: var(--text-4xl); font-weight: var(--weight-black);    line-height: var(--leading-tight); }
h2 { font-size: var(--text-3xl); font-weight: var(--weight-black);    line-height: var(--leading-tight); }
h3 { font-size: var(--text-2xl); font-weight: var(--weight-bold);     line-height: var(--leading-snug); letter-spacing: var(--tracking-normal); }
h4 { font-size: var(--text-lg);  font-weight: var(--weight-semibold); line-height: var(--leading-snug); letter-spacing: var(--tracking-normal); }

p { margin: 0 0 var(--space-4); max-width: var(--content-max); }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

a { color: var(--pink-700); text-decoration: none; }
a:hover { color: var(--pink-600); }

:focus-visible {
  outline: 3px solid var(--pink-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 999;
  padding: var(--space-3) var(--space-6);
  background: var(--navy-800);
  color: var(--on-navy-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  transition: top 0.2s ease;
}
.skip-link:focus { top: var(--space-4); color: var(--on-navy-primary); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   4. UTILITY AND LAYOUT
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--soft  { background: var(--surface-soft); }
.section--pink  { background: var(--surface-pink); }
.section--navy  { background: var(--surface-navy); color: var(--on-navy-secondary); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--on-navy-primary); }

/* Section intro block */
.section-head { max-width: 660px; margin-bottom: var(--space-12); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.05rem);
  font-weight: var(--weight-bold);
  line-height: 1;
  color: var(--pink-600);
  margin-bottom: var(--space-2);
}
.section--navy .eyebrow { color: var(--pink-300); }

.label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--pink-700);
}

.lede {
  font-size: var(--text-lg);
  line-height: var(--leading-normal);
  color: var(--text-secondary);
  margin-top: var(--space-4);
}
.section-head--center .lede { margin-inline: auto; }
.section--navy .lede { color: var(--on-navy-secondary); }

/* Checklist shared style */
.check-list { display: grid; gap: var(--space-3); }
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
  color: var(--text-body);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1px;
  width: 18px; height: 18px;
  border-radius: var(--radius-full);
  background: var(--pink-100);
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 5px; top: 7px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--pink-600);
  border-bottom: 2px solid var(--pink-600);
  transform: rotate(-45deg);
}
.check-list--two {
  display: block;
  columns: 2;
  column-gap: var(--space-8);
}
.check-list--two li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: var(--space-3);
}
.check-list--two li:last-child { margin-bottom: 0; }

/* Icon frame */
.icon-frame {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: var(--radius-full);
  background: var(--pink-100);
  color: var(--pink-600);
  flex: none;
}
.icon-frame svg { width: 26px; height: 26px; }
.icon-frame--navy { background: var(--navy-100); color: var(--navy-700); }
.icon-frame--blue { background: var(--blue-100); color: var(--blue-500); }

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 var(--space-6);
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
              background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }

/* Primary, brand pink */
.btn--primary {
  background: var(--pink-600);
  border-color: var(--pink-600);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn--primary:hover {
  background: var(--pink-700);
  border-color: var(--pink-700);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px hsl(340 62% 46% / 0.34), 0 4px 9px hsl(340 62% 46% / 0.2);
}
.btn--primary:active { transform: translateY(1px); box-shadow: var(--shadow-xs); }

/* Secondary, navy outline */
.btn--secondary {
  background: transparent;
  border-color: var(--navy-300);
  color: var(--navy-800);
}
.btn--secondary:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--secondary:active { transform: translateY(1px); box-shadow: var(--shadow-xs); }

/* On dark backgrounds */
.btn--ghost-light {
  background: transparent;
  border-color: hsl(218, 40%, 60%);
  color: #fff;
}
.btn--ghost-light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost-light:active { transform: translateY(1px); }

/* Solid white on dark */
.btn--light {
  background: #fff;
  border-color: #fff;
  color: var(--navy-800);
  box-shadow: var(--shadow-md);
}
.btn--light:hover {
  background: var(--pink-50);
  border-color: var(--pink-50);
  color: var(--pink-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--light:active { transform: translateY(1px); }

/* Text link with arrow */
.btn--text {
  min-height: 44px;
  padding: 0;
  border: 0;
  color: var(--pink-700);
  letter-spacing: var(--tracking-normal);
  text-transform: none;
}
.btn--text .arrow { transition: transform 0.2s ease; }
.btn--text:hover { color: var(--pink-600); }
.btn--text:hover .arrow { transform: translateX(5px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

/* ==========================================================================
   6. MOTION
   ========================================================================== */

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

/* Staggered children */
.reveal-group > *:nth-child(1) { transition-delay: 0.00s; }
.reveal-group > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.27s; }
.reveal-group > *:nth-child(5) { transition-delay: 0.36s; }
.reveal-group > *:nth-child(6) { transition-delay: 0.45s; }
.reveal-group > *:nth-child(7) { transition-delay: 0.54s; }
.reveal-group > *:nth-child(8) { transition-delay: 0.63s; }

/* Ambient drift for decorative sparkles */
@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(0, -14px, 0) rotate(8deg); }
}
@keyframes driftSlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(0, 12px, 0) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

/* ==========================================================================
   7. HEADER AND NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsl(0 0% 100% / 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.site-header.is-stuck {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--pink-100);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: var(--header-h);
}

/* Wordmark */
.wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 46px;
  line-height: 1;
  text-decoration: none;
}
.wordmark__script {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 2rem;
  color: var(--pink-500);
  line-height: 0.9;
  transition: color 0.2s ease;
}
.wordmark__sub {
  font-size: 0.6rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin-top: 2px;
}
.wordmark:hover .wordmark__script { color: var(--pink-600); }

/* Desktop nav */
.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav__list { display: flex; align-items: center; gap: var(--space-6); }
.nav__link {
  position: relative;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-normal);
  color: var(--navy-700);
  transition: color 0.2s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--pink-500);
  transition: width 0.25s ease;
}
.nav__link:hover { color: var(--navy-900); }
.nav__link:hover::after,
.nav__link[aria-current="true"]::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  padding: 0;
  background: var(--pink-50);
  border: 1px solid var(--pink-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.12s ease;
}
.nav-toggle:hover { background: var(--pink-100); }
.nav-toggle:active { transform: scale(0.95); }
.nav-toggle__bars { position: relative; width: 20px; height: 14px; }
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--navy-800);
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6px; }
.nav-toggle__bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   8. HERO
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(7rem, 13vw, 11rem);
  background:
    radial-gradient(58rem 34rem at 12% -8%, var(--blue-100) 0%, transparent 62%),
    radial-gradient(50rem 34rem at 92% 6%, var(--pink-100) 0%, transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 55%, var(--pink-50) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 4.5rem);
}

.hero__script {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(1.6rem, 3.3vw, 2rem);
  line-height: 1;
  color: var(--pink-600);
  margin-bottom: var(--space-3);
}

.hero h1 {
  font-size: clamp(2.4rem, 6.2vw, 4rem);
  line-height: 1.04;
}
.hero h1 .script {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 1.28em;
  line-height: 0.8;
  color: var(--pink-500);
  letter-spacing: 0;
  display: inline-block;
  vertical-align: baseline;
}

.hero__sub {
  margin-top: var(--space-6);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 52ch;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--navy-600);
}
.hero__trust .dot {
  width: 6px; height: 6px;
  border-radius: var(--radius-full);
  background: var(--pink-400);
}

/* Hero media composition */
.hero__media { position: relative; }

.hero__photo {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid #fff;
  transform: rotate(-1.4deg);
}
.hero__photo img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; }

.hero__photo-sm {
  position: absolute;
  z-index: 3;
  right: -6px;
  bottom: -46px;
  width: 44%;
  max-width: 210px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
}
.hero__photo-sm img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.hero__badge {
  position: absolute;
  z-index: 4;
  left: -14px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--navy-800);
  color: var(--on-navy-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__badge svg { width: 22px; height: 22px; color: var(--pink-300); }
.hero__badge b {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-normal);
}
.hero__badge span {
  display: block;
  font-size: 0.65rem;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--on-navy-tertiary);
}

/* Decorative sparkles */
.spark {
  position: absolute;
  pointer-events: none;
  color: var(--pink-300);
  opacity: 0.85;
}
.spark--1 { top: 12%;  right: 6%;  width: 46px; animation: drift 9s ease-in-out infinite; }
.spark--2 { top: 62%;  left: 2%;   width: 26px; color: var(--blue-200); animation: driftSlow 11s ease-in-out infinite; }
.spark--3 { top: 30%;  left: 46%;  width: 18px; color: var(--pink-200); animation: drift 13s ease-in-out infinite; }

/* Arc divider, the flyer swoosh carried into the layout */
.arc {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}
.arc svg { width: 100%; height: clamp(60px, 8vw, 108px); display: block; }

/* ==========================================================================
   9. SERVICE SPOTLIGHTS
   ========================================================================== */

.spotlights { display: grid; gap: clamp(3rem, 6vw, 5rem); }

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.spotlight:nth-child(even) .spotlight__panel { order: -1; }

.spotlight__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px var(--space-3);
  margin-bottom: var(--space-4);
  border-radius: var(--radius-full);
  background: var(--pink-100);
  color: var(--pink-800);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.spotlight h3 { font-size: clamp(1.5rem, 3.4vw, 2rem); font-weight: var(--weight-black); letter-spacing: var(--tracking-tight); }
.spotlight__copy { margin-top: var(--space-4); color: var(--text-secondary); }
.spotlight .check-list { margin-top: var(--space-6); }

/* The visual panel that replaces stock photography */
.spotlight__panel {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}
.spotlight__panel--pink {
  background:
    radial-gradient(24rem 20rem at 80% 10%, hsl(340 92% 96%) 0%, transparent 70%),
    linear-gradient(150deg, var(--pink-100) 0%, var(--pink-200) 100%);
}
.spotlight__panel--navy {
  background:
    radial-gradient(24rem 20rem at 20% 12%, hsl(217 60% 26%) 0%, transparent 70%),
    linear-gradient(150deg, var(--navy-800) 0%, var(--navy-900) 100%);
}
.spotlight__panel--blue {
  background:
    radial-gradient(24rem 20rem at 78% 14%, hsl(206 70% 96%) 0%, transparent 70%),
    linear-gradient(150deg, var(--blue-100) 0%, var(--blue-200) 100%);
}

.spotlight__num {
  font-size: clamp(3.5rem, 9vw, 5.5rem);
  font-weight: var(--weight-black);
  line-height: 0.85;
  letter-spacing: var(--tracking-tight);
  color: transparent;
  -webkit-text-stroke: 2px hsl(340 62% 52% / 0.55);
}
.spotlight__panel--navy .spotlight__num { -webkit-text-stroke-color: hsl(340 70% 68% / 0.55); }
.spotlight__panel--blue .spotlight__num { -webkit-text-stroke-color: hsl(206 52% 45% / 0.4); }

.spotlight__panel-icon {
  width: 92px; height: 92px;
  display: grid; place-items: center;
  border-radius: var(--radius-full);
  background: hsl(0 0% 100% / 0.72);
  color: var(--pink-600);
  box-shadow: var(--shadow-sm);
}
.spotlight__panel-icon svg { width: 44px; height: 44px; }
.spotlight__panel--navy .spotlight__panel-icon { background: hsl(217 55% 24%); color: var(--pink-300); }
.spotlight__panel--blue .spotlight__panel-icon { color: var(--blue-500); }

.spotlight__panel-title {
  margin-top: var(--space-6);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1;
  color: var(--pink-700);
}
.spotlight__panel--navy .spotlight__panel-title { color: var(--pink-300); }
.spotlight__panel--blue .spotlight__panel-title { color: hsl(206, 50%, 34%); }

.spotlight__panel .spark { opacity: 0.5; }
.panel-spark-a { top: 16%; right: 12%; width: 34px; animation: drift 10s ease-in-out infinite; }
.panel-spark-b { top: 46%; right: 11%; width: 20px; animation: driftSlow 12s ease-in-out infinite; }

/* ==========================================================================
   10. DEEP CLEANING ACCORDION
   ========================================================================== */

.accordion { display: grid; gap: var(--space-3); margin-top: var(--space-8); }

.acc {
  background: var(--surface);
  border: 1px solid var(--pink-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.acc:hover { box-shadow: var(--shadow-md); border-color: var(--pink-300); }
.acc[open] { box-shadow: var(--shadow-md); border-color: var(--pink-300); }

.acc summary {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  min-height: 68px;
  cursor: pointer;
  list-style: none;
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--navy-800);
  letter-spacing: var(--tracking-normal);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--pink-700); }

.acc__icon { width: 40px; height: 40px; flex: none; }
.acc__icon svg { width: 22px; height: 22px; }

.acc__chev {
  margin-left: auto;
  width: 20px; height: 20px;
  flex: none;
  color: var(--pink-500);
  transition: transform 0.28s ease;
}
.acc[open] .acc__chev { transform: rotate(180deg); }

.acc__body {
  padding: 0 var(--space-6) var(--space-6);
  animation: accIn 0.32s ease;
}
@keyframes accIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.acc__body .check-list {
  padding-top: var(--space-4);
  border-top: 1px solid var(--pink-100);
}

/* ==========================================================================
   11. RESIDENTIAL AND MOVE IN / MOVE OUT
   ========================================================================== */

.duo {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.card__head { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-4); }
.card h3 { font-size: var(--text-xl); font-weight: var(--weight-bold); }

.card--navy {
  background:
    radial-gradient(22rem 18rem at 85% 0%, hsl(217 58% 26%) 0%, transparent 68%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-color: transparent;
  color: var(--on-navy-secondary);
  box-shadow: var(--shadow-lg);
}
.card--navy h3 { color: var(--on-navy-primary); }
.card--navy p { color: var(--on-navy-secondary); }
.card--navy .icon-frame { background: hsl(217 55% 26%); color: var(--pink-300); }
.card--navy .check-list li { color: var(--on-navy-secondary); }
.card--navy .check-list li::before { background: hsl(217 55% 26%); }
.card--navy .check-list li::after { border-color: var(--pink-300); }
.card--navy .btn--text { color: var(--pink-300); }
.card--navy .btn--text:hover { color: #fff; }

/* ==========================================================================
   12. ADDITIONAL SERVICES GRID
   ========================================================================== */

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tile:hover {
  transform: translateY(-5px);
  border-color: var(--pink-200);
  box-shadow: var(--shadow-md);
}
.tile__name {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  line-height: var(--leading-snug);
  color: var(--navy-800);
}
.tile .icon-frame { width: 46px; height: 46px; }
.tile .icon-frame svg { width: 23px; height: 23px; }

/* ==========================================================================
   13. ABOUT
   ========================================================================== */

.about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.about__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.about__media img {
  width: 100%;
  aspect-ratio: 2.6 / 1;
  object-fit: cover;
  object-position: center;
}

.about__quote {
  margin-top: var(--space-8);
  padding-left: var(--space-6);
  border-left: 4px solid var(--pink-300);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  line-height: 1.1;
  color: var(--pink-700);
}

/* ==========================================================================
   14. WHY DIA'S
   ========================================================================== */

.why { position: relative; overflow: hidden; }
.why .spark { opacity: 0.35; }
.why-spark-a { top: 8%; right: 5%; width: 54px; color: var(--pink-400); animation: drift 12s ease-in-out infinite; }
.why-spark-b { bottom: 12%; left: 4%; width: 30px; color: var(--navy-400); animation: driftSlow 14s ease-in-out infinite; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-6);
}

.benefit {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: hsl(217 60% 21% / 0.85);
  border: 1px solid hsl(217 45% 30%);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.benefit:hover {
  transform: translateY(-6px);
  background: hsl(217 58% 24%);
  border-color: var(--pink-500);
}
.benefit .icon-frame { background: hsl(217 52% 28%); color: var(--pink-300); margin-bottom: var(--space-4); }
.benefit h4 {
  color: var(--on-navy-primary);
  margin-bottom: var(--space-2);
  min-height: 2.7em;
}
.benefit p { font-size: var(--text-sm); color: var(--on-navy-secondary); }

.why__statement {
  margin-top: var(--space-12);
  text-align: center;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(1.8rem, 5vw, 2.9rem);
  line-height: 1.05;
  color: var(--pink-300);
}

/* ==========================================================================
   15. CONTACT CTA
   ========================================================================== */

.cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  border-radius: var(--radius-xl);
  text-align: center;
  background:
    radial-gradient(30rem 22rem at 15% 10%, hsl(342 90% 96%) 0%, transparent 68%),
    radial-gradient(30rem 22rem at 88% 90%, hsl(206 70% 95%) 0%, transparent 66%),
    linear-gradient(160deg, var(--pink-100) 0%, var(--pink-200) 100%);
  box-shadow: var(--shadow-md);
}
.cta h2 { font-size: clamp(1.9rem, 5vw, 2.9rem); }
.cta p { margin-inline: auto; color: var(--pink-900); }
.cta .btn-row { justify-content: center; }
.cta .spark { opacity: 0.45; }
.cta-spark-a { top: 16%; left: 8%; width: 36px; color: var(--pink-400); animation: drift 11s ease-in-out infinite; }
.cta-spark-b { bottom: 14%; right: 10%; width: 46px; color: var(--pink-400); animation: driftSlow 13s ease-in-out infinite; }

.cta .btn--secondary { border-color: var(--navy-600); color: var(--navy-800); }
.cta .btn--secondary:hover { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

.cta__phone {
  display: inline-block;
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--pink-800);
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */

.site-footer {
  position: relative;
  background: var(--navy-900);
  color: var(--on-navy-secondary);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr)) minmax(0, 1.1fr);
  gap: var(--space-8);
}
.site-footer .wordmark__sub { color: var(--on-navy-secondary); }

.footer__tagline {
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--pink-300);
}
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
  margin-top: var(--space-4);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: #fff;
}
.footer__phone svg { width: 18px; height: 18px; color: var(--pink-300); }
.footer__phone:hover { color: var(--pink-300); }

.footer__heading {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--on-navy-tertiary);
  margin-bottom: var(--space-4);
}
.footer__list { display: grid; gap: var(--space-3); }
.footer__list a, .footer__list li {
  font-size: var(--text-sm);
  color: var(--on-navy-secondary);
}
.footer__list a { transition: color 0.2s ease, transform 0.2s ease; display: inline-block; }
.footer__list a:hover { color: #fff; transform: translateX(4px); }

.footer__region {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: hsl(217 55% 22%);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--on-navy-secondary);
}
.footer__region svg { width: 15px; height: 15px; color: var(--pink-300); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: var(--space-6);
  border-top: 1px solid hsl(217 40% 22%);
  font-size: var(--text-xs);
  color: var(--on-navy-tertiary);
}
.footer__bottom a { color: var(--on-navy-secondary); }
.footer__bottom a:hover { color: var(--pink-300); }

/* ==========================================================================
   17. FLOATING WHATSAPP AND MOBILE ACTION BAR
   ========================================================================== */

.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  height: 60px;
  padding: 0 var(--space-4);
  border-radius: var(--radius-full);
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 12px 30px hsl(142 70% 22% / 0.34), 0 4px 8px hsl(142 70% 22% / 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.wa-float svg { width: 30px; height: 30px; flex: none; }
.wa-float__text {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  transition: max-width 0.32s ease, margin-right 0.32s ease;
}
.wa-float:hover {
  background: var(--whatsapp-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 38px hsl(142 70% 22% / 0.4), 0 5px 10px hsl(142 70% 22% / 0.22);
}
.wa-float:hover .wa-float__text,
.wa-float:focus-visible .wa-float__text { max-width: 160px; margin-right: var(--space-2); }
.wa-float:active { transform: translateY(0); }

/* Mobile sticky action bar */
.action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: none;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3) calc(var(--space-2) + env(safe-area-inset-bottom, 0px));
  background: hsl(0 0% 100% / 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--pink-100);
  box-shadow: 0 -6px 22px hsl(217 40% 20% / 0.09);
}
.action-bar .btn { flex: 1; min-height: 50px; padding: 0 var(--space-3); }
.action-bar .btn--wa {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: #fff;
  box-shadow: none;
}
.action-bar .btn--wa:hover { background: var(--whatsapp-dark); border-color: var(--whatsapp-dark); }

/* ==========================================================================
   18. RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .tile-grid    { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .duo          { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .hero__grid,
  .spotlight,
  .about { grid-template-columns: minmax(0, 1fr); }

  .spotlight:nth-child(even) .spotlight__panel { order: 0; }
  .spotlight__panel { min-height: 260px; }

  .hero__media { max-width: 520px; margin-inline: auto; }
  .hero__photo-sm { width: 40%; bottom: -34px; right: 4px; }
  .hero__badge { left: 4px; }

  .about__media { order: -1; }

  /* Parallax must not run on touch devices */
  .parallax { transform: none !important; }

  /* Decorative sparkles collide with headline text on narrow screens */
  .hero .spark--1,
  .hero .spark--3 { display: none; }
}

@media (max-width: 780px) {
  :root { --header-h: 66px; }

  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: block;
    padding: var(--space-6) var(--gutter) var(--space-8);
    background: var(--surface);
    border-bottom: 1px solid var(--pink-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    padding: var(--space-4) 0;
    font-size: var(--text-base);
    border-bottom: 1px solid var(--gray-100);
  }
  .nav__link::after { display: none; }
  .nav .btn { width: 100%; margin-top: var(--space-6); }

  .hero { padding-bottom: clamp(6rem, 18vw, 9rem); }
  .hero .btn-row .btn { flex: 1 1 100%; }

  .check-list--two { columns: 1; }

  .tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .action-bar { display: flex; }
  .wa-float { display: none; }
  body { padding-bottom: 72px; }

  .footer__bottom { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: var(--space-6); }
  .spotlight__panel { padding: var(--space-6); }
  .hero__photo-sm { display: none; }
  .hero__badge { left: 8px; bottom: 12px; }
}

/* ==========================================================================
   19. MULTI PAGE COMPONENTS
   Added when the site moved from a single page to ten pages.
   --------------------------------------------------------------------------
   19a. Interior page hero
   19b. Breadcrumb
   19c. Service card grid
   19d. Good for cards
   19e. Contact cards
   ========================================================================== */

/* ---- 19a. Interior page hero ---- */

.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(6rem, 11vw, 9rem);
  background:
    radial-gradient(52rem 30rem at 8% -12%, var(--blue-100) 0%, transparent 62%),
    radial-gradient(46rem 30rem at 94% 0%, var(--pink-100) 0%, transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 50%, var(--pink-50) 100%);
}

.page-hero__inner { max-width: 780px; }

.page-hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.4rem);
  line-height: 1.06;
  margin-top: var(--space-1);
}

.page-hero .lede { max-width: 60ch; }

.page-hero .spark--1 { top: 18%; right: 5%; width: 42px; }
.page-hero .spark--2 { bottom: 34%; left: 2%; width: 24px; color: var(--blue-200); }

/* ---- 19b. Breadcrumb ---- */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.breadcrumb a {
  color: var(--navy-600);
  transition: color 0.2s ease;
}
.breadcrumb a:hover { color: var(--pink-700); }
.breadcrumb [aria-current="page"] { color: var(--text-tertiary); }
.breadcrumb__sep { color: var(--pink-300); }

/* ---- 19c. Service card grid ---- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.svc-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  color: var(--text-body);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink-200);
  box-shadow: var(--shadow-lg);
  color: var(--text-body);
}
.svc-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--navy-800);
}
.svc-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
}
.svc-card__more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  color: var(--pink-700);
}
.svc-card__more .arrow {
  width: 18px; height: 18px;
  transition: transform 0.22s ease;
}
.svc-card:hover .svc-card__more .arrow { transform: translateX(5px); }

/* Tiles in the additional services grid become links on two of the eight */
a.tile { color: var(--text-body); }
a.tile:hover .tile__name { color: var(--pink-700); }

/* ---- 19d. Good for cards ---- */

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.fit-card {
  position: relative;
  padding: var(--space-6);
  padding-top: var(--space-8);
  background: var(--surface);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.fit-card::before {
  content: '';
  position: absolute;
  top: var(--space-6);
  left: var(--space-6);
  width: 34px; height: 3px;
  border-radius: 2px;
  background: var(--pink-400);
}
.fit-card:hover {
  transform: translateY(-5px);
  border-color: var(--pink-200);
  box-shadow: var(--shadow-md);
}
.fit-card h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--navy-800);
  margin-bottom: var(--space-2);
}
.fit-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
}

/* ---- 19e. Contact cards ---- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: var(--surface);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  color: var(--text-body);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink-200);
  box-shadow: var(--shadow-lg);
  color: var(--text-body);
}
.contact-card--static { cursor: default; }
.contact-card--static:hover {
  transform: none;
  border-color: var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.contact-card h2 {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--navy-800);
  letter-spacing: var(--tracking-normal);
}
.contact-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
}
.contact-card__value {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-2);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--pink-700);
}
.contact-card__value .arrow {
  width: 18px; height: 18px;
  transition: transform 0.22s ease;
}
.contact-card:hover .contact-card__value .arrow { transform: translateX(5px); }

.contact-card--wa .icon-frame { background: hsl(145 60% 92%); color: var(--whatsapp); }
.contact-card--static .contact-card__value { color: var(--navy-700); }

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .svc-grid,
  .fit-grid,
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  .page-hero { padding-bottom: clamp(5rem, 16vw, 7rem); }
  .page-hero .spark--1,
  .page-hero .spark--2 { display: none; }
  .page-hero .btn-row .btn { flex: 1 1 100%; }
}

@media (max-width: 640px) {
  .svc-grid,
  .fit-grid,
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
}
