/*
╔══════════════════════════════════════════════════════════════════╗
║           BLOOMHAVEN CARE — Warm Futurism Design System          ║
╠══════════════════════════════════════════════════════════════════╣
║  [TOKENS]      — CSS custom properties                           ║
║  [RESET]       — Browser resets                                  ║
║  [BASE]        — Body, scrollbar, global                         ║
║  [TYPOGRAPHY]  — Fonts, headings, badges, dividers               ║
║  [BUTTONS]     — All button variants                             ║
║  [HEADER]      — Logo-centric hero header & collapse             ║
║  [MOBILE-MENU] — Full-screen overlay menu                        ║
║  [HERO]        — Hero section & particles                        ║
║  [TRUST]       — Trust bar                                       ║
║  [SECTIONS]    — General section layouts                         ║
║  [CARDS]       — Glassmorphism & feature cards                   ║
║  [SERVICES]    — Service grid, filter, modal                     ║
║  [ABOUT]       — Timeline, values                                ║
║  [TEAM]        — Team cards                                      ║
║  [RECRUIT]     — Skills, apply form                              ║
║  [FAQ]         — Search + accordion                              ║
║  [GALLERY]     — SVG illustration gallery                        ║
║  [CONTACT]     — Contact layout & form                           ║
║  [CTA]         — CTA banners                                     ║
║  [FOOTER]      — Footer                                          ║
║  [UTILITIES]   — Helpers, scroll progress, floating btns         ║
║  [ANIMATIONS]  — Keyframes & scroll reveals                      ║
║  [RESPONSIVE]  — Mobile & tablet                                 ║
╚══════════════════════════════════════════════════════════════════╝
*/

/* ════════════════════════════════════════════════════════
   [TOKENS] — Design Tokens
   ════════════════════════════════════════════════════════ */
:root {
  /* ── PALETTE — matched to Bloomhaven Care logo ── */

  /* Soft Bloomhaven blue — calm, clean and care-led */
  --forest:        #5F9ED1;
  --forest-deep:   #3F79B5;
  --forest-mid:    #86BCE1;
  --forest-light:  #C6E2F3;

  /* Page backgrounds — warm white with a quiet blue tint */
  --cream:         #FAFCFE;
  --cream-dark:    #EEF6FB;

  /* Sage CTA / accent buttons */
  --gold:          #78AC59;
  --gold-light:    #9DCC73;
  --gold-pale:     #EEF7E8;

  /* Soft navy for strong sections */
  --canopy:        #365F99;
  --canopy-mid:    #4D78AF;

  /* Rose — heart accent */
  --rose:          #E8698A;
  --rose-light:    #FDEEF3;

  /* Text */
  --ink:           #233A5B;
  --ink-mid:       #3F5D7F;
  --moss:          #637C91;
  --mist:          #9FC2D9;
  --fog:           #D6E7F1;

  /* Glass */
  --glass-bg:      rgba(250,252,254,0.88);
  --glass-border:  rgba(95,158,209,0.22);
  --glass-dark-bg: rgba(42,74,118,0.72);
  --glass-dark-border: rgba(164,206,123,0.22);

  /* Shadows */
  --shadow-sm:     0 2px 14px rgba(35,58,91,0.08);
  --shadow-md:     0 10px 38px rgba(35,58,91,0.12);
  --shadow-lg:     0 22px 64px rgba(35,58,91,0.16);
  --shadow-gold:   0 0 30px rgba(123,175,92,0.26);

  /* Layout */
  --nav-h:         120px;
  --nav-h-collapsed: 82px;
  --radius:        16px;
  --radius-sm:     10px;
  --radius-xs:     8px;
  --section-gap:   110px;
  --container:     1200px;
  --font-main:     'DM Sans', Arial, sans-serif;
  --homecare-hero-image: url('https://images.unsplash.com/photo-1543333995-a78aea2eee50?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=78&w=1800');

  /* Transitions */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ════════════════════════════════════════════════════════
   [RESET]
   ════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ════════════════════════════════════════════════════════
   [BASE]
   ════════════════════════════════════════════════════════ */
html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--font-main);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--forest-mid); border-radius: 4px; }

/* Skip to content link */
.skip-link {
  position: fixed; top: -100px; left: 20px; z-index: 9999;
  background: var(--forest); color: var(--cream);
  padding: 10px 20px; border-radius: var(--radius-xs);
  font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 20px; }

/* Scroll progress bar */
#scrollProgress {
  position: fixed; top: 0; left: 0; width: 0%; height: 3px;
  background: linear-gradient(90deg, var(--forest-mid), var(--gold));
  z-index: 9999; transition: width .1s linear; pointer-events: none;
}

.hours-notice {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--gold-pale);
  color: var(--ink);
  text-align: center;
  padding: 12px 20px;
  font-size: .88rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(123, 175, 92, 0.35);
  transition: top .4s var(--ease);
  box-shadow: 0 4px 12px rgba(35, 58, 91, 0.08);
}

.hours-notice[hidden] {
  display: none !important;
}

body.header-scrolled .hours-notice {
  top: var(--nav-h-collapsed);
}

