/* ============================================================
   BRASILLIANCE CLEANING SERVICES — Version 4
   Complete Design System
   ============================================================ */

/* 1. GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Playfair+Display:wght@600;700&family=Dancing+Script:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

/* 2. DESIGN TOKENS */
:root {
  /* Brand Colors */
  --clr-teal:          #2A8C94;
  --clr-teal-dark:     #1C6169;
  --clr-teal-light:    #E3F3F5;
  --clr-teal-xlight:   #F0F9FA;
  --clr-navy:          #163B5A;
  --clr-navy-dark:     #0E2740;
  --clr-navy-mid:      #1E4E72;
  --clr-gold:          #C9A84C;
  --clr-gold-dark:     #A8893A;
  --clr-gold-light:    #F0DFA0;

  /* Neutrals */
  --clr-cream:         #FAFAF7;
  --clr-sand:          #F5F0E8;
  --clr-white:         #FFFFFF;
  --clr-body:          #4A6070;
  --clr-body-light:    #6B8090;
  --clr-text-dark:     #2C3E50;
  --clr-border:        #DDE8EC;
  --clr-border-light:  #EEF4F6;

  /* Typography */
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-script:    'Dancing Script', cursive;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-serif-h3:  'Cormorant Garamond', Georgia, serif;

  /* Type Scale */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1.0625rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   clamp(1.5rem, 2.5vw, 1.875rem);
  --text-3xl:   clamp(1.875rem, 3.5vw, 2.625rem);
  --text-4xl:   clamp(2.25rem, 5vw, 3.25rem);
  --text-5xl:   clamp(2.75rem, 6vw, 4.25rem);
  --text-hero:  clamp(3.25rem, 7.5vw, 5.5rem);

  /* Spacing */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.25rem;  --sp-6: 1.5rem;
  --sp-8: 2rem;     --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;

  /* Layout */
  --section-py:    clamp(4rem, 7vw, 6rem);
  --section-sm:    clamp(2.5rem, 5vw, 4rem);
  --container-max: 1200px;
  --container-px:  clamp(1.25rem, 4vw, 2rem);
  --header-h:      96px;

  /* Borders */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  /* Shadows — navy-based for warmth */
  --shadow-sm:   0 1px 4px rgba(22, 59, 90, 0.08);
  --shadow-md:   0 4px 16px rgba(22, 59, 90, 0.10);
  --shadow-lg:   0 8px 32px rgba(22, 59, 90, 0.14);
  --shadow-xl:   0 20px 60px rgba(22, 59, 90, 0.18);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.35);
  --shadow-card: 0 4px 20px rgba(22, 59, 90, 0.10);

  /* Motion */
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0.0, 0.2, 1);
  --dur-fast:    150ms;
  --dur-base:    250ms;
  --dur-slow:    400ms;
  --motion-sm:   0.2s ease;
  --motion-md:   0.35s ease;

  /* Z-Index */
  --z-base:     0;
  --z-raised:   10;
  --z-dropdown: 20;
  --z-sticky:   30;
  --z-modal:    50;
}

/* 3. CSS RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scrollbar-gutter: stable; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--clr-body);
  background: var(--clr-cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5 { color: var(--clr-navy); line-height: 1.2; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* 4. TYPOGRAPHY */
h1 { font-family: var(--font-display); font-size: var(--text-hero); font-weight: 700; line-height: 1.05; }
h2 { font-family: var(--font-heading); font-size: var(--text-3xl); font-weight: 700; line-height: 1.2; }
h3 { font-family: var(--font-heading); font-size: var(--text-2xl); font-weight: 600; line-height: 1.3; }
h4 { font-family: var(--font-body); font-size: var(--text-xl); font-weight: 700; color: var(--clr-text-dark); line-height: 1.4; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-teal);
  margin-bottom: var(--sp-3);
}
.eyebrow-light { color: var(--clr-gold-light); }

.section-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-teal), var(--clr-gold));
  border-radius: 2px;
  margin: var(--sp-4) auto var(--sp-8);
}
.section-divider.left { margin-left: 0; }

.lead-text {
  font-size: var(--text-lg);
  color: var(--clr-body-light);
  max-width: 640px;
  line-height: 1.75;
}

/* 5. LAYOUT */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section { padding-block: var(--section-py); }
.section-sm { padding-block: var(--section-sm); }

.bg-white      { background: var(--clr-white); }
.bg-cream      { background: var(--clr-cream); }
.bg-sand       { background: var(--clr-sand); }
.bg-navy       { background: var(--clr-navy); }
.bg-teal-light { background: var(--clr-teal-light); }
.bg-teal-xlight { background: var(--clr-teal-xlight); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.btn-group   { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }

/* 6. SCROLL REVEAL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
}
.fade-in {
  opacity: 0;
  transition: opacity 700ms var(--ease-out);
}
.fade-up.visible, .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger .fade-up:nth-child(2) { transition-delay: 80ms; }
.stagger .fade-up:nth-child(3) { transition-delay: 160ms; }
.stagger .fade-up:nth-child(4) { transition-delay: 240ms; }
.stagger .fade-up:nth-child(5) { transition-delay: 320ms; }

/* Reveal animation (FAQ / staggered items) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* FAQ chevron span */
.faq-chevron { display: inline-flex; align-items: center; flex-shrink: 0; }

/* 7. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep on all buttons */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(255,255,255,0.18) 50%,
    transparent 70%
  );
  background-size: 250% 100%;
  background-position: 200% 0;
  transition: background-position 0s;
  pointer-events: none;
}
.btn:hover::after {
  background-position: -50% 0;
  transition: background-position 500ms ease;
}

