/* ==========================================================================
   Cava Granite — Multi-Service Countertops Landing Page
   Vanilla CSS. No framework. Tokens below are the real Cava Granite brand
   values documented in design-system.md / PROJECT_RULES.md — do not
   introduce new colors, fonts, or spacing values outside this file.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Colors — real Cava Granite palette (design-system.md §2) */
  --color-primary: #30373E;
  --color-secondary: #DAA14C;
  --color-button-hover: #D19A4A;
  --color-text: #474747;
  --color-accent: #E3C598;
  --color-cta: #8A021B;
  --color-taupe: #AC8679;
  --color-band-light: #EFEFEF;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-footer: #32383E;

  /* Approved exception (see PROJECT_RULES.md §2 addendum): WhatsApp's own
     official brand green, used ONLY for the WhatsApp button/floating
     widget — a third-party platform convention, not a Cava Granite brand
     color, kept separate from the palette above. */
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1EBE59;

  /* Typography — Plus Jakarta Sans only on this page (400 + 700 weights).
     The parent site also uses Roboto for a narrow "accent" role, but this
     landing page has no equivalent use, so it is intentionally not loaded
     here to avoid an unused font-file download (performance rule). */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale (8px base) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 100px;

  /* Layout */
  --container-width: 1140px;
  --container-narrow-width: 760px;
  --radius-sm: 4px;
  --radius-md: 5px;
  --radius-lg: 8px;
  --shadow-card: 0px 1px 14px 1px rgba(0, 0, 0, 0.2);
  --transition-default: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@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;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--color-cta); text-decoration: none; }

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

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 var(--space-2) 0;
  line-height: 1.25;
}

h1 { font-size: 44px; line-height: 1.2; }
h2 { font-size: 30px; }
h3 { font-size: 20px; }

p { margin: 0 0 var(--space-2) 0; }

address { font-style: normal; }

/* Visually-hidden utility (skip link target text, sr-only helpers) */
.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: -999px;
  top: 0;
  background: var(--color-cta);
  color: var(--color-white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

/* Consistent visible focus state — never remove outline without replacement */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-2);
}

.container--narrow {
  max-width: var(--container-narrow-width);
}

/* Offset anchor-scroll targets so the sticky utility bar never covers the
   top of a section (or, in the case of #lead-form, a section) when a CTA
   jumps to it */
[id] {
  scroll-margin-top: 88px;
}

.section-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: var(--space-2);
}

.section-title--light { color: var(--color-white); }

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-6) auto;
  color: var(--color-text);
}

/* --------------------------------------------------------------------------
   3. ICONS — lightweight inline-SVG CSS masks, no icon-font dependency
   -------------------------------------------------------------------------- */
.icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  vertical-align: middle;
}

.icon-phone {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.5 21 3 13.5 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.5.6 3.6.1.4 0 .8-.3 1.1l-2.2 2.1z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.5 21 3 13.5 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.5.6 3.6.1.4 0 .8-.3 1.1l-2.2 2.1z'/%3E%3C/svg%3E");
}

.icon-map-marker {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C7.6 2 4 5.6 4 10c0 5.5 7 11.5 7.3 11.7.2.2.5.3.7.3s.5-.1.7-.3C13 21.5 20 15.5 20 10c0-4.4-3.6-8-8-8zm0 11c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C7.6 2 4 5.6 4 10c0 5.5 7 11.5 7.3 11.7.2.2.5.3.7.3s.5-.1.7-.3C13 21.5 20 15.5 20 10c0-4.4-3.6-8-8-8zm0 11c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3z'/%3E%3C/svg%3E");
}

.icon-badge {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.4 4.9 5.4.8-3.9 3.8.9 5.4-4.8-2.5-4.8 2.5.9-5.4-3.9-3.8 5.4-.8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.4 4.9 5.4.8-3.9 3.8.9 5.4-4.8-2.5-4.8 2.5.9-5.4-3.9-3.8 5.4-.8z'/%3E%3C/svg%3E");
}

.icon-check {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
}