/* ════════════════════════════════════════════════════════
   [TYPOGRAPHY]
   ════════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  line-height: 1.15;
  color: var(--ink);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--forest-mid), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--moss);
  line-height: 1.8;
  max-width: 640px;
}

.copy-mobile { display: none; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  color: var(--forest);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
  border: 1px solid rgba(212,175,55,0.4);
}
.badge::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--forest-mid), var(--gold));
  border-radius: 3px;
  margin: 20px 0 30px;
}
.divider.center { margin: 20px auto 30px; }

/* ...rest of incoming stylesheet retained unchanged... */
  }
  
  /* ════════════════════════════════════════════════════════
     [RESET]
     ════════════════════════════════════════════════════════ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  img, svg { display: block; max-width: 100%; }
  a { text-decoration: none; color: inherit; }
  ul, ol { list-style: none; }
  button { cursor: pointer; border: none; background: none; font: inherit; }
  input, textarea, select { font: inherit; }
  
  /* ════════════════════════════════════════════════════════
     [BASE]
     ════════════════════════════════════════════════════════ */
  html { scroll-behavior: smooth; font-size: 17px; }
  
  body {
    font-family: var(--font-main);
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
  }
  
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--cream-dark); }
  ::-webkit-scrollbar-thumb { background: var(--forest-mid); border-radius: 4px; }
  
  /* Skip to content link */
  .skip-link {
    position: fixed; top: -100px; left: 20px; z-index: 9999;
    background: var(--forest); color: var(--cream);
    padding: 10px 20px; border-radius: var(--radius-xs);
    font-weight: 600; transition: top .2s;
  }
  .skip-link:focus { top: 20px; }
  
  /* Scroll progress bar */
  #scrollProgress {
    position: fixed; top: 0; left: 0; width: 0%; height: 3px;
    background: linear-gradient(90deg, var(--forest-mid), var(--gold));
    z-index: 9999; transition: width .1s linear; pointer-events: none;
  }
  
  .hours-notice {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--gold-pale);
    color: var(--ink);
    text-align: center;
    padding: 12px 20px;
    font-size: .88rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(123, 175, 92, 0.35);
    transition: top .4s var(--ease);
    box-shadow: 0 4px 12px rgba(35, 58, 91, 0.08);
  }
  
  .hours-notice[hidden] {
    display: none !important;
  }
  
  body.header-scrolled .hours-notice {
    top: var(--nav-h-collapsed);
  }
  
  /* ════════════════════════════════════════════════════════
     [TYPOGRAPHY]
     ════════════════════════════════════════════════════════ */
  h1, h2, h3, h4 {
    font-family: var(--font-main);
    line-height: 1.15;
    color: var(--ink);
  }
  
  .section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 16px;
    text-wrap: balance;
  }
  
  .section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--forest-mid), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  
  .section-sub {
    font-size: 1.05rem;
    color: var(--moss);
    line-height: 1.8;
    max-width: 640px;
  }
  
  .copy-mobile { display: none; }
  
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-pale);
    color: var(--forest);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
    border: 1px solid rgba(212,175,55,0.4);
  }
  .badge::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  .divider {
    width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--forest-mid), var(--gold));
    border-radius: 3px;
    margin: 20px 0 30px;
  }
  .divider.center { margin: 20px auto 30px; }
  
  /* ════════════════════════════════════════════════════════
     [BUTTONS]
     ════════════════════════════════════════════════════════ */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .02em;
    transition: all .3s var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
  }
  .btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform .5s var(--ease);
  }
  .btn:hover::after { transform: translateX(110%) skewX(-15deg); }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--forest-mid), var(--forest));
    color: var(--cream);
    box-shadow: 0 4px 20px rgba(63,121,181,0.28);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(63,121,181,0.36);
  }
  
  .btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--canopy);
    box-shadow: var(--shadow-gold);
  }
  .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.5);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--forest-mid);
  }
  .btn-outline:hover {
    background: var(--forest);
    color: var(--cream);
    transform: translateY(-2px);
  }
  
  .btn-white {
    background: var(--cream);
    color: var(--forest);
    box-shadow: var(--shadow-md);
  }
  .btn-white:hover {
    background: var(--gold-pale);
    transform: translateY(-2px);
  }
  
  .btn-outline-white {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(252,251,247,0.5);
  }
  .btn-outline-white:hover {
    background: rgba(252,251,247,0.15);
    border-color: var(--cream);
    transform: translateY(-2px);
  }
  
  .btn-whatsapp {
    background: #128C7E;
    color: #fff !important;
    border: 2px solid #25D366;
    box-shadow: 0 10px 30px rgba(18,140,126,0.26);
  }
  .btn-whatsapp::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(37,211,102,0.18);
    flex-shrink: 0;
  }
  .btn-whatsapp:hover {
    background: #0E766C;
    color: #fff !important;
    border-color: #36E37B;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(18,140,126,0.34);
  }
  
  .btn-arrow::after { content: none; }
  .btn-arrow .arrow { transition: transform .3s; }
  .btn-arrow:hover .arrow { transform: translateX(4px); }
  
  /* ════════════════════════════════════════════════════════
     [LAYOUT]
     ════════════════════════════════════════════════════════ */
  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
  }
  
  .section {
    padding: var(--section-gap) 0;
    background: var(--cream);
    color: var(--ink);
  }
  .section-alt { background: var(--cream-dark); }
  .section-dark {
    background: linear-gradient(180deg, var(--forest-deep) 0%, var(--canopy) 100%);
    color: var(--cream);
  }
  .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
  .section-dark .section-sub { color: var(--fog); }
  .section-dark .divider,
  .section-dark .divider.center {
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
  }
  .section-dark .badge {
    background: rgba(212,175,55,0.15);
    color: var(--gold-light);
    border-color: rgba(212,175,55,0.25);
  }
  
  /* Reveal animation */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  
  /* ════════════════════════════════════════════════════════
     [HEADER] — Fixed logo, right aligned menu
     ════════════════════════════════════════════════════════ */
  #siteHeader {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all .4s var(--ease);
    padding: 0;
    overflow: visible;
    background: rgba(250,252,254,0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(95,158,209,0.18);
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 clamp(16px,2.6vw,34px);
    height: var(--nav-h);
    transition: height .4s var(--ease);
    overflow: visible;
  }
  
  /* Keep the header consistent while at the top */
  #siteHeader.at-top { box-shadow: none; }
  
  #siteHeader.scrolled {
    box-shadow: var(--shadow-md);
  }
  #siteHeader.scrolled .header-inner { height: var(--nav-h-collapsed); }
  
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 1;
    margin-left: auto;
  }
  
  .nav-right a {
    font-size: .88rem;
    font-weight: 700;
    color: var(--ink);
    padding: 8px 14px;
    border-radius: 100px;
    transition: all .25s;
    letter-spacing: .04em;
    text-transform: uppercase;
    position: relative;
  }
  
  .nav-right a:hover,
  .nav-right a.active {
    background: var(--gold-pale);
    color: var(--forest);
  }
  
  .nav-cta {
    background: linear-gradient(135deg, var(--forest), var(--forest-mid)) !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 10px 22px !important;
    box-shadow: 0 8px 20px rgba(63,121,181,0.24);
  }
  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(63,121,181,0.32) !important;
  }
  
  /* Brand */
  .nav-brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    min-width: 0;
    color: var(--ink);
  }
  
  .brand-mark {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
    background: transparent;
    box-shadow: none;
    transition: width .4s var(--ease), height .4s var(--ease);
  }
  
  .brand-mark img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
  }
  
  .brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }
  
  .brand-title {
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    font-weight: 800;
    line-height: .95;
    color: var(--forest-deep);
    letter-spacing: 0;
    white-space: nowrap;
  }
  
  .brand-subtitle {
    margin-top: 6px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
  }
  
  #siteHeader.scrolled .brand-mark { width: 60px; height: 60px; }
  #siteHeader.scrolled .brand-title { font-size: clamp(1.45rem, 2.5vw, 2rem); }
  #siteHeader.scrolled .brand-subtitle { font-size: .68rem; margin-top: 4px; }
  
  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background .3s;
    flex-shrink: 0;
  }
  .hamburger:hover { background: var(--gold-pale); }
  .hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all .3s var(--ease);
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  
  /* ════════════════════════════════════════════════════════
     [MOBILE-MENU] — Full-screen overlay
     ════════════════════════════════════════════════════════ */
  #mobileMenu {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, var(--canopy) 0%, var(--forest-deep) 100%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    overflow-y: auto;
    padding: 118px 20px 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
  }
  #mobileMenu.open { opacity: 1; pointer-events: all; }
  
  .mobile-menu-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--cream);
  }
  
  .mobile-menu-brand .brand-mark {
    width: 62px;
    height: 62px;
    box-shadow: none;
  }
  
  .mobile-menu-brand .brand-mark img {
    width: 100%;
    height: 100%;
  }
  
  .mobile-menu-brand .brand-title {
    color: var(--cream);
    font-size: clamp(1.45rem, 6vw, 2rem);
  }
  
  .mobile-menu-brand .brand-subtitle {
    color: var(--gold-light);
    font-size: .68rem;
  }
  
  #mobileMenu a {
    font-family: var(--font-main);
    font-size: clamp(1.35rem, 5.4vw, 1.9rem);
    color: var(--cream);
    line-height: 1.1;
    padding: 9px 32px;
    border-radius: var(--radius-sm);
    transition: all .25s;
    letter-spacing: .02em;
    text-align: center;
  }
  #mobileMenu a:hover, #mobileMenu a.active {
    background: rgba(212,175,55,0.15);
    color: var(--gold-light);
  }
  #mobileMenu .mobile-cta {
    margin-top: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--canopy) !important;
    font-family: var(--font-main) !important;
    font-size: .95rem !important;
    font-weight: 700;
    padding: 12px 32px !important;
  }
  
  /* ════════════════════════════════════════════════════════
     [HERO] — Full-width hero with particles
     ════════════════════════════════════════════════════════ */
  .hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(21,45,72,.78) 0%, rgba(21,45,72,.48) 52%, rgba(21,45,72,.28) 100%),
      var(--homecare-hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: var(--nav-h);
  }
  
  #particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: .08;
  }
  
  .hero-orbs {
    display: none;
  }
  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .08;
  }
  .hero-orb-1 {
    width: 600px; height: 600px;
    background: var(--forest-mid);
    top: -100px; right: -100px;
    animation: driftOrb 20s ease-in-out infinite;
  }
  .hero-orb-2 {
    width: 400px; height: 400px;
    background: var(--gold);
    bottom: 0; left: 10%;
    animation: driftOrb 25s ease-in-out infinite reverse;
  }
  .hero-orb-3 {
    width: 300px; height: 300px;
    background: var(--forest-light);
    top: 40%; left: 30%;
    animation: driftOrb 18s ease-in-out infinite 5s;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  
  .hero-text { color: var(--cream); }
  
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 22px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--gold-light);
  }
  
  .hero-text h1 {
    font-family: var(--font-main);
    font-size: clamp(2.35rem, 4.5vw, 3.55rem);
    font-weight: 700;
    line-height: 1.14;
    color: var(--cream);
    margin-bottom: 24px;
  }
  .hero-text h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  
  .hero-sub {
    font-size: 1.1rem;
    color: var(--fog);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 36px;
  }
  
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
  }
  
  .hero-assurances {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding-top: 30px;
    border-top: 1px solid rgba(252,251,247,0.16);
  }
  .assurance {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-height: 86px;
    padding: 14px 14px 13px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-sm);
    color: var(--cream);
  }
  .assurance-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-light);
    color: var(--canopy);
    font-weight: 800;
    font-size: .78rem;
    flex: 0 0 auto;
  }
  .assurance strong {
    display: block;
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.25;
  }
  .assurance span:not(.assurance-icon) {
    display: block;
    color: var(--fog);
    font-size: .74rem;
    line-height: 1.35;
    margin-top: 3px;
  }
  
  /* Hero right: visual cards */
  .hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
  }
  
  .hero-photo-card {
    position: relative;
    width: min(520px, 100%);
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.24);
    box-shadow: var(--shadow-lg);
    background: var(--forest-light);
  }
  .hero-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.02);
    transition: transform .7s var(--ease), filter .7s var(--ease);
  }
  .hero-photo-card:hover img { transform: scale(1.05); filter: saturate(1.08) contrast(1.04); }
  
  .hero-card {
    background: var(--glass-dark-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-dark-border);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
    color: var(--cream);
    width: min(470px, 100%);
    transition: transform .4s var(--ease), box-shadow .4s;
  }
  .hero-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
  
  .hero-card-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
  }
  .hero-card-value {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .hero-card-sub { font-size: .85rem; color: var(--mist); }
  
  .hero-badge-float {
    position: absolute;
    top: -20px; left: -30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--canopy);
    border-radius: var(--radius-sm);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-gold);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 2;
  }
  .hero-badge-float svg { width: 28px; height: 28px; flex-shrink: 0; }
  .hero-badge-float .badge-text { font-size: .82rem; font-weight: 700; }
  .hero-badge-float .badge-sub { font-size: .72rem; opacity: .75; }
  
  /* ════════════════════════════════════════════════════════
     [TRUST BAR]
     ════════════════════════════════════════════════════════ */
  .trust-bar {
    background: var(--canopy);
    padding: 0;
    overflow: hidden;
  }
  .trust-scroll-wrap {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 0;
  }
  .trust-scroll-wrap:hover { animation-play-state: paused; }
  .trust-inner {
    display: flex;
    gap: 0;
    flex-shrink: 0;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(252,251,247,0.9);
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .04em;
    padding: 16px 36px;
    border-right: 1px solid rgba(252,251,247,0.15);
    white-space: nowrap;
  }
  a.trust-item:hover { color: var(--gold-light); }
  .trust-item svg { color: var(--gold-light); width: 16px; height: 16px; flex-shrink: 0; }
  
  /* ════════════════════════════════════════════════════════
     [WHAT IS HOME CARE] — Two-column with SVG art
     ════════════════════════════════════════════════════════ */
  .what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .what-art {
    position: relative;
  }
  .what-art svg {
    width: 100%;
    border-radius: var(--radius);
    filter: drop-shadow(0 20px 60px rgba(95,158,209,0.18));
  }
  .care-photo-card img {
    width: 100%;
    aspect-ratio: 6 / 5;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(35,58,91,0.15);
    transition: transform .7s var(--ease), filter .7s var(--ease);
  }
  .care-photo-card svg { display: none; }
  .care-photo-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.05);
  }
  .what-art-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--forest-mid), var(--forest));
    color: var(--cream);
    border-radius: var(--radius-sm);
    padding: 16px 22px;
    box-shadow: var(--shadow-md);
  }
  .what-art-badge .num {
    font-family: var(--font-main);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
  }
  .what-art-badge .lbl { font-size: .78rem; opacity: .8; margin-top: 2px; }
  
  .what-points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
  .what-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .what-pt-icon {
    width: 48px; height: 48px;
    background: var(--gold-pale);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .04em;
  }
  .what-pt-icon:empty,
  .who-card-icon:empty,
  .why-icon:empty,
  .modal-icon:empty,
  .value-icon:empty,
  .team-img:empty,
  .step-icon:empty,
  .quick-apply span:empty {
    display: none;
  }
  .what-pt-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: var(--font-main);
    color: var(--ink);
  }
  .what-pt-text p { font-size: .9rem; color: var(--moss); line-height: 1.65; }
  
  /* ════════════════════════════════════════════════════════
     [WHO WE ARE] — Dark section
     ════════════════════════════════════════════════════════ */
  .who-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .who-quote {
    margin-top: 28px;
    padding: 22px 24px;
    border-left: 3px solid var(--gold);
    background: rgba(212,175,55,0.08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  }
  .who-quote p { font-family: var(--font-main); font-style: italic; font-size: 1.1rem; color: var(--cream); line-height: 1.6; margin-bottom: 8px; }
  .who-quote cite { font-size: .82rem; color: var(--gold-light); font-style: normal; }
  
  .who-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-self: center;
  }
  .who-card {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 22px;
    transition: all .3s var(--ease);
  }
  .who-card:hover {
    background: rgba(212,175,55,0.08);
    border-color: rgba(212,175,55,0.2);
    transform: translateY(-4px);
  }
  .who-card-icon { font-size: 1rem; font-weight: 800; letter-spacing: .04em; margin-bottom: 10px; }
  .who-card h4 { font-size: .95rem; font-weight: 600; font-family: var(--font-main); color: var(--cream); margin-bottom: 6px; }
  .who-card p { font-size: .85rem; color: var(--mist); line-height: 1.65; }
  
  /* ════════════════════════════════════════════════════════
     [WHY CHOOSE US] — Feature grid
     ════════════════════════════════════════════════════════ */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
  
  .why-card {
    background: var(--cream);
    border: 1px solid rgba(95,158,209,0.16);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    transition: all .35s var(--ease);
    overflow: hidden;
  }
  .why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest-mid), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
  }
  .why-card:hover::before { transform: scaleX(1); }
  .why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(95,158,209,0.22);
  }
  
  .why-num {
    display: none;
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(95,158,209,0.14);
    line-height: 1;
    margin-bottom: 12px;
  }
  .why-icon { font-size: .86rem; font-weight: 800; letter-spacing: .06em; margin-bottom: 14px; color: var(--forest-deep); }
  .why-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; font-family: var(--font-main); color: var(--forest); }
  .why-card p { font-size: .9rem; color: var(--moss); line-height: 1.7; }
  .why-card a,
  .timeline-item a,
  .faq-a a {
    color: var(--forest-deep);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  
  /* ════════════════════════════════════════════════════════
     [SERVICES] — Filter + grid + modal
     ════════════════════════════════════════════════════════ */
  .filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
  }
  .filter-btn {
    padding: 9px 22px;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 600;
    border: 1.5px solid var(--fog);
    color: var(--moss);
    background: transparent;
    cursor: pointer;
    transition: all .25s;
    letter-spacing: .03em;
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--forest);
    color: var(--cream);
    border-color: var(--forest);
    box-shadow: var(--shadow-sm);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .service-card {
    background: var(--cream);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(95,158,209,0.16);
    cursor: pointer;
    transition: all .35s var(--ease);
    box-shadow: var(--shadow-sm);
  }
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
  .service-card.hidden { display: none; }
  
  .service-img {
    height: 210px;
    position: relative;
    overflow: hidden;
  }
  .service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(35,58,91,0.02) 20%, rgba(35,58,91,0.36) 100%);
    pointer-events: none;
  }
  .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s var(--ease), filter .65s var(--ease);
  }
  .service-card:hover .service-img img { transform: scale(1.06); filter: saturate(1.05); }
  .service-img-art {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
  }
  .service-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(35,58,91,0.78);
    backdrop-filter: blur(8px);
    color: var(--cream);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(212,175,55,0.25);
  }
  .service-body { padding: 24px; }
  .service-body h3 { font-size: 1.15rem; font-weight: 600; font-family: var(--font-main); color: var(--forest); margin-bottom: 8px; }
  .service-body p { font-size: .88rem; color: var(--moss); line-height: 1.65; margin-bottom: 14px; }
  .service-learn {
    font-size: .82rem;
    font-weight: 700;
    color: var(--forest-mid);
    letter-spacing: .04em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
  }
  .service-card:hover .service-learn { gap: 10px; }
  
  /* Modal */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(13,36,24,0.85);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  
  .modal {
    background: var(--cream);
    border-radius: var(--radius);
    width: 100%;
    max-width: 640px;
    max-height: 88vh;
    overflow-y: auto;
    transform: translateY(30px) scale(.97);
    transition: transform .35s var(--ease-bounce);
  }
  .modal-overlay.open .modal { transform: translateY(0) scale(1); }
  
  .modal-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--cream-dark);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }
  .modal-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    background: var(--gold-pale);
    color: var(--forest-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .06em;
    flex: 0 0 auto;
  }
  .modal-title-wrap h3 { font-family: var(--font-main); font-size: 1.5rem; font-weight: 700; color: var(--forest); }
  .modal-tag {
    font-size: .72rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--gold);
    margin-top: 4px;
  }
  .modal-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--moss);
    flex-shrink: 0;
    transition: all .2s;
  }
  .modal-close:hover { background: var(--forest); color: var(--cream); }
  
  .modal-body { padding: 24px 28px; }
  .modal-body p { color: var(--moss); line-height: 1.8; margin-bottom: 20px; }
  .modal-body h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-main); color: var(--ink); margin-bottom: 14px; }
  .modal-includes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .modal-item {
    display: flex; align-items: center; gap: 10px;
    font-size: .9rem; color: var(--ink-mid);
  }
  .modal-item::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--forest-mid);
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  /* ════════════════════════════════════════════════════════
     [PAGE HEADER] — Inner pages
     ════════════════════════════════════════════════════════ */
  .page-header {
    background:
      linear-gradient(90deg, rgba(21,45,72,.78) 0%, rgba(21,45,72,.48) 55%, rgba(21,45,72,.32) 100%),
      var(--homecare-hero-image);
    background-size: cover;
    background-position: center;
    padding: calc(var(--nav-h) + 70px) 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21,45,72,.18), rgba(21,45,72,.04));
    pointer-events: none;
  }
  .page-header .container { position: relative; z-index: 1; }
  .page-header .badge { margin-bottom: 16px; }
  .page-header .section-title { color: var(--cream); max-width: 760px; margin: 0 auto 16px; }
  .page-header .section-title em {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .page-header .divider { margin: 16px auto 24px; }
  .page-header .section-sub { color: var(--fog); margin: 0 auto; text-align: center; }
  
  /* ════════════════════════════════════════════════════════
     [ABOUT] — Timeline
     ════════════════════════════════════════════════════════ */
  .timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 50px;
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 17px;
    width: 2px;
    background: linear-gradient(180deg, var(--forest-mid), var(--gold));
    border-radius: 2px;
  }
  .timeline-item {
    position: relative;
    padding: 0 0 40px 30px;
  }
  .timeline-item:last-child { padding-bottom: 0; }
  .timeline-dot {
    position: absolute;
    left: -33px;
    top: 4px;
    width: 18px; height: 18px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
  }
  .timeline-year {
    font-size: .75rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 6px;
  }
  .timeline-item h4 { font-size: 1.05rem; font-weight: 600; font-family: var(--font-main); color: var(--ink); margin-bottom: 6px; }
  .timeline-item p { font-size: .9rem; color: var(--moss); line-height: 1.65; }
  
  .values-strip {
    background: linear-gradient(135deg, var(--canopy), var(--canopy-mid));
    padding: 60px 0;
  }
  .values-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .value-item {
    text-align: center;
    padding: 30px 24px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .value-item:last-child { border-right: none; }
  .value-icon { font-size: .95rem; font-weight: 800; letter-spacing: .08em; margin-bottom: 12px; color: var(--gold-light); }
  .value-item h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-main); color: var(--cream); margin-bottom: 6px; }
  .value-item p { font-size: .85rem; color: var(--mist); line-height: 1.65; }
  
  /* ════════════════════════════════════════════════════════
     [TEAM]
     ════════════════════════════════════════════════════════ */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
  .team-card {
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(95,158,209,0.16);
    transition: all .35s var(--ease);
  }
  .team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
  
  .team-img {
    height: 160px;
    background: linear-gradient(135deg, var(--forest-deep), var(--forest-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .team-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(13,36,24,0.3));
  }
  .team-body { padding: 22px 22px 24px; }
  .team-name { font-family: var(--font-main); font-size: 1.15rem; font-weight: 700; color: var(--forest); margin-bottom: 3px; }
  .team-role { font-size: .8rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
  .team-bio { font-size: .88rem; color: var(--moss); line-height: 1.65; margin-bottom: 14px; }
  .team-quals { display: flex; flex-wrap: wrap; gap: 6px; }
  .qual-tag {
    background: var(--gold-pale);
    color: var(--forest);
    font-size: .72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(212,175,55,0.3);
  }
  
  /* ════════════════════════════════════════════════════════
     [RECRUIT] — Skills + quick apply
     ════════════════════════════════════════════════════════ */
  .recruit-hero {
    background:
      linear-gradient(90deg, rgba(21,45,72,.78) 0%, rgba(21,45,72,.48) 55%, rgba(21,45,72,.32) 100%),
      var(--homecare-hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: calc(var(--nav-h) + 80px) 0 90px;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .recruit-hero .container { display: flex; flex-direction: column; align-items: center; }
  .recruit-hero div[style*="max-width:680px"] { max-width: 680px; text-align: center; }
  .recruit-hero div[style*="display:flex;gap:14px"] { justify-content: center; }
  .recruit-hero h1 { font-family: var(--font-main); font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 700; color: var(--cream); margin-bottom: 20px; line-height: 1.16; text-wrap: balance; }
  .recruit-hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
  .recruit-hero p { font-size: 1.05rem; color: var(--fog); max-width: 600px; line-height: 1.8; }
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .skill-card {
    background: var(--cream);
    border: 1px solid rgba(95,158,209,0.16);
    border-radius: var(--radius-sm);
    padding: 22px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all .3s var(--ease);
  }
  .skill-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(95,158,209,0.24); }
  .skill-num {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(95,158,209,0.16);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
  }
  .skill-content h4 { font-size: .95rem; font-weight: 700; font-family: var(--font-main); color: var(--forest); margin-bottom: 5px; }
  .skill-content p { font-size: .85rem; color: var(--moss); line-height: 1.65; }
  
  .quick-apply {
    background: linear-gradient(135deg, var(--forest), var(--forest-deep));
    border-radius: var(--radius);
    padding: 48px;
    margin-top: 0;
    color: var(--cream);
  }
  .quick-apply h3 { font-family: var(--font-main); font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }
  .quick-apply > p { color: var(--fog); margin-bottom: 28px; }
  
  .apply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  
  /* ════════════════════════════════════════════════════════
     [FAQ]
     ════════════════════════════════════════════════════════ */
  .faq-search-wrap {
    position: relative;
    max-width: 560px;
    margin: 0 auto 48px;
  }
  .faq-search-wrap svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    color: var(--moss);
    pointer-events: none;
  }
  #faqSearch {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 1.5px solid rgba(95,158,209,0.2);
    border-radius: 100px;
    font-size: .95rem;
    background: var(--cream);
    color: var(--ink);
    transition: border-color .25s, box-shadow .25s;
    outline: none;
  }
  #faqSearch:focus { border-color: var(--forest-mid); box-shadow: 0 0 0 4px rgba(95,158,209,0.12); }
  
  .faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    background: var(--cream);
    border: 1.5px solid rgba(95,158,209,0.16);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color .3s;
  }
  .faq-item.open { border-color: var(--forest-mid); }
  .faq-item.filtered-out { display: none; }
  
  .faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: .95rem;
    color: var(--ink);
    transition: color .2s;
    user-select: none;
  }
  .faq-q:hover, .faq-item.open .faq-q { color: var(--forest); }
  .faq-icon {
    width: 28px; height: 28px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    color: var(--forest-mid);
    flex-shrink: 0;
    transition: all .3s var(--ease);
  }
  .faq-item.open .faq-icon { background: var(--forest); color: var(--cream); transform: rotate(45deg); }
  
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s;
    padding: 0 24px;
    color: var(--moss);
    font-size: .9rem;
    line-height: 1.8;
  }
  .faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }
  
  /* ════════════════════════════════════════════════════════
     [GALLERY]
     ════════════════════════════════════════════════════════ */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream-dark);
    cursor: pointer;
    transition: all .35s var(--ease);
    position: relative;
  }
  .gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
  .gallery-item:nth-child(4) { grid-column: span 2; aspect-ratio: 16/7; }
  .gallery-item svg { width: 100%; height: 100%; object-fit: cover; }
  .gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(13,36,24,0.85));
    padding: 30px 20px 16px;
    color: var(--cream);
    font-size: .82rem;
    font-weight: 500;
    transform: translateY(10px);
    opacity: 0;
    transition: all .3s;
  }
  .gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
  
  /* ════════════════════════════════════════════════════════
     [CONTACT]
     ════════════════════════════════════════════════════════ */
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
  }
  
  .contact-card {
    background: var(--cream);
    border: 1px solid rgba(95,158,209,0.16);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 16px;
    transition: box-shadow .3s;
  }
  .contact-card:hover { box-shadow: var(--shadow-md); }
  .contact-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
  .contact-card-icon {
    width: 42px; height: 42px;
    background: var(--gold-pale);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: var(--radius-xs);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
  }
  .contact-card h3 { font-size: 1rem; font-weight: 700; font-family: var(--font-main); color: var(--forest); }
  .contact-card p { font-size: .88rem; color: var(--moss); line-height: 1.7; }
  .contact-card a { color: var(--forest-mid); font-weight: 600; transition: color .2s; }
  .contact-card a:hover { color: var(--gold); }
  
  .map-placeholder,
  .map-embed {
    background: var(--cream-dark);
    border-radius: var(--radius-sm);
    height: 220px;
    overflow: hidden;
    border: 1px solid rgba(95,158,209,0.18);
  }
  .map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--moss);
    font-size: .88rem;
    text-align: center;
    padding: 20px;
    border-style: dashed;
  }
  .map-placeholder .map-pin { font-size: 2rem; }
  .map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  .contact-form-wrap {
    background: var(--cream);
    border: 1px solid rgba(95,158,209,0.16);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
  }
  .form-title { font-family: var(--font-main); font-size: 1.5rem; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
  .form-subtitle { font-size: .88rem; color: var(--moss); margin-bottom: 26px; line-height: 1.6; }
  
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-group label { font-size: .82rem; font-weight: 600; color: var(--ink-mid); letter-spacing: .02em; }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(95,158,209,0.18);
    border-radius: var(--radius-xs);
    font-size: .92rem;
    background: var(--cream);
    color: var(--ink);
    transition: border-color .25s, box-shadow .25s;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--forest-mid);
    box-shadow: 0 0 0 4px rgba(95,158,209,0.1);
  }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A7A60' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
  
  .form-check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
  .form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--forest); cursor: pointer; }
  .form-check label { font-size: .85rem; color: var(--moss); line-height: 1.6; cursor: pointer; }
  .form-check a { color: var(--forest-mid); text-decoration: underline; }
  
  .btn-submit { width: 100%; justify-content: center; padding: 16px 28px; font-size: 1rem; }
  
  .form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
  }
  .form-success.show { display: block; }
  .form-success-icon { font-size: 3rem; margin-bottom: 16px; }
  .form-success h3 { font-family: var(--font-main); font-size: 1.6rem; color: var(--forest); margin-bottom: 10px; }
  .form-success p { color: var(--moss); line-height: 1.7; margin-bottom: 22px; }
  
  /* Legal content pages */
  .legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: var(--cream);
    border: 1px solid rgba(95,158,209,0.16);
    border-radius: var(--radius);
    padding: clamp(28px, 5vw, 54px);
    box-shadow: var(--shadow-sm);
  }
  .legal-updated {
    color: var(--forest);
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .legal-content h2 {
    font-family: var(--font-main);
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 30px 0 10px;
  }
  .legal-content h2:first-of-type { margin-top: 0; }
  .legal-content p,
  .legal-content li {
    color: var(--moss);
    font-size: .98rem;
    line-height: 1.8;
  }
  .legal-content ul {
    list-style: disc;
    padding-left: 22px;
    margin: 10px 0 4px;
  }
  .legal-content a {
    color: var(--forest-mid);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  
  /* WhatsApp button */
  .whatsapp-btn {
    position: fixed;
    bottom: 28px; left: 28px;
    min-width: 56px;
    height: 56px;
    background: #128C7E;
    border: 2px solid #25D366;
    border-radius: 100px;
    display: flex; align-items: center; justify-content: center;
    gap: 10px;
    color: #fff;
    padding: 0 18px;
    box-shadow: 0 8px 28px rgba(18,140,126,0.38);
    z-index: 500;
    transition: all .3s var(--ease);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: .01em;
  }
  .whatsapp-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
  .whatsapp-label { font-size: .9rem; line-height: 1; }
  .whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(18,140,126,0.48); background: #0E766C; }
  body.home-page .whatsapp-btn,
  body.home-page .float-call {
    display: none;
  }
  .footer-in-view .whatsapp-btn {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
  }
  
  /* Floating call button (mobile) */
  .float-call {
    position: fixed;
    bottom: 28px; right: 28px;
    display: none;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--forest-mid), var(--forest));
    color: var(--cream);
    padding: 14px 22px;
    border-radius: 100px;
    font-weight: 700;
    font-size: .92rem;
    z-index: 500;
    box-shadow: 0 4px 24px rgba(26,38,80,0.4);
    animation: pulseCall 3s ease-in-out infinite;
  }
  
  /* ════════════════════════════════════════════════════════
     [CTA BANNER]
     ════════════════════════════════════════════════════════ */
  .cta-section { padding: 0; }
  .cta-box {
    background: linear-gradient(135deg, var(--forest), var(--forest-deep));
    border-radius: var(--radius);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    margin: 80px 0;
  }
  .cta-box::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(ellipse, rgba(212,175,55,0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-text h2 { font-family: var(--font-main); font-size: clamp(1.5rem,3vw,2.2rem); color: var(--cream); margin-bottom: 10px; }
  .cta-text p { color: var(--fog); font-size: .95rem; max-width: 440px; line-height: 1.75; }
  .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
  
  /* ════════════════════════════════════════════════════════
     [FOOTER]
     ════════════════════════════════════════════════════════ */
  footer {
    background: var(--canopy);
    color: var(--fog);
    padding: 80px 0 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) minmax(130px, .8fr) minmax(130px, .8fr) minmax(270px, 1.15fr);
    gap: clamp(28px, 3vw, 50px);
    padding-bottom: 60px;
  }
  
  .footer-logo-wrap {
    width: 310px;
    height: 104px;
    margin-bottom: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: rgba(250,252,254,0.96);
    border: 1px solid rgba(255,255,255,0.38);
    border-radius: var(--radius-xs);
    box-shadow: 0 12px 34px rgba(18,35,66,0.18);
  }
  .footer-logo-img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    transform: scale(1.95);
    transform-origin: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
  }
  .footer-tagline {
    font-family: var(--font-main);
    font-style: italic;
    font-size: 1rem;
    color: var(--mist);
    margin-bottom: 12px;
  }
  .footer-desc { font-size: .85rem; line-height: 1.75; margin-bottom: 22px; }
  
  .footer-col h4 {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 18px;
  }
  .footer-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-links a,
  .footer-links span {
    font-size: .87rem;
    color: var(--mist);
    transition: color .2s;
  }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-links .footer-email { white-space: nowrap; }
  
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: .82rem;
  }
  .footer-certs { display: flex; gap: 10px; flex-wrap: wrap; }
  .cert-badge {
    background: rgba(212,175,55,0.12);
    color: var(--gold-light);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(212,175,55,0.2);
  }
  a.cert-badge:hover { background: rgba(212,175,55,0.2); color: var(--cream); }
  .footer-bottom-links { display: flex; gap: 18px; }
  .footer-bottom-links a { color: var(--mist); transition: color .2s; }
  .footer-bottom-links a:hover { color: var(--gold-light); }
  
  /* ════════════════════════════════════════════════════════
     [PROCESS STEPS] — How we work
     ════════════════════════════════════════════════════════ */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
  }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--forest-mid), var(--gold));
  }
  .step-card {
    text-align: center;
    padding: 32px 24px;
  }
  .step-num {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--forest-mid), var(--forest));
    color: var(--cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-main);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px rgba(95,158,209,0.16);
  }
  .step-icon { font-size: .82rem; font-weight: 800; letter-spacing: .04em; color: var(--forest-deep); margin-bottom: 12px; }
  .step-card h3 { font-size: 1rem; font-weight: 600; font-family: var(--font-main); color: var(--forest); margin-bottom: 8px; }
  .step-card p { font-size: .88rem; color: var(--moss); line-height: 1.7; }
  
  /* ════════════════════════════════════════════════════════
     [ANIMATIONS] — Keyframes
     ════════════════════════════════════════════════════════ */
  @keyframes driftOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(.95); }
  }
  
  @keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  @keyframes pulseCall {
    0%, 100% { box-shadow: 0 4px 24px rgba(26,38,80,0.4); }
    50% { box-shadow: 0 4px 40px rgba(26,38,80,0.6), 0 0 0 12px rgba(26,38,80,0.08); }
  }
  
  @keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  }
  
  /* ════════════════════════════════════════════════════════
     [RESPONSIVE]
     ════════════════════════════════════════════════════════ */
  @media (max-width: 1100px) {
    .nav-right { display: none; }
    .hamburger { display: flex; }
  }
  
  @media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(4) { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .values-inner { grid-template-columns: repeat(2, 1fr); }
    .cta-box { flex-direction: column; text-align: center; }
    .cta-text p { margin: 0 auto; }
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .hero-text { max-width: 720px; }
    .hero-assurances { max-width: 720px; }
    .who-inner { grid-template-columns: 1fr; gap: 40px; }
    .what-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-layout { grid-template-columns: 1fr; }
    .skills-grid { grid-template-columns: 1fr; }
    /* Collapse all inline 2-col grids */
    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"] {
      grid-template-columns: 1fr !important;
      gap: 40px !important;
    }
  }
  
  @media (max-width: 768px) {
    :root {
      --section-gap: 60px;
      --nav-h: 84px;
      --nav-h-collapsed: 64px;
    }
  
    /* ── Prevent horizontal scroll ── */
    html, body { overflow-x: hidden; max-width: 100vw; }
    * { min-width: 0; }
  
    /* ── Force ALL inline grids to single column ── */
    [style*="grid-template-columns"] {
      grid-template-columns: 1fr !important;
      gap: 28px !important;
    }
    [style*="display:grid"],
    [style*="display: grid"] {
      grid-template-columns: 1fr !important;
    }
  
    /* ── Nav ── */
    .nav-right { display: none; }
    #siteHeader.at-top {
      background: rgba(250,252,254,0.96);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
    .header-inner { height: var(--nav-h); gap: 16px; }
    .hamburger { display: flex; }
    .nav-brand { gap: 10px; }
    .brand-mark { width: 58px; height: 58px; }
    .brand-mark img { width: 100%; height: 100%; }
    .brand-title { font-size: clamp(1.35rem, 5vw, 1.75rem); }
    .brand-subtitle { font-size: .62rem; letter-spacing: .12em; margin-top: 4px; }
    #siteHeader.scrolled .brand-mark { width: 50px; height: 50px; }
    #siteHeader.scrolled .brand-title { font-size: clamp(1.2rem, 4.6vw, 1.55rem); }
  
    /* ── Hero ── */
    .hero {
      min-height: auto;
      align-items: center;
      padding: calc(var(--nav-h) + 46px) 0 58px;
      background:
        linear-gradient(90deg, rgba(21,45,72,.78) 0%, rgba(21,45,72,.48) 55%, rgba(21,45,72,.32) 100%),
        var(--homecare-hero-image);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .recruit-hero {
      background:
        linear-gradient(90deg, rgba(21,45,72,.78) 0%, rgba(21,45,72,.48) 55%, rgba(21,45,72,.32) 100%),
        var(--homecare-hero-image);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: calc(var(--nav-h) + 46px) 0 58px;
    }
    .hero-orbs { display: none; }
    .hero-content {
      padding: 0;
      gap: 0;
      width: min(680px, calc(100vw - 36px));
      max-width: 100%;
      margin: 0 auto;
      text-align: center;
    }
    .copy-desktop { display: none; }
    .copy-mobile { display: inline; }
    .hero-text { text-align: center; }
    .hero-eyebrow { justify-content: center; }
    .hero-text h1 {
      font-size: clamp(1.9rem, 8vw, 2.65rem);
      margin-bottom: 20px;
      max-width: 340px;
      margin-left: auto;
      margin-right: auto;
      overflow-wrap: normal;
    }
    .hero-text,
    .hero-sub {
      width: 100%;
      max-width: 100%;
    }
    .hero-sub {
      font-size: .96rem;
      line-height: 1.65;
      overflow-wrap: anywhere;
      margin: 0 auto;
      max-width: 330px;
    }
    .hero-actions { display: none; }
    .hero-actions .btn {
      width: 100%;
      max-width: 100%;
      min-height: 52px;
      justify-content: center;
      padding: 12px 18px;
      white-space: normal;
      text-align: center;
    }
    .hero-assurances {
      display: none;
    }
    .assurance {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 92px;
      gap: 8px;
      padding: 11px 7px;
      text-align: center;
    }
    .assurance-icon {
      width: 22px;
      height: 22px;
      font-size: .72rem;
    }
    .assurance strong {
      font-size: .72rem;
      line-height: 1.2;
      overflow-wrap: anywhere;
    }
    .assurance span:not(.assurance-icon) {
      display: none;
    }
    .hero-badge-float { display: none; }
    .recruit-hero h1 {
      font-size: clamp(1.78rem, 7.2vw, 2.2rem);
      margin-bottom: 18px;
      max-width: 340px;
      margin-left: auto;
      margin-right: auto;
      overflow-wrap: normal;
    }
    .recruit-hero-copy {
      margin: 0 auto !important;
      line-height: 1.65 !important;
      max-width: 330px !important;
    }
    .recruit-hero div[style*="display:flex;gap:14px"] {
      display: none !important;
    }
    .hero-eyebrow {
      color: var(--gold-light);
    }
    .hero-eyebrow::before {
      background: var(--gold-light);
    }
    .hero-text h1,
    .page-header .section-title,
    .recruit-hero h1 {
      color: var(--cream);
      text-shadow: 0 2px 16px rgba(13,36,24,0.58), 0 1px 2px rgba(13,36,24,0.5);
    }
    .page-header .section-title {
      max-width: 340px;
      margin-left: auto;
      margin-right: auto;
      overflow-wrap: normal;
    }
    .hero-text h1 em,
    .page-header .section-title em,
    .recruit-hero h1 em {
      background: none;
      color: var(--gold-light);
      -webkit-text-fill-color: var(--gold-light);
      text-shadow: none;
    }
    .hero-sub,
    .page-header .section-sub,
    .recruit-hero p {
      color: rgba(250,252,254,0.94);
      text-shadow: 0 2px 12px rgba(13,36,24,0.56), 0 1px 2px rgba(13,36,24,0.45);
    }
    .trust-bar {
      background: var(--cream);
      border-bottom: 1px solid rgba(95,158,209,0.14);
    }
    .trust-item {
      color: var(--forest-deep);
      border-right-color: rgba(95,158,209,0.14);
    }
  
    /* ── Grids ── */
    .why-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(4) { grid-column: span 1; aspect-ratio: 4/3; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-logo-wrap { margin-left: auto; margin-right: auto; }
    .values-inner { grid-template-columns: 1fr 1fr; }
    .who-cards { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .skills-grid { grid-template-columns: 1fr; }
  
    /* ── Forms ── */
    .form-row { grid-template-columns: 1fr; }
    .apply-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px 18px; }
    .contact-layout { grid-template-columns: 1fr; }
  
    /* ── Quick apply ── */
    .quick-apply { padding: 28px 20px; }
    .quick-apply [style*="grid-template-columns"] {
      grid-template-columns: 1fr !important;
    }
  
    /* ── CTA ── */
    .cta-box { padding: 32px 24px; flex-direction: column; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; justify-content: center; }
  
    /* ── Footer ── */
    .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
    .footer-certs { justify-content: center; }
  
    /* ── Floating buttons ── */
    .float-call {
      display: flex;
      right: 14px;
      bottom: 14px;
      width: 52px;
      height: 52px;
      padding: 0;
      border-radius: 50%;
      justify-content: center;
      font-size: 0;
    }
    .float-call svg { width: 22px; height: 22px; }
    .whatsapp-btn {
      left: 14px;
      bottom: 14px;
      min-width: 52px;
      width: 52px;
      height: 52px;
      padding: 0;
      border-radius: 50%;
    }
    .whatsapp-label { display: none; }
    body.home-page .float-call,
    body.home-page .whatsapp-btn {
      display: none;
    }
  
    /* ── Section titles ── */
    .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
    .page-header .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  }
  
  @media (max-height: 640px) and (max-width: 768px) {
    #mobileMenu {
      padding-top: 86px;
      gap: 0;
    }
    .mobile-menu-brand { margin-bottom: 10px; transform: scale(.9); }
    #mobileMenu a {
      font-size: clamp(1.15rem, 5vw, 1.45rem);
      padding: 7px 24px;
    }
    #mobileMenu .mobile-cta {
      margin-top: 6px;
      padding: 10px 26px !important;
    }
  }
  
  @media (max-width: 480px) {
    :root { --section-gap: 50px; }
    .header-inner { padding: 0 16px; }
    .nav-brand { max-width: calc(100vw - 88px); }
    .brand-title { font-size: 1.25rem; }
    .brand-subtitle { font-size: .56rem; }
    .hero { min-height: auto; }
    .hero-content { padding: 0; }
    .hero-text h1 { font-size: clamp(1.8rem, 8.5vw, 2.25rem); }
    .hero-actions { margin-bottom: 28px; }
    .hero-assurances { gap: 7px; padding-top: 18px; }
    .assurance { min-height: 86px; padding: 10px 6px; }
    .assurance strong { font-size: .68rem; }
    .filter-bar { gap: 6px; }
    .filter-btn { padding: 7px 14px; font-size: .78rem; }
    .quick-apply { padding: 22px 16px; }
    .contact-form-wrap { padding: 20px 16px; }
    .cta-box { padding: 28px 18px; }
    .values-inner { grid-template-columns: 1fr; }
    .footer-bottom-links { flex-direction: column; align-items: center; gap: 10px; }
    .section-sub { font-size: .95rem; }
    .hero-sub { font-size: .95rem; }
    .btn { font-size: .88rem; padding: 12px 22px; }
  }
  
  /* ════════════════════════════════════════════════════════
     [MOBILE SAFETY NET] — catches any remaining overflow
     ════════════════════════════════════════════════════════ */
  @media (max-width: 768px) {
    .container { padding: 0 18px; }
    section, .section { padding-left: 0; padding-right: 0; }
    .hero { padding-left: 0; padding-right: 0; }
    .recruit-hero { padding-left: 0; padding-right: 0; }
    
    /* Any inline flex rows that might overflow */
    [style*="display:flex"][style*="gap"],
    [style*="display: flex"][style*="gap"] {
      flex-wrap: wrap !important;
    }
    
    /* Cap widths on elements that might push past viewport */
    img, svg, video, canvas { max-width: 100% !important; }
    
    /* Timeline on mobile */
    .timeline { padding-left: 30px; }
    
    /* Modal full width on mobile */
    .modal { max-height: 95vh; border-radius: var(--radius-sm); }
    .modal-body, .modal-header { padding: 20px 18px; }
  }
  
  
  /* ===== BLOOMHAVEN MASTER BUILD ===== */
  
  /* Header branding */
  .brand-title{
   font-family:"Cinzel","Times New Roman",serif !important;
   text-transform:uppercase;
   letter-spacing:.06em;
   color:#f2f4f7 !important;
   font-weight:600 !important;
  }
  .brand-subtitle{
   font-family:"Cinzel","Times New Roman",serif !important;
   color:#2d6fc2 !important;
   letter-spacing:.25em;
   text-transform:uppercase;
  }
  
  /* Who We Are cards */
  .who-card{
   background:#fff !important;
   border:1px solid rgba(95,168,232,.18);
   box-shadow:0 10px 25px rgba(0,0,0,.08);
  }
  .who-card h4{color:#2d6fc2 !important;}
  .who-card p{color:#55708f !important;}
  
  /* Alternating animations */
  .who-card.from-left,.why-card.from-left,.value-card.from-left{
   opacity:0;transform:translateX(-80px);transition:all .8s ease;
  }
  .who-card.from-right,.why-card.from-right,.value-card.from-right{
   opacity:0;transform:translateX(80px);transition:all .8s ease;
  }
  .who-card.reveal-in,.why-card.reveal-in,.value-card.reveal-in{
   opacity:1;transform:translateX(0);
  }
  
  /* How it works mobile */
  @media (max-width:768px){
   .step-card{
     background:#fff;
     border-radius:18px;
     padding:18px;
     box-shadow:0 10px 24px rgba(0,0,0,.08);
   }
   .step-card:nth-child(odd){margin-right:12%;}
   .step-card:nth-child(even){margin-left:12%;}
  }
  
  
  /* Header branding refinement */
  .brand-title{
    color:#183a6b !important;
    font-size:clamp(2.3rem,4vw,3.8rem) !important;
    font-weight:700 !important;
    text-shadow:none !important;
    opacity:1 !important;
  }
  
  .brand-subtitle{
    color:#9ACD66 !important;
    font-size:1.25rem !important;
    font-weight:700 !important;
    letter-spacing:.30em !important;
    opacity:1 !important;
  }
  
  .brand-copy{
    opacity:1 !important;
  }
  
  
  /* Mobile header fix */
  @media (max-width:768px){
    .brand-copy{flex:1;min-width:0;padding-right:60px;}
    .brand-title{
      font-size:1.05rem !important;
      line-height:1.05 !important;
      letter-spacing:.04em !important;
      white-space:nowrap !important;
      overflow:hidden !important;
      text-overflow:ellipsis !important;
    }
    .brand-subtitle{
      font-size:.55rem !important;
      letter-spacing:.18em !important;
      white-space:nowrap !important;
    }
    .brand-logo,.logo-mark,.site-logo{
      width:52px !important;
      height:52px !important;
      flex-shrink:0 !important;
    }
    .menu-toggle,.nav-toggle,.hamburger{
      margin-left:auto !important;
      z-index:20 !important;
    }
  }
  
  
  /* FINAL BRAND HEADER */
  .brand-title{
    font-family: "Cinzel","Times New Roman",serif !important;
    font-weight:700 !important;
    color:#243f73 !important;
    letter-spacing:.03em !important;
  }
  
  .brand-subtitle{
    color:#9fcb69 !important;
    text-transform:uppercase !important;
    letter-spacing:.22em !important;
    font-weight:700 !important;
  }
  
  @media (max-width:768px){
    .brand-logo,.logo-mark,.site-logo{
      width:48px !important;
      height:48px !important;
    }
  
    .brand-title{
      font-size:1.35rem !important;
      line-height:1.0 !important;
      white-space:normal !important;
      overflow:visible !important;
      text-overflow:unset !important;
    }
  
    .brand-subtitle{
      font-size:.62rem !important;
      line-height:1.1 !important;
    }
  
    .brand-copy{
      max-width:calc(100% - 120px) !important;
      overflow:visible !important;
    }
  }
  
  
  /* === HEADER EXACT FIX === */
  .brand-mark{width:90px !important;height:90px !important;}
  .brand-copy{display:flex;flex-direction:column;justify-content:center;}
  
  .brand-title{
    font-family:"Cinzel", serif !important;
    font-size:1.9rem !important;
    font-weight:700 !important;
    line-height:1 !important;
    color:#243f73 !important;
    letter-spacing:.02em !important;
    white-space:nowrap !important;
  }
  
  .brand-subtitle{
    margin-top:2px !important;
    font-size:.92rem !important;
    font-weight:700 !important;
    text-transform:uppercase !important;
    letter-spacing:.28em !important;
    color:#9fcb69 !important;
    white-space:nowrap !important;
  }
  
  #siteHeader.scrolled .brand-mark{width:52px !important;height:52px !important;}
  #siteHeader.scrolled .brand-title{font-size:1.35rem !important;}
  #siteHeader.scrolled .brand-subtitle{font-size:.52rem !important;}
  
  @media (max-width:768px){
    .nav-brand{gap:10px !important;}
    .brand-mark{width:46px !important;height:46px !important;}
    .brand-title{font-size:1.05rem !important;}
    .brand-subtitle{font-size:.48rem !important;letter-spacing:.20em !important;}
    .brand-copy{max-width:160px !important;}
  }
  
  
  /* Hours notice close button */
  .hours-notice{position:relative;}
  .hours-notice-close{
  position:absolute;right:10px;top:8px;border:0;background:none;
  font-size:20px;cursor:pointer;color:inherit;line-height:1;
  }
  
  /* Deep audit enhancements */
  img{max-width:100%;height:auto}
  .skip-link{position:absolute;left:-9999px}.skip-link:focus{left:10px;top:10px;z-index:9999;padding:10px;background:#fff}
  :focus-visible{outline:3px solid currentColor;outline-offset:2px}
  .reveal-on-scroll{opacity:0;transform:translateY(24px);transition:all .6s ease}
  .reveal-on-scroll.revealed{opacity:1;transform:none}
  @media (prefers-reduced-motion: reduce){*,*:before,*:after{animation:none!important;transition:none!important;scroll-behavior:auto!important}}
  
  
  /* Desktop + Mobile dropdown/menu white theme override */
  #mobileMenu{
    background:#ffffff !important;
  }
  #mobileMenu a,
  .mobile-menu-brand,
  .mobile-menu-brand .brand-title{
    color:#000000 !important;
  }
  .mobile-menu-brand .brand-subtitle{
    color:#666666 !important;
  }
  #mobileMenu a:hover,
  #mobileMenu a.active{
    background:rgba(36,63,115,.08) !important;
    color:#000000 !important;
  }
  
  /* Desktop dropdowns */
  .dropdown-menu,
  .submenu,
  .nav-dropdown,
  ul.dropdown,
  nav ul ul{
    background:#ffffff !important;
  }
  .dropdown-menu a,
  .submenu a,
  .nav-dropdown a,
  nav ul ul a{
    color:#000000 !important;
  }