.btn-primary {
  background: var(--clr-gold);
  color: var(--clr-navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--clr-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}

.btn-secondary {
  background: var(--clr-teal);
  color: white;
  box-shadow: 0 4px 14px rgba(42, 140, 148, 0.28);
}
.btn-secondary:hover {
  background: var(--clr-teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-teal {
  background: transparent;
  border: 2px solid var(--clr-teal);
  color: var(--clr-teal);
}
.btn-outline-teal:hover {
  background: var(--clr-teal-light);
}

.btn-teal {
  background: var(--clr-teal);
  color: white;
  box-shadow: 0 4px 14px rgba(42,140,148,0.28);
}
.btn-teal:hover {
  background: var(--clr-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42,140,148,0.35);
}

.btn-outline-navy {
  background: transparent;
  border: 2px solid var(--clr-navy);
  color: var(--clr-navy);
}
.btn-outline-navy:hover {
  background: var(--clr-navy);
  color: white;
}

.btn-lg   { padding: 1.0625rem 2.5rem; font-size: 1.0625rem; }
.btn-sm   { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn--sent { background: var(--clr-teal) !important; color: white !important; }
.btn--full { width: 100%; }

/* Screen reader only utility */
.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;
}

/* Utility classes */
.text-gold     { color: var(--clr-gold-light); }
.text-white-85 { color: rgba(255,255,255,0.85); }
.text-ghost    { color: rgba(255,255,255,0.4); }
.delay-1       { transition-delay: 0.1s; }
.delay-2       { transition-delay: 0.2s; }
.delay-3       { transition-delay: 0.3s; }
.delay-4       { transition-delay: 0.4s; }

/* Trust band (navy section reused on about page) */
.trust-band {
  background: var(--clr-navy-dark);
  padding: var(--sp-16) 0;
}
.trust-band .eyebrow { color: var(--clr-gold-light); }
.trust-band h2 { color: white; }
.trust-band .section-divider { background: linear-gradient(90deg, var(--clr-gold), var(--clr-teal-light)); }

/* 8. HEADER / NAV */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  transition: background var(--dur-slow) var(--ease-out),
              box-shadow var(--dur-slow) var(--ease-out),
              padding var(--dur-slow) var(--ease-out);
  padding: 1.25rem 0;
}

/* Shimmer gradient line at bottom of header — always on services page, scroll-triggered on homepage */
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    var(--clr-gold) 0%, var(--clr-teal) 30%,
    var(--clr-gold-light) 55%, var(--clr-teal-dark) 75%, var(--clr-gold) 100%
  );
  background-size: 300% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: headerShimmer 5s linear infinite paused;
  pointer-events: none;
  z-index: 1;
}

@keyframes headerShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.site-header.transparent { background: transparent; }
.site-header.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}
.site-header.solid::after,
.site-header.always-solid::after {
  opacity: 1;
  animation-play-state: running;
}

.site-header.always-solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

/* Logo swap */
.site-header.transparent .nav-logo-light { display: block; }
.site-header.transparent .nav-logo-dark  { display: none; }
.site-header.solid .nav-logo-light       { display: none; }
.site-header.solid .nav-logo-dark        { display: block; }
.site-header.always-solid .nav-logo-light { display: none; }
.site-header.always-solid .nav-logo-dark  { display: block; }

.nav-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: height var(--dur-slow) var(--ease-out),
              filter var(--dur-base) var(--ease-out),
              opacity var(--dur-base) var(--ease-out);
}
.site-header.solid .nav-logo img,
.site-header.always-solid .nav-logo img { height: 72px; }
.nav-logo-dark { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
  transition: color var(--dur-fast), background var(--dur-fast);
  position: relative;
  padding: 0.3em 0.6em;
  border-radius: var(--radius-sm);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.6em; right: 0.6em;
  height: 2px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Transparent state */
.site-header.transparent .nav-links a { color: rgba(255,255,255,0.9); }
.site-header.transparent .nav-links a:hover {
  color: white;
  background: rgba(255,255,255,0.12);
}

/* Solid / always-solid state */
.site-header.solid .nav-links a,
.site-header.always-solid .nav-links a { color: var(--clr-body); }
.site-header.solid .nav-links a:hover,
.site-header.always-solid .nav-links a:hover {
  color: var(--clr-teal-dark);
  background: var(--clr-teal-xlight);
}

/* Nav phone */
.nav-phone {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--clr-teal);
  letter-spacing: 0.02em;
  transition: color var(--dur-fast);
  display: none;
}
.site-header.solid .nav-phone,
.site-header.always-solid .nav-phone { display: inline; }
.nav-phone:hover { color: var(--clr-teal-dark); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-3) 0;
  border: 1px solid var(--clr-border-light);
  z-index: var(--z-dropdown);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: var(--sp-3) var(--sp-6);
  color: var(--clr-body) !important;
  font-size: 0.9rem;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nav-dropdown-menu a:hover {
  background: var(--clr-teal-light);
  color: var(--clr-navy) !important;
}
.nav-dropdown-menu a::after { display: none !important; }

.nav-cta { flex-shrink: 0; display: flex; align-items: center; gap: var(--sp-4); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  cursor: pointer;
  z-index: calc(var(--z-sticky) + 5);
}
.hamburger span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-out);
}
.site-header.solid .hamburger span,
.site-header.always-solid .hamburger span { background: var(--clr-navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0; left: auto;
  width: min(360px, 90vw);
  height: 100vh;
  background: white;
  z-index: var(--z-modal);
  transform: translateX(0);
  transition: transform var(--dur-slow) var(--ease-out);
  overflow-y: auto;
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  box-shadow: -8px 0 32px rgba(14,39,64,0.14);
  border: none;
  margin: 0;
  max-height: unset;
}
.nav-drawer:not([open]) { display: none; }
@starting-style {
  .nav-drawer[open] { transform: translateX(100%); }
}
.nav-drawer::backdrop {
  background: rgba(14, 39, 64, 0.5);
  transition: opacity var(--dur-slow) var(--ease-out);
}
.nav-drawer-header { display: flex; align-items: center; justify-content: space-between; }
.nav-drawer-close {
  background: none; border: none; cursor: pointer;
  padding: var(--sp-2); margin-right: calc(var(--sp-2) * -1);
  color: var(--clr-body); line-height: 1;
  font-size: 1.5rem;
}
.nav-drawer-close:hover { color: var(--clr-teal); }
.nav-drawer-logo img { height: 72px; }
.nav-drawer-links { display: flex; flex-direction: column; gap: var(--sp-2); }
.nav-drawer-links a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-weight: 600;
  color: var(--clr-navy);
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast);
  font-size: 1.05rem;
}
.nav-drawer-links a:hover { background: var(--clr-teal-light); color: var(--clr-teal-dark); }
.nav-drawer-sub {
  display: flex; flex-direction: column; gap: var(--sp-1);
  padding-left: var(--sp-4); margin-top: var(--sp-1);
}
.nav-drawer-sub a { font-size: 0.9rem; font-weight: 500; color: var(--clr-body); padding: var(--sp-2) var(--sp-3); }
.nav-drawer-contact {
  margin-top: auto;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--clr-border-light);
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.nav-drawer-contact a {
  display: flex; align-items: center; gap: var(--sp-3);
  color: var(--clr-body); font-size: 0.95rem;
}
.nav-drawer-contact svg { color: var(--clr-teal); flex-shrink: 0; }
/* .nav-overlay replaced by .nav-drawer::backdrop (B-1) */