.icon-canada {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l1.6 4.2 3.4-2.6-.8 4.2L20 7l-2 4 2 1-3.4 1.8.8 3.2-3-1.4L12 19l-2.4-3.4-3 1.4.8-3.2L4 12l2-1-2-4 3.8.8-.8-4.2 3.4 2.6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l1.6 4.2 3.4-2.6-.8 4.2L20 7l-2 4 2 1-3.4 1.8.8 3.2-3-1.4L12 19l-2.4-3.4-3 1.4.8-3.2L4 12l2-1-2-4 3.8.8-.8-4.2 3.4 2.6z'/%3E%3C/svg%3E");
}

.icon-stone {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 16l3-9h10l3 9-3 5H7z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 16l3-9h10l3 9-3 5H7z'/%3E%3C/svg%3E");
}

.icon-quote {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 5C4.8 5 3 6.8 3 9c0 2 1.5 3.7 3.4 4-.3 1.2-1.1 2.2-2.4 2.8v2.1c3-.6 5-3 5-6.4V9c0-2.2-1.8-4-4-4zm10 0c-2.2 0-4 1.8-4 4v2.5c0 3.4 2 5.8 5 6.4v-2.1c-1.3-.6-2.1-1.6-2.4-2.8 1.9-.3 3.4-2 3.4-4 0-2.2-1.8-4-4-4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 5C4.8 5 3 6.8 3 9c0 2 1.5 3.7 3.4 4-.3 1.2-1.1 2.2-2.4 2.8v2.1c3-.6 5-3 5-6.4V9c0-2.2-1.8-4-4-4zm10 0c-2.2 0-4 1.8-4 4v2.5c0 3.4 2 5.8 5 6.4v-2.1c-1.3-.6-2.1-1.6-2.4-2.8 1.9-.3 3.4-2 3.4-4 0-2.2-1.8-4-4-4z'/%3E%3C/svg%3E");
}

.icon-facebook {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 12a10 10 0 10-11.6 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.4v7A10 10 0 0022 12z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 12a10 10 0 10-11.6 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.4v7A10 10 0 0022 12z'/%3E%3C/svg%3E");
}