/* 9. WAVE DIVIDERS */
.wave-div { display: block; line-height: 0; overflow: hidden; }
.wave-div svg { display: block; width: 100%; height: auto; }

/* 10. HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-bg video,
.hero-video-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,39,64,0.85) 0%, rgba(28,97,105,0.62) 100%);
  z-index: 1;
}
.hero-watermark {
  position: absolute;
  bottom: 6%;
  left: -1%;
  font-family: var(--font-script);
  font-size: clamp(4rem, 11vw, 10rem);
  color: white;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding-block: calc(var(--header-h) + var(--sp-12)) var(--sp-20);
}
.hero h1 { color: white; }
.hero .eyebrow { color: var(--clr-gold-light); letter-spacing: 0.22em; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  margin-top: var(--sp-8);
}
.hero-trust-item {
  display: flex; align-items: center; gap: var(--sp-2);
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem; font-weight: 500;
}
.hero-trust-item svg { color: var(--clr-gold); flex-shrink: 0; }

/* Interior Page Hero */
.page-hero {
  position: relative;
  height: clamp(320px, 45vw, 500px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  margin-top: var(--header-h);
}
.page-hero-sm { height: clamp(220px, 28vw, 320px); }
.page-hero-gradient {
  background: linear-gradient(135deg, var(--clr-navy-dark) 0%, var(--clr-navy) 50%, var(--clr-teal-dark) 100%);
}
.page-hero-video { position: absolute; inset: 0; z-index: 0; }
.page-hero-video video { width: 100%; height: 100%; object-fit: cover; }
.page-hero-img,
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-img img,
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,39,64,0.78) 0%, rgba(26,70,100,0.58) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: var(--sp-12) 0;
  text-align: center;
}
.page-hero-content h1 { color: white; font-size: var(--text-4xl); }
.page-hero-content .eyebrow { color: var(--clr-gold-light); }
.page-hero-content p { margin-inline: auto; }
.page-hero-sub {
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-top: var(--sp-3);
  margin-inline: auto;
  font-size: var(--text-lg);
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  margin-bottom: var(--sp-4); flex-wrap: wrap;
}
.breadcrumb a, .breadcrumb span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65); font-weight: 500;
}
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { color: rgba(255,255,255,0.4); }

/* 11. TRUST BAR */
.trust-bar {
  background: var(--clr-navy);
  padding: var(--sp-5) 0;
}
.trust-bar-inner {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: var(--sp-6);
}
.trust-item {
  display: flex; align-items: center; gap: var(--sp-3);
  color: white; font-size: 0.9rem; font-weight: 500;
}
.trust-item svg { color: var(--clr-gold); flex-shrink: 0; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.2); }

/* 12. SERVICE CARDS — HOMEPAGE (v2 full-bleed portrait style) */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: var(--sp-12);
}
.svc-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  display: block;
  box-shadow: var(--shadow-md);
  outline: none;
  text-decoration: none;
}
.svc-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card:hover img,
.svc-card:focus-visible img { transform: scale(1.08); }
.svc-card-body {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,39,64,0.96) 0%,
    rgba(22,97,105,0.78) 38%,
    rgba(14,39,64,0.12) 68%,
    transparent 100%
  );
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
  color: white;
}
.svc-card-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-gold); flex-shrink: 0; margin-bottom: 0.75rem;
  transform: translateY(6px); opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.svc-card:hover .svc-card-icon,
.svc-card:focus-visible .svc-card-icon { transform: translateY(0); opacity: 1; }
.svc-card h3 { color: white; font-size: 1.12rem; margin-bottom: 0.35rem; font-family: var(--font-heading); }
.svc-card-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.82);
  line-height: 1.55; max-height: 0; overflow: hidden;
  transition: max-height 0.45s ease;
}
.svc-card:hover .svc-card-desc,
.svc-card:focus-visible .svc-card-desc { max-height: 5rem; }
.svc-card-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--clr-gold); opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}
.svc-card:hover .svc-card-cta,
.svc-card:focus-visible .svc-card-cta { opacity: 1; transform: translateY(0); }
.svc-card-cta svg { transition: transform 0.2s ease; }
.svc-card:hover .svc-card-cta svg { transform: translateX(3px); }

/* Touch devices: always show */
@media (hover: none) {
  .svc-card .svc-card-icon  { transform: translateY(0); opacity: 1; }
  .svc-card .svc-card-desc  { max-height: 4.5rem; }
  .svc-card .svc-card-cta   { opacity: 1; transform: translateY(0); }
}

/* 13. SECTION HEADER */
.section-header { max-width: 620px; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header h2 { margin-bottom: var(--sp-2); }

/* 14. ICON GRID */
.icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.icon-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow) var(--ease-out);
}
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icon-ring {
  width: 64px; height: 64px;
  background: var(--clr-teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5);
  color: var(--clr-teal);
}
.icon-ring svg { width: 28px; height: 28px; }
.icon-card h4 { color: var(--clr-navy); margin-bottom: var(--sp-3); font-size: 1.0625rem; }
.icon-card p  { font-size: 0.9rem; color: var(--clr-body); }

/* 15. SPLIT SECTION */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-image-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px;
  background: var(--clr-teal-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.split-content { display: flex; flex-direction: column; gap: var(--sp-6); }
.feature-list  { display: flex; flex-direction: column; gap: var(--sp-4); }
.feature-item  { display: flex; gap: var(--sp-4); align-items: flex-start; }
.feature-icon  {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--clr-teal-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-teal);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-text h4 { color: var(--clr-navy); margin-bottom: var(--sp-1); font-size: 1rem; }
.feature-text p  { font-size: 0.9375rem; color: var(--clr-body); }

/* 16. PROCESS STEPS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  position: relative;
  margin-top: var(--sp-12);
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 16.67%; right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-teal), var(--clr-gold));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 64px; height: 64px;
  background: var(--clr-gold);
  color: var(--clr-navy-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 700;
  margin: 0 auto var(--sp-5);
  box-shadow: var(--shadow-gold);
  position: relative; z-index: 1;
}
.process-step h4 { color: var(--clr-navy); margin-bottom: var(--sp-3); }
.process-step p  { font-size: 0.9rem; color: var(--clr-body); line-height: 1.65; }

/* 17. STATS STRIP */
.stats-strip {
  background: linear-gradient(135deg, var(--clr-navy-dark) 0%, var(--clr-navy) 42%, var(--clr-teal-dark) 100%);
  padding-block: var(--sp-20);
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(42,140,148,0.18), transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  position: relative; z-index: 1;
}
.stat-item  { text-align: center; }
.stat-count { opacity: 0; transition: opacity 0.3s; }
.stat-count.counting { opacity: 1; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  display: flex; align-items: flex-end; justify-content: center;
}
.stat-suffix { font-size: 0.6em; padding-bottom: 0.1em; }
.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem; font-weight: 500;
  margin-top: var(--sp-3);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* 18. TESTIMONIALS */
.testimonials-section { background: var(--clr-cream); }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform 400ms var(--ease-in-out);
}
.testimonial-slide { min-width: 100%; padding: 0 var(--sp-4); }
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-10);
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin-inline: auto;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem; line-height: 1;
  color: var(--clr-teal-light);
  position: absolute; top: 1rem; left: 2rem;
  pointer-events: none; aria-hidden: true;
}
.star-rating {
  display: flex; gap: 3px; color: var(--clr-gold); margin-bottom: var(--sp-4);
}
.star-rating svg {
  width: 18px; height: 18px; fill: var(--clr-gold); color: var(--clr-gold);
}
.testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--clr-text-dark);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
  position: relative; z-index: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: var(--sp-4);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--clr-teal), var(--clr-teal-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.05rem;
  flex-shrink: 0;
}
.testimonial-info strong { display: block; color: var(--clr-navy); font-size: 0.9375rem; }
.testimonial-info span  { font-size: 0.82rem; color: var(--clr-body-light); }
.testimonial-controls {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-4); margin-top: var(--sp-8);
}
.testimonial-btn {
  width: 44px; height: 44px;
  border-radius: 50%; background: white;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-navy); cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.testimonial-btn:hover { background: var(--clr-teal); color: white; }
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%; background: var(--clr-border);
  cursor: pointer; transition: background var(--dur-fast), transform var(--dur-fast);
}
.testimonial-dot.active { background: var(--clr-teal); transform: scale(1.3); }

/* 19. GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-10);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(14,39,64,0.45);
  display: flex; align-items: center; justify-content: center;
  color: white; opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(14,39,64,0.96);
  z-index: var(--z-modal);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); object-fit: contain; }
.lightbox-close {
  position: absolute; top: var(--sp-5); right: var(--sp-5);
  color: white; cursor: pointer; opacity: 0.7;
  transition: opacity var(--dur-fast);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: white; cursor: pointer; opacity: 0.7;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  transition: opacity var(--dur-fast), background var(--dur-fast);
}
.lightbox-prev { left: var(--sp-5); }
.lightbox-next { right: var(--sp-5); }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; background: rgba(255,255,255,0.2); }

/* 20. QUOTE FORM */
.quote-panel {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.quote-panel-left {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(160deg, var(--clr-navy-dark) 0%, var(--clr-navy) 50%, var(--clr-teal-dark) 100%);
  color: white;
  display: flex; flex-direction: column; gap: var(--sp-8);
  min-height: 100%;
}
.quote-panel-left h2 { color: white; }
.quote-panel-left .eyebrow { color: var(--clr-gold-light); }
.quote-panel-left p { color: rgba(255,255,255,0.75); line-height: 1.7; }
.quote-step-list { display: flex; flex-direction: column; gap: var(--sp-5); }
.quote-step {
  display: flex; gap: var(--sp-4); align-items: flex-start;
}
.quote-step-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  color: var(--clr-gold-light);
}
.quote-step-text strong { display: block; color: white; font-size: 0.9rem; margin-bottom: 2px; }
.quote-step-text span  { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.quote-panel-right {
  padding: clamp(2rem, 4vw, 3.5rem);
}
.form-group { margin-bottom: var(--sp-5); }
.form-group label {
  display: block; font-size: var(--text-sm); font-weight: 600;
  color: var(--clr-navy); margin-bottom: var(--sp-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--clr-cream);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  color: var(--clr-text-dark);
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
  font-size: var(--text-base);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-teal);
  box-shadow: 0 0 0 3px rgba(42,140,148,0.15);
  background: white;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--clr-body-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-submit-note { font-size: 0.8rem; color: var(--clr-body-light); margin-top: var(--sp-3); text-align: center; }

/* ── Quote Form — Honeypot (anti-spam) ───────────────────────────────────── */
/* Hidden from real users; bots fill it in and get silently discarded        */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* ── Quote Form — Contact Method Radio Group ─────────────────────────────── */
.contact-method-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.contact-method-fieldset legend {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-navy);
  margin-bottom: var(--sp-3);
}
.contact-method-options {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-base);
  color: var(--clr-body);
  cursor: pointer;
  font-weight: 400;
}
.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--clr-teal);
  cursor: pointer;
  flex-shrink: 0;
}

/* ── Quote Form — Field label helpers ───────────────────────────────────── */
.req-star     { color: var(--clr-teal-dark); }
.optional-tag { font-weight: 400; color: var(--clr-body-light); font-size: 0.85em; }

/* ── Quote Form — Inline error banner ───────────────────────────────────── */
.form-error-banner {
  background: #fff5f5;
  border: 1.5px solid #f87171;
  border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-4);
  color: #b91c1c;
  font-size: var(--text-sm);
  margin-bottom: var(--sp-4);
  line-height: 1.5;
}

/* ── Quote Form — Success panel (replaces form after submission) ─────────── */
.form-success-panel {
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--clr-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  font-weight: 700;
  margin: 0 auto var(--sp-5);
}
.form-success-panel h3 {
  color: var(--clr-navy);
  font-size: var(--text-xl);
  margin-bottom: var(--sp-4);
}
.form-success-panel p {
  color: var(--clr-body);
  font-size: var(--text-base);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto var(--sp-6);
}

/* Inclusions list (services page) */
.inclusions-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.inclusion-item {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: 0.9rem; color: var(--clr-body); line-height: 1.5;
}
.inclusion-item svg { color: var(--clr-teal); flex-shrink: 0; margin-top: 1px; }

/* 21. FAQ ACCORDION */
.faq-section-title {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--clr-teal);
  margin: var(--sp-12) 0 var(--sp-6);
  max-width: 800px; margin-inline: auto;
}
.faq-section-title:first-child { margin-top: 0; }