.icon-instagram {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.2c2.7 0 3 0 4.1.1 1.1 0 1.7.2 2.1.4.5.2.9.4 1.3.8.4.4.6.8.8 1.3.2.4.4 1 .4 2.1.1 1.1.1 1.4.1 4.1s0 3-.1 4.1c0 1.1-.2 1.7-.4 2.1-.2.5-.4.9-.8 1.3-.4.4-.8.6-1.3.8-.4.2-1 .4-2.1.4-1.1.1-1.4.1-4.1.1s-3 0-4.1-.1c-1.1 0-1.7-.2-2.1-.4-.5-.2-.9-.4-1.3-.8-.4-.4-.6-.8-.8-1.3-.2-.4-.4-1-.4-2.1C2.2 15 2.2 14.7 2.2 12s0-3 .1-4.1c0-1.1.2-1.7.4-2.1.2-.5.4-.9.8-1.3.4-.4.8-.6 1.3-.8.4-.2 1-.4 2.1-.4C10 2.2 10.3 2.2 12 2.2zm0 1.8c-2.6 0-2.9 0-4 .1-.9 0-1.4.2-1.7.3-.4.2-.7.3-1 .6-.3.3-.5.6-.6 1-.1.3-.3.8-.3 1.7-.1 1.1-.1 1.4-.1 4s0 2.9.1 4c0 .9.2 1.4.3 1.7.2.4.3.7.6 1 .3.3.6.5 1 .6.3.1.8.3 1.7.3 1.1.1 1.4.1 4 .1s2.9 0 4-.1c.9 0 1.4-.2 1.7-.3.4-.2.7-.3 1-.6.3-.3.5-.6.6-1 .1-.3.3-.8.3-1.7.1-1.1.1-1.4.1-4s0-2.9-.1-4c0-.9-.2-1.4-.3-1.7-.2-.4-.3-.7-.6-1-.3-.3-.6-.5-1-.6-.3-.1-.8-.3-1.7-.3-1.1-.1-1.4-.1-4-.1zm0 3.4a4.6 4.6 0 110 9.2 4.6 4.6 0 010-9.2zm0 1.8a2.8 2.8 0 100 5.6 2.8 2.8 0 000-5.6zm4.8-2a1.1 1.1 0 110 2.2 1.1 1.1 0 010-2.2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.2c2.7 0 3 0 4.1.1 1.1 0 1.7.2 2.1.4.5.2.9.4 1.3.8.4.4.6.8.8 1.3.2.4.4 1 .4 2.1.1 1.1.1 1.4.1 4.1s0 3-.1 4.1c0 1.1-.2 1.7-.4 2.1-.2.5-.4.9-.8 1.3-.4.4-.8.6-1.3.8-.4.2-1 .4-2.1.4-1.1.1-1.4.1-4.1.1s-3 0-4.1-.1c-1.1 0-1.7-.2-2.1-.4-.5-.2-.9-.4-1.3-.8-.4-.4-.6-.8-.8-1.3-.2-.4-.4-1-.4-2.1C2.2 15 2.2 14.7 2.2 12s0-3 .1-4.1c0-1.1.2-1.7.4-2.1.2-.5.4-.9.8-1.3.4-.4.8-.6 1.3-.8.4-.2 1-.4 2.1-.4C10 2.2 10.3 2.2 12 2.2zm0 1.8c-2.6 0-2.9 0-4 .1-.9 0-1.4.2-1.7.3-.4.2-.7.3-1 .6-.3.3-.5.6-.6 1-.1.3-.3.8-.3 1.7-.1 1.1-.1 1.4-.1 4s0 2.9.1 4c0 .9.2 1.4.3 1.7.2.4.3.7.6 1 .3.3.6.5 1 .6.3.1.8.3 1.7.3 1.1.1 1.4.1 4 .1s2.9 0 4-.1c.9 0 1.4-.2 1.7-.3.4-.2.7-.3 1-.6.3-.3.5-.6.6-1 .1-.3.3-.8.3-1.7.1-1.1.1-1.4.1-4s0-2.9-.1-4c0-.9-.2-1.4-.3-1.7-.2-.4-.3-.7-.6-1-.3-.3-.6-.5-1-.6-.3-.1-.8-.3-1.7-.3-1.1-.1-1.4-.1-4-.1zm0 3.4a4.6 4.6 0 110 9.2 4.6 4.6 0 010-9.2zm0 1.8a2.8 2.8 0 100 5.6 2.8 2.8 0 000-5.6zm4.8-2a1.1 1.1 0 110 2.2 1.1 1.1 0 010-2.2z'/%3E%3C/svg%3E");
}

.icon-youtube {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.6 7.2s-.2-1.5-.8-2.1c-.8-.8-1.7-.8-2.1-.9C15.9 4 12 4 12 4s-3.9 0-6.7.2c-.4.1-1.3.1-2.1.9-.6.6-.8 2.1-.8 2.1S2.2 9 2.2 10.7v1.6c0 1.7.2 3.5.2 3.5s.2 1.5.8 2.1c.8.8 1.9.8 2.3.9C7 19 12 19 12 19s3.9 0 6.7-.2c.4-.1 1.3-.1 2.1-.9.6-.6.8-2.1.8-2.1s.2-1.7.2-3.5v-1.6c0-1.7-.2-3.5-.2-3.5zM9.9 14.6V8.9l5.4 2.9z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.6 7.2s-.2-1.5-.8-2.1c-.8-.8-1.7-.8-2.1-.9C15.9 4 12 4 12 4s-3.9 0-6.7.2c-.4.1-1.3.1-2.1.9-.6.6-.8 2.1-.8 2.1S2.2 9 2.2 10.7v1.6c0 1.7.2 3.5.2 3.5s.2 1.5.8 2.1c.8.8 1.9.8 2.3.9C7 19 12 19 12 19s3.9 0 6.7-.2c.4-.1 1.3-.1 2.1-.9.6-.6.8-2.1.8-2.1s.2-1.7.2-3.5v-1.6c0-1.7-.2-3.5-.2-3.5zM9.9 14.6V8.9l5.4 2.9z'/%3E%3C/svg%3E");
}