.faq-list {
  display: flex; flex-direction: column;
  gap: var(--sp-3);
  max-width: 800px; margin-inline: auto;
}
.faq-item {
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out);
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: var(--clr-teal); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--clr-navy); text-align: left; gap: var(--sp-4);
  background: none; border: none; cursor: pointer;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-fast);
}
.faq-question:hover { background: var(--clr-teal-light); }
.faq-question[aria-expanded="true"] { background: var(--clr-teal-light); }
.faq-chevron {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--clr-border-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--clr-body);
  transition: all var(--dur-base) var(--ease-out);
}
.faq-question[aria-expanded="true"] .faq-chevron {
  background: var(--clr-teal); color: white; transform: rotate(180deg);
}
.faq-question svg { flex-shrink: 0; transition: none; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding var(--dur-base) var(--ease-out);
  padding: 0 var(--sp-6); display: block;
  font-size: 0.92rem; color: var(--clr-body); line-height: 1.75;
}
.faq-answer.open { max-height: 400px; padding: var(--sp-4) var(--sp-6) var(--sp-5); }
.faq-answer p { margin-bottom: 0; }

/* 22. CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--clr-navy-dark) 0%, var(--clr-navy) 50%, var(--clr-teal-dark) 100%);
  padding-block: var(--sp-20);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 60%, rgba(42,140,148,0.13), transparent 70%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: white; margin-bottom: var(--sp-4); }
.cta-band p  { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto var(--sp-10); line-height: 1.7; }
.cta-phone-note { color: rgba(255,255,255,0.55); font-size: 0.875rem; margin-top: var(--sp-5); }
.cta-phone-note a { color: rgba(255,255,255,0.8); font-weight: 600; }
.cta-phone-note a:hover { color: white; }

/* 23. FOOTER */
.site-footer {
  background: var(--clr-navy-dark);
  border-top: 3px solid var(--clr-gold);
  padding-top: var(--sp-16);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 150px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--sp-4);
}
.footer-brand p {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; max-width: 280px;
}
.footer-social { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.footer-social a:hover { background: var(--clr-teal); color: white; }
.footer-col h5 {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--clr-gold); margin-bottom: var(--sp-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a {
  font-size: 0.875rem; color: rgba(255,255,255,0.55);
  transition: color var(--dur-fast);
}
.footer-col a:hover { color: white; }
.footer-col address {
  font-style: normal; display: flex; flex-direction: column; gap: var(--sp-3);
}
.footer-col address a { display: flex; align-items: flex-start; gap: var(--sp-3); }
.footer-col address svg { color: var(--clr-teal); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  background: var(--clr-navy-dark);
  padding: var(--sp-5) 0;
  text-align: center;
}
.footer-bottom p {
  font-size: var(--text-sm); color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast);
}
.footer-bottom a:hover { color: white; }

/* 24. SERVICE SECTION (services.html — v2 style) */
.svc-section { padding-block: var(--sp-20); background: white; }
.svc-section.bg-cream { background: var(--clr-cream); }
.svc-section.bg-teal-lt { background: var(--clr-teal-light); }

.svc-tab-nav {
  position: sticky;
  top: var(--header-h); z-index: 20;
  background: white;
  border-bottom: 2px solid var(--clr-border-light);
  box-shadow: 0 2px 8px rgba(22,59,90,0.07);
}
.svc-tab-inner {
  display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-px);
}
.svc-tab-inner::-webkit-scrollbar { display: none; }
.svc-tab {
  flex-shrink: 0; padding: 1rem 1.4rem;
  font-size: 0.875rem; font-weight: 700;
  color: var(--clr-body);
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
  white-space: nowrap; text-decoration: none;
}
.svc-tab:hover, .svc-tab.active { color: var(--clr-teal); border-bottom-color: var(--clr-teal); }

.svc-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-bottom: var(--sp-12);
}
.svc-intro-grid.reverse { direction: rtl; }
.svc-intro-grid.reverse > * { direction: ltr; }
.svc-intro-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); aspect-ratio: 4/3;
}
.svc-intro-img img { width: 100%; height: 100%; object-fit: cover; }

.svc-eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--clr-teal); margin-bottom: 0.6rem;
}
.svc-for-list {
  background: var(--clr-teal-light); border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem; margin: var(--sp-5) 0;
}
.svc-for-list h5 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--clr-teal); margin-bottom: 0.6rem;
}
.svc-for-list ul { display: flex; flex-wrap: wrap; gap: 0.3rem 0.6rem; }
.svc-for-list li { font-size: 0.85rem; color: var(--clr-navy); font-weight: 600; }
.svc-for-list li::before { content: '✓ '; color: var(--clr-teal); }
.price-note { font-size: 0.82rem; color: var(--clr-body-light); margin-top: 0.5rem; }
.price-note strong { color: var(--clr-navy); }
.svc-section-cta {
  display: flex; align-items: center; gap: var(--sp-4);
  flex-wrap: wrap; margin-top: var(--sp-6);
}

/* Checklist Block */
.svc-checklist-block {
  background: white; border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg); padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
}
.svc-section.bg-cream .svc-checklist-block { background: var(--clr-cream); }
.svc-checklist-block h4 {
  color: var(--clr-navy); margin-bottom: var(--sp-5);
  display: flex; align-items: center; gap: 0.6rem;
}
.svc-checklist-block .icon-ring-sm {
  width: 28px; height: 28px; background: var(--clr-teal-light);
  border-radius: 50%; display: inline-flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--clr-teal);
}
.checklist-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem 2rem;
}
.checklist-cols li {
  font-size: 0.9rem; color: var(--clr-text-dark);
  padding: 0.35rem 0; border-bottom: 1px solid rgba(22,59,90,0.05);
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.checklist-cols li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  background: var(--clr-teal-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%232A8C94' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center no-repeat;
  border-radius: 50%;
}

/* Service Process Steps (4-step, services page) */
.svc-process { margin-top: var(--sp-12); }
.svc-process > h3 { text-align: center; color: var(--clr-navy); margin-bottom: var(--sp-8); }
.process-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6); position: relative;
}
.process-4::before {
  content: ''; position: absolute; top: 23px;
  left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--clr-teal-light), var(--clr-teal), var(--clr-gold), var(--clr-teal-light));
}
.ps-card { text-align: center; }
.ps-num {
  width: 48px; height: 48px;
  background: var(--clr-navy); color: var(--clr-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  margin: 0 auto var(--sp-4); position: relative; z-index: 1;
  box-shadow: 0 4px 12px rgba(22,59,90,0.25);
}
.ps-card h5 { color: var(--clr-navy); margin-bottom: 0.35rem; font-size: 0.9rem; font-family: var(--font-body); font-weight: 700; }
.ps-card p  { font-size: 0.8rem; color: var(--clr-body); line-height: 1.6; }

/* Service FAQ */
.svc-faq { margin-top: var(--sp-12); max-width: 700px; margin-left: auto; margin-right: auto; }
.svc-faq > h3 { text-align: center; color: var(--clr-navy); margin-bottom: var(--sp-6); }

/* Service Testimonial */
.svc-testi {
  margin-top: var(--sp-10); background: white;
  border-left: 4px solid var(--clr-gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--sp-8) var(--sp-10);
  max-width: 680px; margin-left: auto; margin-right: auto;
  position: relative;
}
.svc-section.bg-cream .svc-testi { background: white; }
.svc-testi::before {
  content: '\201C';
  font-family: var(--font-display); font-size: 5rem;
  line-height: 1; color: var(--clr-navy); opacity: 0.05;
  position: absolute; top: 0.25rem; left: 1.25rem;
  pointer-events: none;
}
.star-rating--sm { font-size: 0.95rem; }
.svc-testi blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; line-height: 1.7;
  color: var(--clr-text-dark); margin-bottom: 0.6rem;
}
.svc-testi-author { font-size: 0.82rem; font-weight: 700; color: var(--clr-navy); }
.svc-testi-author span { font-weight: 400; color: var(--clr-body-light); margin-left: 0.25rem; }