.icon-whatsapp {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.5 1.3 5L2 22l5.2-1.3c1.4.8 3.1 1.2 4.8 1.2 5.5 0 10-4.5 10-10S17.5 2 12 2zm0 18.2c-1.6 0-3.1-.4-4.4-1.2l-.3-.2-3.1.8.8-3-.2-.3C4 14.9 3.6 13.5 3.6 12c0-4.6 3.8-8.4 8.4-8.4s8.4 3.8 8.4 8.4-3.8 8.2-8.4 8.2zm4.6-6.1c-.2-.1-1.5-.7-1.7-.8-.2-.1-.4-.1-.6.1-.2.2-.7.8-.8 1-.2.2-.3.2-.5.1-.2-.1-1-.4-1.9-1.2-.7-.6-1.2-1.4-1.3-1.6-.1-.2 0-.4.1-.5.1-.1.2-.3.3-.4.1-.1.1-.2.2-.4.1-.1 0-.3 0-.4 0-.1-.6-1.4-.8-1.9-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.4.1-.6.3-.2.2-.8.8-.8 1.9s.8 2.2.9 2.4c.1.2 1.6 2.5 4 3.5.6.2 1 .4 1.3.5.6.2 1.1.1 1.5.1.5-.1 1.5-.6 1.7-1.2.2-.6.2-1.1.1-1.2-.1-.1-.2-.2-.4-.3z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.5 1.3 5L2 22l5.2-1.3c1.4.8 3.1 1.2 4.8 1.2 5.5 0 10-4.5 10-10S17.5 2 12 2zm0 18.2c-1.6 0-3.1-.4-4.4-1.2l-.3-.2-3.1.8.8-3-.2-.3C4 14.9 3.6 13.5 3.6 12c0-4.6 3.8-8.4 8.4-8.4s8.4 3.8 8.4 8.4-3.8 8.2-8.4 8.2zm4.6-6.1c-.2-.1-1.5-.7-1.7-.8-.2-.1-.4-.1-.6.1-.2.2-.7.8-.8 1-.2.2-.3.2-.5.1-.2-.1-1-.4-1.9-1.2-.7-.6-1.2-1.4-1.3-1.6-.1-.2 0-.4.1-.5.1-.1.2-.3.3-.4.1-.1.1-.2.2-.4.1-.1 0-.3 0-.4 0-.1-.6-1.4-.8-1.9-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.4.1-.6.3-.2.2-.8.8-.8 1.9s.8 2.2.9 2.4c.1.2 1.6 2.5 4 3.5.6.2 1 .4 1.3.5.6.2 1.1.1 1.5.1.5-.1 1.5-.6 1.7-1.2.2-.6.2-1.1.1-1.2-.1-.1-.2-.2-.4-.3z'/%3E%3C/svg%3E");
}

.icon-google {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.8 12.2c0-.7-.1-1.4-.2-2H12v3.8h5.5c-.2 1.3-.9 2.3-2 3v2.5h3.2c1.9-1.7 2.9-4.3 2.9-7.3z'/%3E%3Cpath d='M12 22c2.7 0 5-.9 6.7-2.4l-3.2-2.5c-.9.6-2 .9-3.5.9-2.7 0-5-1.8-5.8-4.3H2.9v2.6C4.6 19.5 8 22 12 22z'/%3E%3Cpath d='M6.2 13.7A5.9 5.9 0 015.9 12c0-.6.1-1.2.3-1.7V7.7H2.9A10 10 0 002 12c0 1.6.4 3.1 1 4.3z'/%3E%3Cpath d='M12 5.8c1.5 0 2.8.5 3.8 1.5l2.8-2.8C16.9 2.9 14.6 2 12 2 8 2 4.6 4.5 2.9 7.7l3.3 2.6C6.9 7.7 9.2 5.8 12 5.8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.8 12.2c0-.7-.1-1.4-.2-2H12v3.8h5.5c-.2 1.3-.9 2.3-2 3v2.5h3.2c1.9-1.7 2.9-4.3 2.9-7.3z'/%3E%3Cpath d='M12 22c2.7 0 5-.9 6.7-2.4l-3.2-2.5c-.9.6-2 .9-3.5.9-2.7 0-5-1.8-5.8-4.3H2.9v2.6C4.6 19.5 8 22 12 22z'/%3E%3Cpath d='M6.2 13.7A5.9 5.9 0 015.9 12c0-.6.1-1.2.3-1.7V7.7H2.9A10 10 0 002 12c0 1.6.4 3.1 1 4.3z'/%3E%3Cpath d='M12 5.8c1.5 0 2.8.5 3.8 1.5l2.8-2.8C16.9 2.9 14.6 2 12 2 8 2 4.6 4.5 2.9 7.7l3.3 2.6C6.9 7.7 9.2 5.8 12 5.8z'/%3E%3C/svg%3E");
}