/* Add-Ons */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--sp-6); margin-top: var(--sp-10);
}
.addon-card {
  background: white; border-radius: var(--radius-lg);
  padding: var(--sp-6); text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base), transform var(--dur-base);
}
.addon-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.addon-icon {
  width: 52px; height: 52px; background: var(--clr-teal-light);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto var(--sp-4); color: var(--clr-teal);
}
.addon-card h4 { font-size: 0.95rem; color: var(--clr-navy); margin-bottom: 0.4rem; }
.addon-card p  { font-size: 0.82rem; color: var(--clr-body); line-height: 1.6; }

/* 25. CHIPS */
.chip {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .icon-grid   { grid-template-columns: repeat(2, 1fr); }
  .svc-grid    { grid-template-columns: repeat(2, 1fr); }
  .svc-grid .svc-card { aspect-ratio: 3/3.5; }
}

@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section.reverse { direction: ltr; }
  .split-image { height: 320px; }
  .quote-panel { grid-template-columns: 1fr; }
  .svc-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .svc-intro-grid.reverse { direction: ltr; }
  .process-4 { grid-template-columns: repeat(2, 1fr); }
  .process-4::before { display: none; }
  .checklist-cols { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn:not(.mobile-cta), .nav-phone { display: none; }
  .hamburger { display: flex; }
  .page-hero { align-items: center; }
  .page-hero-content { padding: var(--sp-8) 0; }
  .page-hero-content h1 { font-size: var(--text-3xl); }
  .page-hero-sub { font-size: var(--text-base); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-grid .svc-card { aspect-ratio: 3/3; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .icon-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { padding: var(--sp-6); }
  .testimonial-card::before { font-size: 4rem; left: 1rem; }
  .footer-main { grid-template-columns: 1fr; }
  .svc-tab-nav { top: calc(var(--header-h) - 10px); }
  .process-4 { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; justify-content: center; }
  .svc-testi { padding: var(--sp-6); }
  .addons-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: var(--sp-4); }
}


/* 25. CONTACT PAGE */
/* ── Contact-page-specific styles ───────────────────── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: var(--sp-12);
      align-items: start;
    }
    .contact-info { display: flex; flex-direction: column; gap: var(--sp-8); }

    .contact-method { display: flex; gap: var(--sp-5); align-items: flex-start; }
    .contact-method-icon {
      width: 48px; height: 48px;
      background: var(--clr-teal-xlight);
      border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      color: var(--clr-teal-dark); flex-shrink: 0;
    }
    .contact-method-body strong {
      display: block; font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--clr-teal-dark); margin-bottom: var(--sp-1);
    }
    .contact-method-body a,
    .contact-method-body p,
    .contact-method-body span { color: var(--clr-navy); font-size: 1rem; font-weight: 600; margin: 0; }
    .contact-method-body a:hover { color: var(--clr-teal); }

    .hours-table { width: 100%; border-collapse: collapse; margin-top: var(--sp-3); }
    .hours-table tr { border-bottom: 1px solid var(--clr-border-light); }
    .hours-table tr:last-child { border-bottom: none; }
    .hours-table td { padding: var(--sp-2) 0; font-size: 0.9rem; }
    .hours-table td:first-child { color: var(--clr-navy); font-weight: 600; }
    .hours-table td:last-child { color: var(--clr-body-light); text-align: right; }
    .hours-table tr.today td { color: var(--clr-teal-dark); font-weight: 700; }

    .area-badges { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
    .area-badge {
      background: var(--clr-teal-xlight); color: var(--clr-teal-dark);
      border-radius: var(--radius-full); padding: var(--sp-1) var(--sp-4);
      font-size: 0.8rem; font-weight: 600;
    }

    .map-embed {
      width: 100%; border-radius: var(--radius-lg);
      overflow: hidden; background: var(--clr-border-light);
      border: 1px solid var(--clr-border);
    }
    .map-heading { padding: var(--sp-5) var(--sp-6) var(--sp-4); }
    .map-heading h3 { font-size: 1.1rem; font-weight: 700; color: var(--clr-navy); margin-bottom: var(--sp-1); }
    .map-heading p { font-size: 0.85rem; color: var(--clr-body-light); margin: 0; line-height: 1.6; }
    #service-area-map { width: 100%; height: 380px; display: block; }
    @media (max-width: 768px) { #service-area-map { height: 260px; } }

    .contact-form-card {
      background: white; border-radius: var(--radius-xl);
      padding: var(--sp-10) var(--sp-12); box-shadow: var(--shadow-xl);
    }
    .contact-form-card h2 { color: var(--clr-navy); margin-bottom: var(--sp-2); }
    .contact-form-card > p { color: var(--clr-body-light); margin-bottom: var(--sp-7); font-size: 0.925rem; line-height: 1.7; }

    .trust-strip {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: var(--sp-8); text-align: center;
    }
    .trust-strip-emoji { font-size: 2rem; margin-bottom: var(--sp-3); }
    .trust-strip h4 { font-size: 1rem; margin-bottom: var(--sp-1); }
    .trust-strip p { font-size: 0.85rem; color: var(--clr-body-light); margin: 0; }

    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: 1fr; }
      .contact-form-card { padding: var(--sp-8); }
      .trust-strip { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .contact-form-card { padding: var(--sp-6); }
    }


/* 26. PRIVACY POLICY PAGE */
/* ── Privacy-page-specific styles ───────────────────── */
    .policy-body {
      max-width: 780px;
      margin: 0 auto;
    }
    .policy-meta {
      display: flex;
      gap: var(--sp-5);
      flex-wrap: wrap;
      margin-bottom: var(--sp-10);
      padding-bottom: var(--sp-8);
      border-bottom: 2px solid var(--clr-border);
    }
    .policy-meta-item {
      display: flex;
      align-items: center;
      gap: var(--sp-2);
      font-size: 0.875rem;
      color: var(--clr-body-light);
    }
    .policy-meta-item svg { color: var(--clr-teal); }

    .policy-toc {
      background: var(--clr-teal-xlight);
      border-radius: var(--radius-lg);
      padding: var(--sp-7) var(--sp-8);
      margin-bottom: var(--sp-10);
    }
    .policy-toc h3 {
      font-size: 0.95rem;
      color: var(--clr-navy);
      margin-bottom: var(--sp-4);
      font-family: var(--font-body);
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .policy-toc ol {
      list-style: decimal;
      padding-left: var(--sp-6);
      margin: 0;
    }
    .policy-toc ol li {
      margin-bottom: var(--sp-2);
    }
    .policy-toc ol li a {
      color: var(--clr-teal-dark);
      font-size: 0.875rem;
      text-decoration: none;
    }
    .policy-toc ol li a:hover { text-decoration: underline; }

    .policy-section {
      margin-bottom: var(--sp-12);
      scroll-margin-top: 100px;
    }
    .policy-section h2 {
      font-size: 1.35rem;
      color: var(--clr-navy);
      margin-bottom: var(--sp-4);
      padding-bottom: var(--sp-3);
      border-bottom: 1px solid var(--clr-border);
    }
    .policy-section p {
      color: var(--clr-body);
      line-height: 1.85;
      margin-bottom: var(--sp-4);
      font-size: 0.925rem;
    }
    .policy-section ul {
      padding-left: var(--sp-6);
      margin-bottom: var(--sp-4);
    }
    .policy-section ul li {
      color: var(--clr-body);
      line-height: 1.85;
      margin-bottom: var(--sp-2);
      font-size: 0.925rem;
    }
    .policy-section a { color: var(--clr-teal-dark); }
    .policy-section a:hover { text-decoration: underline; }

    .policy-contact-box {
      background: var(--clr-navy);
      color: white;
      border-radius: var(--radius-lg);
      padding: var(--sp-8) var(--sp-10);
      margin-top: var(--sp-12);
    }
    .policy-contact-box h3 { color: white; margin-bottom: var(--sp-3); font-size: 1.1rem; }
    .policy-contact-box p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; margin-bottom: var(--sp-2); }
    .policy-contact-box a { color: var(--clr-teal-light); }


/* 27. GALLERY PAGE */
/* ── Gallery-page-specific styles ───────────────────── */
    .gallery-filter {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-3);
      justify-content: center;
      margin-bottom: var(--sp-10);
    }
    .filter-btn {
      padding: var(--sp-2) var(--sp-6);
      border-radius: var(--radius-full);
      border: 1.5px solid var(--clr-border);
      background: white;
      color: var(--clr-body);
      font-size: 0.875rem;
      font-weight: 500;
      cursor: pointer;
      transition: all var(--motion-sm);
      font-family: var(--font-body);
    }
    .filter-btn:hover,
    .filter-btn.active {
      background: var(--clr-teal);
      border-color: var(--clr-teal);
      color: white;
    }

    .gallery-full-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--sp-4);
    }
    .gallery-full-grid .gallery-item {
      border-radius: var(--radius-md);
      overflow: hidden;
      cursor: pointer;
      position: relative;
    }
    .gallery-full-grid .gallery-item img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease;
    }
    .gallery-full-grid .gallery-item:hover img {
      transform: scale(1.06);
    }
    .gallery-full-grid .gallery-item.tall img {
      height: 360px;
    }
    .gallery-full-grid .gallery-item.wide {
      grid-column: span 2;
    }
    .gallery-full-grid .gallery-item.wide img {
      height: 240px;
    }

    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(22,59,90,0.85) 0%, transparent 100%);
      color: white;
      padding: var(--sp-5) var(--sp-4) var(--sp-4);
      font-size: 0.8rem;
      opacity: 0;
      transition: opacity var(--motion-md);
    }
    .gallery-item:hover .gallery-caption {
      opacity: 1;
    }

    .gallery-stats {
      display: flex;
      justify-content: center;
      gap: var(--sp-12);
      margin: var(--sp-12) 0 0;
      padding: var(--sp-8);
      background: var(--clr-teal-xlight);
      border-radius: var(--radius-xl);
    }
    .gallery-stat { text-align: center; }
    .gallery-stat-num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: var(--clr-navy);
      line-height: 1;
    }
    .gallery-stat-label { font-size: 0.85rem; color: var(--clr-body-light); margin-top: var(--sp-1); }

    @media (max-width: 1024px) {
      .gallery-full-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
      .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-full-grid .gallery-item.wide { grid-column: span 1; }
      .gallery-stats { flex-wrap: wrap; gap: var(--sp-6); }
    }
    @media (max-width: 480px) {
      .gallery-full-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
      .gallery-full-grid .gallery-item img { height: 160px; }
      .gallery-full-grid .gallery-item.tall img { height: 220px; }
    }