.icon-gem {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 8l4-5h6l4 5-9 13z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 8l4-5h6l4 5-9 13z'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: var(--transition-default);
  min-height: 44px;
  cursor: pointer;
}

.btn--primary {
  background-color: var(--color-cta);
  color: var(--color-white);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--color-button-hover);
  /* Dark text on hover (not white) — white-on-gold fails WCAG AA contrast
     (~2.5:1); dark primary-on-gold clears 4.5:1. Intentional deviation
     from the live site's hover behavior for accessibility compliance. */
  color: var(--color-primary);
}

.btn--secondary {
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn--secondary:hover,
.btn--secondary:focus-visible {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn--small {
  padding: 8px 16px;
  font-size: 13px;
}

.btn--large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn--whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
}
.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background-color: var(--color-whatsapp-hover);
  color: var(--color-white);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn .icon { width: 18px; height: 18px; }

.btn--full { width: 100%; }

/* --------------------------------------------------------------------------
   4b. STICKY FLOATING WHATSAPP BUTTON (all viewports)
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: var(--space-2);
  bottom: var(--space-2);
  z-index: 210;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: var(--transition-default);
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background-color: var(--color-whatsapp-hover);
  transform: scale(1.06);
}
.whatsapp-float .icon {
  width: 30px;
  height: 30px;
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   5. UTILITY BAR (sticky header)
   -------------------------------------------------------------------------- */
.utility-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.utility-bar__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--space-1) var(--space-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.utility-bar__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.utility-bar__logo-img {
  height: 44px;
  width: auto;
}

.utility-bar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.utility-bar__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 700;
  white-space: nowrap;
}
.utility-bar__phone .icon { color: var(--color-cta); }

/* --------------------------------------------------------------------------
   6. HERO (incl. Service Selector)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(48,55,62,0.55) 0%, rgba(48,55,62,0.75) 100%);
  z-index: 1;
}

.hero__grid {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--space-10) var(--space-2);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-6);
  align-items: center;
}

/* min-width: 0 overrides the CSS Grid default automatic minimum size
   (which is otherwise based on the min-content size of descendants).
   Without it, the horizontally-scrolling Service Selector pills below
   (white-space: nowrap, by design) force this grid item — and the whole
   single-column mobile layout — wider than the viewport. */
.hero__content { text-align: left; min-width: 0; }

.hero__title {
  color: var(--color-white);
  font-size: 44px;
  margin-bottom: var(--space-3);
}

.hero__subtitle {
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: var(--space-4);
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero__trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.hero__trust-chips li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
}
.hero__trust-chips .icon { color: var(--color-secondary); width: 18px; height: 18px; }

/* Quote panel — sits to the right of the hero copy on desktop. Holds the
   Service Selector + a single CTA that jumps to the real form further down
   the page at #lead-form (see PROJECT_RULES.md §11 CRO Rules — lead form
   placement). It is NOT the form itself. */
.hero__form-panel {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-4);
  /* See .hero__content comment above — same CSS Grid min-content fix,
     needed here because this panel contains the nowrap pill row. */
  min-width: 0;
}

.hero__form-title {
  font-size: 22px;
  text-align: left;
  margin-bottom: 4px;
}