/* 28. TESTIMONIALS PAGE */
/* ── Testimonials-page-specific styles ───────────────── */
    .rating-summary {
      display: flex;
      align-items: center;
      gap: var(--sp-10);
      background: white;
      border-radius: var(--radius-xl);
      padding: var(--sp-10) var(--sp-12);
      box-shadow: var(--shadow-xl);
      margin-bottom: var(--sp-14);
      flex-wrap: wrap;
    }
    .rating-score {
      text-align: center;
      flex-shrink: 0;
    }
    .rating-score-num {
      font-family: var(--font-display);
      font-size: 5rem;
      line-height: 1;
      color: var(--clr-navy);
    }
    .rating-score-stars {
      display: flex;
      gap: 3px;
      justify-content: center;
      margin: var(--sp-2) 0 var(--sp-1);
      color: var(--clr-gold);
    }
    .rating-score-label { font-size: 0.8rem; color: var(--clr-body-light); }

    .rating-bars { flex: 1; min-width: 220px; }
    .rating-bar-row {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
      margin-bottom: var(--sp-2);
    }
    .rating-bar-label { font-size: 0.8rem; color: var(--clr-body-light); width: 28px; text-align: right; flex-shrink: 0; }
    .rating-bar-track {
      flex: 1;
      height: 6px;
      background: var(--clr-border);
      border-radius: var(--radius-full);
      overflow: hidden;
    }
    .rating-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--clr-gold), var(--clr-teal));
      border-radius: var(--radius-full);
    }
    .rating-bar-count { font-size: 0.8rem; color: var(--clr-body-light); width: 28px; flex-shrink: 0; }

    .rating-highlights {
      border-left: 1px solid var(--clr-border);
      padding-left: var(--sp-10);
      display: flex;
      flex-direction: column;
      gap: var(--sp-4);
      flex-shrink: 0;
    }
    .rating-highlight-item {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
      font-size: 0.875rem;
      color: var(--clr-body);
    }
    .rating-highlight-item svg { color: var(--clr-teal); flex-shrink: 0; }

    /* Masonry testimonial grid */
    .testi-masonry {
      columns: 3;
      column-gap: var(--sp-6);
    }
    .testi-card-full {
      break-inside: avoid;
      background: white;
      border-radius: var(--radius-lg);
      padding: var(--sp-8);
      margin-bottom: var(--sp-6);
      box-shadow: var(--shadow-card);
      border-left: 4px solid var(--clr-teal);
      transition: transform var(--motion-md), box-shadow var(--motion-md);
    }
    .testi-card-full:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }
    .testi-card-full.featured {
      border-left-color: var(--clr-gold);
      background: linear-gradient(135deg, #fffbf0 0%, white 60%);
    }
    /* .testi-stars → .star-rating (AR-03) */
    .testi-quote {
      font-family: var(--font-serif-h3);
      font-size: 1.05rem;
      color: var(--clr-navy);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: var(--sp-5);
    }
    .testi-meta { display: flex; align-items: center; gap: var(--sp-3); }
    .testi-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--clr-teal-xlight);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-serif-h3);
      font-weight: 700;
      color: var(--clr-teal-dark);
      font-size: 1rem;
      flex-shrink: 0;
    }
    .testi-name { font-weight: 700; font-size: 0.875rem; color: var(--clr-navy); line-height: 1.2; }
    .testi-location { font-size: 0.775rem; color: var(--clr-body-light); }
    .testi-service-tag {
      margin-left: auto;
      background: var(--clr-teal-xlight);
      color: var(--clr-teal-dark);
      font-size: 0.72rem;
      font-weight: 600;
      padding: 3px var(--sp-3);
      border-radius: var(--radius-full);
      white-space: nowrap;
    }

    @media (max-width: 1024px) {
      .testi-masonry { columns: 2; }
      .rating-highlights { border-left: none; padding-left: 0; border-top: 1px solid var(--clr-border); padding-top: var(--sp-6); width: 100%; flex-direction: row; flex-wrap: wrap; gap: var(--sp-5); }
      .rating-summary { gap: var(--sp-8); }
    }
    @media (max-width: 768px) {
      .testi-masonry { columns: 1; }
      .rating-summary { padding: var(--sp-8); }
      .rating-score-num { font-size: 3.5rem; }
    }