.hero__form-subtitle {
  font-size: 14px;
  margin-bottom: var(--space-3);
}

.hero__form-cta {
  margin-bottom: var(--space-3);
}

/* --------------------------------------------------------------------------
   7. TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  background-color: var(--color-band-light);
  padding: var(--space-5) 0;
}

.trust-bar__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--space-2);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  text-align: center;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  max-width: 220px;
}

.trust-bar__item .icon {
  color: var(--color-cta);
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
}

.trust-bar__stat {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-primary);
}

.trust-bar__label {
  font-size: 14px;
  color: var(--color-text);
}

/* --------------------------------------------------------------------------
   8. SECTION SPACING / BAND COLORS
   -------------------------------------------------------------------------- */
.services, .why-choose-us, .gallery { padding: var(--space-10) 0; }
.process, .testimonials, .faq { padding: var(--space-10) 0; }

.services, .why-choose-us, .testimonials { background-color: var(--color-white); }
.gallery, .faq { background-color: var(--color-band-light); }
.process { background-color: var(--color-white); }

/* --------------------------------------------------------------------------
   9. FEATURED MATERIALS (the "services" grid — 4 equal-weight cards:
   Kitchen, Granite, Quartz, Taj Mahal. See PROJECT_RULES.md §11 CRO Rules
   — equal visual weight across all 4 materials.)
   -------------------------------------------------------------------------- */
.services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}

.service-card {
  /* 2 cards per row, 1 gap of 24px between them → 12px subtracted per card */
  flex: 1 1 calc(50% - 12px);
  max-width: calc(50% - 12px);
  min-width: 280px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition-default);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}
.service-card:hover { transform: translateY(-4px); }

/* Highlighted by js/script.js initServiceSelector when this card's material
   matches the active Service Selector pill / ?service= URL param. */
.service-card--active {
  border-color: var(--color-secondary);
}

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.service-card__body {
  padding: var(--space-2);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title { font-size: 17px; margin-bottom: 6px; }
.service-card__text { font-size: 14px; flex: 1; }
.service-card__link {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-cta);
  margin-top: var(--space-1);
  display: inline-block;
}
.service-card__link:hover { color: var(--color-button-hover); }

/* --------------------------------------------------------------------------
   10. WHY CHOOSE US — merged benefits + differentiators into one equal-
   weight grid (10 tiles). Reuses the .benefit-item card component for all
   of them; see PROJECT_RULES.md / component-list.md item 12.
   -------------------------------------------------------------------------- */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.benefit-item {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-3);
  transition: var(--transition-default);
}
.benefit-item:hover { transform: translateY(-4px); }

.benefit-item__icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.benefit-item__icon-badge .icon {
  color: var(--color-cta);
  width: 26px;
  height: 26px;
}

.benefit-item strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 4px;
  font-size: 16px;
}

.benefit-item p { font-size: 14px; margin: 0; }

/* --------------------------------------------------------------------------
   11. PROCESS
   -------------------------------------------------------------------------- */
.process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: var(--space-3) var(--space-2);
  background-color: var(--color-band-light);
  border-radius: var(--radius-md);
  position: relative;
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-cta);
  color: var(--color-white);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: var(--space-2);
}

.process-step__title { font-size: 17px; }
.process-step__text { font-size: 14px; margin: 0; }

.process__cta { text-align: center; margin-top: var(--space-5); }

/* --------------------------------------------------------------------------
   12. GALLERY
   -------------------------------------------------------------------------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

.gallery__thumb {
  border: 0;
  padding: 0;
  background: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-default);
  aspect-ratio: 4 / 3;
}
.gallery__thumb:hover { transform: scale(1.02); }
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__cta { text-align: center; margin-top: var(--space-5); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(17, 22, 27, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
}
.lightbox__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: var(--color-white);
  color: var(--color-primary);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   13. TESTIMONIALS — 3-per-page carousel cycling through all real
   Google reviews
   -------------------------------------------------------------------------- */
.testimonial-carousel {
  max-width: var(--container-width);
  margin: 0 auto;
}

.testimonial-carousel__viewport {
  overflow: hidden;
}