/* 29. ABOUT PAGE */
/* ── About-page-specific styles ─────────────────────── */
    .about-hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-12);
      align-items: center;
    }
    .about-hero-image {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }
    .about-hero-image img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      display: block;
    }
    .about-badge {
      position: absolute;
      bottom: var(--sp-6);
      left: var(--sp-6);
      background: white;
      border-radius: var(--radius-md);
      padding: var(--sp-4) var(--sp-5);
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: var(--sp-3);
    }
    .about-badge-icon {
      width: 44px;
      height: 44px;
      background: var(--clr-teal-xlight);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--clr-teal-dark);
      flex-shrink: 0;
    }
    .about-badge-text strong { display: block; font-size: 0.9rem; color: var(--clr-navy); }
    .about-badge-text span { font-size: 0.8rem; color: var(--clr-body-light); }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-6);
      margin-top: var(--sp-10);
    }
    .value-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: var(--sp-8);
      text-align: center;
      box-shadow: var(--shadow-card);
      border-top: 3px solid var(--clr-teal);
      transition: transform var(--motion-md), box-shadow var(--motion-md);
    }
    .value-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
    .value-card-icon {
      width: 56px;
      height: 56px;
      background: var(--clr-teal-xlight);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--clr-teal-dark);
      margin: 0 auto var(--sp-5);
    }
    .value-card h4 { color: var(--clr-navy); margin-bottom: var(--sp-3); font-size: 1.1rem; }
    .value-card p { font-size: 0.9rem; color: var(--clr-body-light); line-height: 1.7; margin: 0; }

    .story-timeline {
      position: relative;
      max-width: 680px;
      margin: var(--sp-12) auto 0;
    }
    .story-timeline::before {
      content: '';
      position: absolute;
      left: 18px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--clr-teal), var(--clr-gold));
    }
    .timeline-item {
      display: flex;
      gap: var(--sp-6);
      padding-bottom: var(--sp-10);
    }
    .timeline-dot {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: white;
      border: 2px solid var(--clr-teal);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      color: var(--clr-teal-dark);
      font-family: var(--font-serif-h3);
      font-weight: 700;
      font-size: 0.85rem;
    }
    .timeline-content { padding-top: var(--sp-1); }
    .timeline-year {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--clr-teal-dark);
      margin-bottom: var(--sp-2);
    }
    .timeline-content h4 { color: var(--clr-navy); margin-bottom: var(--sp-2); }
    .timeline-content p { color: var(--clr-body-light); font-size: 0.925rem; line-height: 1.7; margin: 0; }

    .service-area-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: var(--sp-4);
      margin-top: var(--sp-8);
    }
    .area-pill {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
      background: white;
      border: 1px solid var(--clr-border);
      border-radius: var(--radius-full);
      padding: var(--sp-3) var(--sp-5);
      font-size: 0.9rem;
      color: var(--clr-navy);
      transition: background var(--motion-sm), border-color var(--motion-sm);
    }
    .area-pill:hover {
      background: var(--clr-teal-xlight);
      border-color: var(--clr-teal);
    }
    .area-pill svg { color: var(--clr-teal); flex-shrink: 0; }

    .cert-row {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-5);
      justify-content: center;
      margin-top: var(--sp-10);
    }
    .cert-badge {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-full);
      padding: var(--sp-3) var(--sp-6);
      color: rgba(255,255,255,0.9);
      font-size: 0.875rem;
    }
    .cert-badge svg { color: var(--clr-gold); }

    @media (max-width: 900px) {
      .about-hero-grid { grid-template-columns: 1fr; }
      .about-hero-image img { height: 380px; }
      .values-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .values-grid { grid-template-columns: 1fr; }
      .story-timeline::before { display: none; }
    }