.testimonial-carousel__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  align-items: stretch;
}

.testimonial-card {
  margin: 0;
  background-color: var(--color-band-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  animation: fade-in 0.4s ease;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background-color: var(--color-white);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.testimonial-card__badge .icon { width: 14px; height: 14px; }

.testimonial-card__quote {
  font-size: 15px;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  flex: 1;
  /* Clamp to 6 lines so cards in the same row stay a consistent height
     even though real review lengths vary a lot */
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-card__footer { margin-top: var(--space-1); }
.testimonial-card__name {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--color-primary);
}
.testimonial-card__meta { font-size: 13px; color: var(--color-text); }

.testimonial-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.testimonial-carousel__arrow {
  background-color: var(--color-white);
  border: 1px solid #D9D9D9;
  color: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
}
.testimonial-carousel__arrow:hover {
  background-color: var(--color-cta);
  border-color: var(--color-cta);
  color: var(--color-white);
}

.testimonial-carousel__dots {
  display: flex;
  gap: 8px;
}
.testimonial-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #D9D9D9;
  border: 0;
  padding: 0;
}
.testimonial-carousel__dot[aria-current="true"] {
  background-color: var(--color-cta);
}

.testimonial-carousel__pause {
  background: none;
  border: 1px solid #D9D9D9;
  color: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: var(--space-1);
}
.testimonial-carousel__pause-icon { font-size: 11px; line-height: 1; }

.testimonials__cta { text-align: center; margin-top: var(--space-5); }

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */
.faq-item {
  border-bottom: 1px solid #D9D9D9;
}

.faq-item__heading { margin: 0; font-size: inherit; }

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  background: none;
  border: 0;
  padding: var(--space-2) 4px;
  text-align: left;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
}

.faq-item__icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-cta);
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: var(--transition-default);
}
.faq-item__trigger[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); }

.faq-item__panel { padding: 0 4px var(--space-2) 4px; }
.faq-item__panel p { margin: 0; font-size: 15px; }

.faq__footer { text-align: center; margin-top: var(--space-4); }

/* --------------------------------------------------------------------------
   15. QUOTE FORM — the page's single real lead form, embedded directly in
   the hero (.hero__form-panel, id="lead-form"). Every "Get My Free Quote"
   CTA elsewhere on the page jump-links back up to it.
   -------------------------------------------------------------------------- */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.quote-form__row { display: flex; flex-direction: column; gap: 6px; }

.quote-form label {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-primary);
}

.quote-form input[type="text"],
.quote-form input[type="tel"],
.quote-form input[type="email"],
.quote-form select,
.quote-form textarea {
  font-family: var(--font-primary);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid #CBCBCB;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  background-color: var(--color-white);
  min-height: 44px;
}

.quote-form textarea { resize: vertical; min-height: 100px; }

.quote-form [aria-invalid="true"] {
  border-color: var(--color-cta);
  border-width: 2px;
}

.quote-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.quote-form__submit {
  width: 100%;
  position: relative;
}

.quote-form__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.5);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
.quote-form__spinner[hidden] { display: none; }

@keyframes spin { to { transform: rotate(360deg); } }

.quote-form__status {
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
}
.quote-form__status:empty { padding: 0; }
.quote-form__status--success {
  background-color: #E7F5E9;
  color: #1E6B2E;
}
.quote-form__status--error {
  background-color: #FBE7E9;
  color: var(--color-cta);
}

/* --------------------------------------------------------------------------
   16. FINAL CTA
   -------------------------------------------------------------------------- */
.final-cta {
  position: relative;
  padding: var(--space-10) 0;
  overflow: hidden;
  background-color: var(--color-primary);
  text-align: center;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.final-cta__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  opacity: 0.65;
}
.final-cta__content { position: relative; z-index: 1; }
.final-cta__text {
  color: var(--color-white);
  max-width: 560px;
  margin: 0 auto var(--space-4) auto;
}
.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-footer);
  color: #C7CBD1;
  padding: var(--space-8) 0 var(--space-3) 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: start;
}

.site-footer__logo { height: 60px; width: auto; margin-bottom: var(--space-2); }

.site-footer__social { display: flex; gap: var(--space-2); }
.site-footer__social .icon { width: 20px; height: 20px; color: var(--color-white); }
.site-footer__social a:hover .icon { color: var(--color-secondary); }

.site-footer__heading {
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: var(--space-2);
}

.site-footer__address a { color: #C7CBD1; }
.site-footer__address a:hover { color: var(--color-secondary); }

.site-footer__hours { font-size: 14px; margin-top: var(--space-2); }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: var(--space-6);
  padding-top: var(--space-3);
  text-align: center;
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   18. STICKY MOBILE CTA BAR (mobile only)
   -------------------------------------------------------------------------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background-color: var(--color-white);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
  padding: var(--space-1);
  gap: var(--space-1);
}

.mobile-cta-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  min-height: 44px;
}
.mobile-cta-bar__btn--call {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.mobile-cta-bar__btn--quote {
  background-color: var(--color-cta);
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   18b. THANK-YOU PAGE
   -------------------------------------------------------------------------- */
.thank-you {
  padding: var(--space-12) 0 var(--space-10) 0;
  background-color: var(--color-band-light);
}

.thank-you__inner { text-align: center; }

.thank-you__icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-cta);
  margin: 0 auto var(--space-3) auto;
}
.thank-you__icon-badge .icon {
  width: 40px;
  height: 40px;
  color: var(--color-white);
}

.thank-you__title { font-size: 32px; }

.thank-you__text {
  max-width: 560px;
  margin: 0 auto var(--space-4) auto;
  font-size: 17px;
}

.thank-you__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}

.thank-you-process {
  padding: var(--space-10) 0;
  background-color: var(--color-white);
}

/* --------------------------------------------------------------------------
   19. ENTRANCE ANIMATIONS — lightweight, respects prefers-reduced-motion
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE — tablet (<=1024px) and mobile (<=767px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { text-align: center; }
  .hero__cta-group { justify-content: center; }
  .hero__form-panel { max-width: 480px; margin: 0 auto; width: 100%; }

  .process__list { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-carousel__track { grid-template-columns: repeat(2, 1fr); }
  h1, .hero__title { font-size: 36px; }
}

@media (max-width: 767px) {
  body { padding-bottom: 64px; } /* room for sticky mobile CTA bar */

  h1, .hero__title { font-size: 28px; }
  h2, .section-title { font-size: 24px; }

  .utility-bar__phone-text { display: none; }

  .hero__grid { padding: var(--space-6) var(--space-2); }
  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .hero__form-panel { padding: var(--space-3); }

  .thank-you__title { font-size: 24px; }
  .thank-you__cta-group { flex-direction: column; align-items: stretch; }

  .trust-bar__inner { gap: var(--space-3); }

  .process__list,
  .benefits__grid,
  .testimonial-carousel__track {
    grid-template-columns: 1fr;
  }

  .testimonial-card__quote { -webkit-line-clamp: 8; }

  .services__grid {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: var(--space-1);
  }
  .services__grid .service-card {
    flex: 0 0 82%;
    max-width: 82%;
    scroll-snap-align: start;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: var(--space-1);
  }
  .gallery__grid .gallery__thumb { scroll-snap-align: start; }


  .final-cta__buttons { flex-direction: column; align-items: stretch; }

  .site-footer__inner { grid-template-columns: 1fr; text-align: center; }
  .site-footer__logo { margin-left: auto; margin-right: auto; }
  .site-footer__social { justify-content: center; }

  .mobile-cta-bar { display: flex; }

  /* Sit above the full-width sticky mobile CTA bar instead of overlapping it */
  .whatsapp-float {
    bottom: 76px;
    right: var(--space-1);
    width: 48px;
    height: 48px;
  }
  .whatsapp-float .icon { width: 26px; height: 26px; }

  /* thank-you.html has no sticky mobile CTA bar, so the WhatsApp float
     doesn't need the extra clearance above */
  body.page-thank-you .whatsapp-float { bottom: var(--space-2); }
  body.page-thank-you { padding-bottom: 0; }
}
