@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:wght@500;600;700&family=Fraunces:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@400;500;600&family=Manrope:wght@400;500;600;700&display=swap');

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

:root {
  /* â”€â”€ Core brand â”€â”€ */
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --dark-green: #0A3322;
  --pastel-green: #D4EED5;
  --overlay: rgba(10, 51, 34, 0.20);
  --shadow-header: 0 2px 4px rgba(0, 0, 0, 0.05);

  /* â”€â”€ Extended palette â”€â”€ */
  --gold:        #E8A020;        /* warm amber â€” replaces digital yellow */
  --gold-light:  #FDF3DC;        /* cream tint for surfaces */
  --coral:       #E8806A;        /* warm accent for CTAs / highlights */
  --coral-light: #FDEEE9;
  --sage:        #4E9468;        /* mid green â€” eyebrows, accents */
  --sage-light:  #EBF5EE;        /* section surface */
  --lavender:    #8B6BAE;        /* testimonials accent */
  --lavender-light: #F3EAF9;
  --mist:        #F2F6F3;        /* neutral sage-tinted surface */
  --ink:         #0D1F17;        /* near-black for dark sections */
  --cream:       #FBF8F3;        /* warm off-white for about section */

  /* â”€â”€ Text hierarchy â”€â”€ */
  --text-primary:   var(--dark-green);
  --text-secondary: #3D5244;
  --text-muted:     #7A9585;
  --text-invert:    #F0F6F2;

  /* â”€â”€ Interactive â”€â”€ */
  --focus-ring: 0 0 0 3px rgba(78,148,104,0.4);

  /* Typographic scale â€” 1.25 ratio */
  --text-xs:   clamp(0.70rem, 0.9vw,  0.75rem);
  --text-sm:   clamp(0.82rem, 1.1vw,  0.875rem);
  --text-base: clamp(0.94rem, 1.2vw,  1rem);
  --text-md:   clamp(1.05rem, 1.5vw,  1.125rem);
  --text-lg:   clamp(1.2rem,  1.8vw,  1.4rem);
  --text-xl:   clamp(1.5rem,  2.2vw,  1.75rem);
  --text-2xl:  clamp(1.8rem,  3vw,    2.5rem);
  --text-3xl:  clamp(2rem,    3.5vw,  2.8rem);
  --text-4xl:  clamp(2.4rem,  4.2vw,  3.5rem);
  --text-5xl:  clamp(2.8rem,  5vw,    4rem);
  --text-6xl:  clamp(3.2rem,  6vw,    5rem);

  /* Gradient text accent */
  --grad-text: linear-gradient(135deg, #1a5c3a 0%, #4E9468 50%, #800080 100%);

  /* â”€â”€ Spacing scale (8px grid) â”€â”€ */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  40px;
  --space-8:  48px;
  --space-9:  64px;
  --space-10: 80px;
  --space-11: 100px;
  --space-12: 120px;

  /* â”€â”€ Border-radius scale â”€â”€ */
  --rad-sm:   4px;
  --rad-md:   8px;
  --rad-lg:   16px;
  --rad-xl:   24px;
  --rad-2xl:  32px;
  --rad-pill: 999px;
  --rad-full: 50%;
  /* aliases */
  --radius-sm:   var(--rad-sm);
  --radius-md:   var(--rad-md);
  --radius-lg:   var(--rad-lg);
  --radius-xl:   var(--rad-xl);
  --radius-2xl:  var(--rad-2xl);
  --radius-pill: var(--rad-pill);
  --radius-full: var(--rad-full);

  /* â”€â”€ Shadow system â”€â”€ */
  --shadow-xs: 0 1px 3px rgba(10,51,34,0.06);
  --shadow-sm: 0 2px 8px rgba(10,51,34,0.08);
  --shadow-md: 0 4px 16px rgba(10,51,34,0.10);
  --shadow-lg: 0 8px 32px rgba(10,51,34,0.12);
  --shadow-xl: 0 16px 56px rgba(10,51,34,0.14);
  --shadow-glow-green:   0 8px 32px rgba(78,148,104,0.25);
  --shadow-glow-purple:  0 8px 32px rgba(128,0,128,0.25);

  /* â”€â”€ Easing system â”€â”€ */
  --ease-out:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:     cubic-bezier(0.65, 0, 0.35, 1);

  /* â”€â”€ Duration â”€â”€ */
  --dur-fast:   0.15s;
  --dur-base:   0.25s;
  --dur-slow:   0.45s;
  --dur-slower: 0.7s;

  /* â”€â”€ Breakpoints (reference only â€” use in @media) â”€â”€
     --bp-sm:  600px
     --bp-md:  768px
     --bp-lg:  900px
     --bp-xl:  1200px
     --bp-2xl: 1440px
  â”€â”€ */

  /* â”€â”€ Z-index scale â”€â”€ */
  --z-base:    1;
  --z-raised:  10;
  --z-overlay: 100;
  --z-modal:   1000;
  --z-nav:     10050;
  --z-toast:   9999;
  --z-top:     99999;
}

/* â”€â”€ Global focus-visible â€” branded ring â”€â”€ */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--rad-sm);
}
/* Buttons, links, tabs get tighter ring */
button:focus-visible,
a:focus-visible,
[role="tab"]:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  box-shadow: none;
  border-radius: var(--rad-sm);
}

/* Embedded â€œas-â€ navbar on white: sage ring looks like a stray green line on the logo */
.as-header-wrapper a:focus-visible,
.as-header-wrapper button:focus-visible {
  outline: 2px solid #64748b;
  outline-offset: 2px;
  box-shadow: none;
}
/* Tab panels */
[role="tabpanel"]:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

/* â”€â”€ Comprehensive prefers-reduced-motion â”€â”€ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .hw > span {
    transform: none !important;
    clip-path: none !important;
  }
  .hero-orbs { display: none; }
  #slc-preloader .slc-pre-bar-fill { transition: none !important; }
}

/*
 * Donâ€™t set overflow-x on html/body â€” it breaks position:sticky (Support Highlights stacking cards).
 * Horizontal bleed is prevented by fixing 100vw breakouts (e.g. homepage .hp-support__scroll) instead.
 */
html, body {
  height: auto;
  min-height: 100%;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  line-height: 1.7;
  background: var(--white);
  color: var(--dark-green);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scrollbar-gutter: stable;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ HEADER ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
/* â”€â”€ Image performance defaults â”€â”€ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* â”€â”€ HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  box-shadow: var(--shadow-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 0 24px;
  z-index: 1000;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  color: var(--dark-green);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.logo-wordmark span {
  color: var(--gold);
}

.logo-wordmark small {
  font-size: 0.82em;
  font-weight: 600;
  color: var(--dark-green);
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 24px;
}

.site-nav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-green);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--dark-green);
  transition: width 0.2s ease;
}

.site-nav a:hover {
  color: #061d14;
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-pages {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-pages svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pastel-green);
  color: var(--dark-green);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  width: 150px;
  height: 48px;
  border-radius: var(--rad-xl);
  border: none;
  cursor: pointer;
  justify-content: center;
  padding: 0 18px;
  transition: background var(--dur-base) ease, transform var(--dur-base) ease;
  flex-shrink: 0;
}

.btn-cta:hover {
  background: #b8ddb9;
  transform: translateY(-2px);
}

.btn-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ HERO ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  margin-top: 0;
  background-image: url('../assets/hero.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  contain: layout;
}
/* Serve smaller hero on mobile to save bandwidth */
@media (max-width: 600px) {
  .hero {
    background-image: url('../assets/hero-mobile.jpg');
  }
}
@media (max-width: 600px) and (-webkit-min-device-pixel-ratio: 2),
       (max-width: 600px) and (min-resolution: 192dpi) {
  .hero {
    background-image: url('../assets/hero-mobile@2x.jpg');
  }
}

/* Fallback gradient when no image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a5c3a 0%, #2d8c5e 50%, #0a3322 100%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}

@keyframes heroIlFloat {
  0%, 100% { transform: translateY(calc(-50% - 10px)); }
  50% { transform: translateY(calc(-50% + 10px)); }
}

/* Content positioned ~40% from top, 10% from left */
.hero-content {
  position: absolute;
  top: 40%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 4;
  max-width: 640px;
  isolation: isolate;
}

/* Glassmorphic panel behind the headline */
.hero-title-backdrop {
  position: absolute;
  inset: -20px -32px -20px -32px;
  background: linear-gradient(135deg,
    rgba(10, 40, 28, 0.18) 0%,
    rgba(30, 20, 60, 0.15) 35%,
    rgba(10, 50, 80, 0.14) 65%,
    rgba(60, 20, 40, 0.13) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  z-index: -1;
  pointer-events: none;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  font-weight: 400;
  color: rgba(212, 238, 213, 0.88);
  line-height: 1.6;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.hero-sub:last-of-type {
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--off-white);
  margin-bottom: 20px;
}

/* Wrapper for animated lines — must NOT use display:contents or display:none on mobile can fail to hide children in some WebKit builds */
.hero-headline__rich {
  display: block;
}

/* Two logical rows (phrase / phrase); ≤900px see plain .hero-headline__simple in index instead */
.hero-headline__line {
  display: block;
}

/* Word-by-word reveal */
.hero-headline .hw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero-headline .hw span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: wordReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes wordReveal {
  to { transform: translateY(0); opacity: 1; }
}

/* Scroll progress bar â€” removed */
#scroll-progress { display: none; }

/* Shimmer on filled button */
.btn-hero-filled {
  overflow: hidden;
}
.btn-hero-filled::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn-hero-filled:hover::after {
  left: 130%;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-filled {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(165deg, #e3f7e4 0%, var(--pastel-green) 55%, #c5e9c7 100%);
  color: var(--dark-green);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  min-width: 158px;
  min-height: 48px;
  padding: 0 1.35rem;
  border-radius: 4px 16px 4px 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 10px 28px rgba(10, 51, 34, 0.22);
  cursor: pointer;
  justify-content: center;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpBtn 0.8s ease forwards 0.5s;
  transition:
    background var(--dur-base) ease,
    transform var(--dur-base) ease,
    box-shadow var(--dur-base) ease,
    border-color var(--dur-base) ease;
}

.btn-hero-filled:hover {
  background: linear-gradient(165deg, #ecfbe8 0%, #d4f0d6 50%, #b8e0bb 100%);
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 14px 36px rgba(10, 51, 34, 0.28);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 30, 24, 0.18);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  min-width: 168px;
  min-height: 48px;
  padding: 0 1.35rem;
  border-radius: 16px 4px 16px 4px;
  border: 2px solid rgba(212, 238, 213, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpBtn 0.8s ease forwards 0.7s;
  transition:
    background var(--dur-base) ease,
    transform var(--dur-base) ease,
    border-color var(--dur-base) ease,
    box-shadow var(--dur-base) ease;
}

.btn-hero-outline:hover {
  background: rgba(212, 238, 213, 0.16);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.btn-hero-outline svg,
.btn-hero-filled svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-hero-filled:focus-visible,
.btn-hero-outline:focus-visible {
  outline: 3px solid rgba(212, 238, 213, 0.55);
  outline-offset: 3px;
}

/* Social Proof */
.hero-social-proof {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 1.1s;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-row svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  fill: var(--gold);
}

.rating-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--off-white);
}

.trust-text {
  font-size: 12px;
  color: rgba(250, 250, 248, 0.85);
  font-weight: 500;
  text-align: right;
}

.framer-tag { display: none; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ ANIMATIONS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
/* â”€â”€â”€ PRELOADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#slc-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0a3322;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
#slc-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.slc-pre-logo {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: #D4EED5;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(12px);
  animation: preLogoIn 0.6s cubic-bezier(0.22,1,0.36,1) 0.15s forwards;
}
.slc-pre-logo span { color: #a78bfa; }
.slc-pre-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.slc-pre-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #800080, #c084fc);
  border-radius: 2px;
  animation: preBarFill 1.1s cubic-bezier(0.4,0,0.2,1) 0.2s forwards;
}
@keyframes preLogoIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes preBarFill {
  to { width: 100%; }
}

/* Hero image blur-up */
.hero { background-color: #0a3322; }
.hero.img-loaded {
  animation: heroImgReveal 0.9s ease forwards;
}
@keyframes heroImgReveal {
  from { filter: blur(14px) brightness(0.7); }
  to   { filter: blur(0px)  brightness(1); }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpBtn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ PARALLAX STRIP ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.strip-wrapper {
  overflow: hidden;
  background: var(--white);
  padding: 48px 0;
  /* mask edges so arches fade in/out gracefully */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.photo-strip {
  display: flex;
  align-items: center;   /* centre-align so rotated tiles don't overflow vertically */
  gap: 20px;
  width: max-content;
  will-change: transform;
  /* JS drives translateX; start at 0 */
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Base tile ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â all shapes share the same height ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.strip-arch {
  flex-shrink: 0;
  overflow: hidden;
  background: var(--pastel-green);
  position: relative;
  box-shadow: var(--shadow-sm);
  height: 340px;   /* ALL tiles exactly this tall */
}

.strip-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strip-fallback-icon {
  font-size: 64px;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.strip-arch.strip-fallback {
  background: linear-gradient(160deg, #c8e6c9, #a5d6a7);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Shape 1: Circle ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â perfect circle ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.strip-shape--circle {
  width: 340px;
  border-radius: 50%;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Shape 2: Stadium ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â dome on top, flat bottom ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.strip-shape--stadium {
  width: 260px;
  border-radius: 170px 170px 20px 20px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Shape 3: Arch ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â narrower, pointed dome top ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.strip-shape--arch {
  width: 220px;
  border-radius: 110px 110px 14px 14px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Shape 4: Pill-right ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â dome faces RIGHT, flat on left ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.strip-shape--pill {
  width: 320px;
  border-radius: 20px 170px 170px 20px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Shape 5: Pill-left ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â dome faces LEFT, flat on right ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.strip-shape--slim {
  width: 320px;
  border-radius: 170px 20px 20px 170px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Shape 6: Squircle ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â large rounded corners all sides ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.strip-shape--squircle {
  width: 300px;
  border-radius: 60px;
}

@media (max-width: 900px) {
  .strip-arch            { height: 240px; }
  .strip-shape--circle   { width: 240px; }
  .strip-shape--stadium  { width: 190px; border-radius: 120px 120px 14px 14px; }
  .strip-shape--arch     { width: 160px; border-radius: 80px 80px 10px 10px; }
  .strip-shape--pill     { width: 240px; border-radius: 14px 120px 120px 14px; }
  .strip-shape--slim     { width: 240px; border-radius: 120px 14px 14px 120px; }
  .strip-shape--squircle { width: 220px; border-radius: 44px; }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ ABOUT US ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.about {
  position: relative;
  background: var(--cream);
  padding: var(--space-10) var(--space-5);
  overflow: hidden;
}

/* Botanical watermark SVG as CSS bg */
.about-botanical {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath d='M10 180 C10 100 80 20 100 10' stroke='%230A3322' stroke-width='1.2' stroke-linecap='round'/%3E%3Cpath d='M10 180 C30 160 60 150 90 130' stroke='%230A3322' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M25 155 C20 135 30 115 50 100' stroke='%230A3322' stroke-width='0.8' stroke-linecap='round'/%3E%3Cpath d='M25 155 C40 145 60 140 80 125' stroke='%230A3322' stroke-width='0.8' stroke-linecap='round'/%3E%3Cellipse cx='100' cy='10' rx='18' ry='28' stroke='%230A3322' stroke-width='1' transform='rotate(-20 100 10)'/%3E%3Cellipse cx='60' cy='60' rx='14' ry='22' stroke='%230A3322' stroke-width='0.8' transform='rotate(30 60 60)'/%3E%3Cellipse cx='30' cy='110' rx='12' ry='18' stroke='%230A3322' stroke-width='0.8' transform='rotate(-10 30 110)'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Left Column ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.about-eyebrow {
  font-family: 'Allura', cursive;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #4E9468;
  margin-bottom: 2px;
  display: block;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.about-script-accent {
  display: block;
  font-family: 'Allura', cursive;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #800080;
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 4px;
  text-align: center;
  pointer-events: none;
  letter-spacing: 0.03em;
}

.about-headline {
  font-family: 'Fraunces', serif;
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--dark-green);
  margin-bottom: 24px;
  margin-top: 8px;
}

.about-body {
  font-size: 1rem;
  line-height: 1.75;
  color: #4C574E;
  max-width: 65ch;
  margin-bottom: 18px;
}

.btn-tour {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pastel-green);
  color: var(--dark-green);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 0 28px;
  height: 52px;
  border-radius: var(--rad-2xl);
  border: none;
  cursor: pointer;
  justify-content: center;
  margin-top: 12px;
  transition: background var(--dur-base) ease, transform var(--dur-base) ease;
}

.btn-tour:hover {
  background: #b8ddb9;
  transform: translateY(-3px);
}

.btn-tour svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Right Column ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.about-right {
  position: relative;
  height: 480px;
}

/* Large arch image ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â left side, tall */
.arch-large {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  border-radius: 999px 999px 24px 24px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: #c5e3c6;
}

.arch-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.arch-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #c8e6c9, #a5d6a7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

/* Small arch image ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â right side, shorter, bottom-aligned */
.arch-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 42%;
  height: 72%;
  border-radius: 999px 999px 20px 20px;
  border: 4px solid var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  overflow: hidden;
  background: #a0cfb4;
  z-index: 2;
}

.arch-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Explore Services circle badge */
.explore-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  z-index: 3;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.explore-badge:hover {
  transform: scale(1.08);
}

.explore-badge svg {
  width: 100%;
  height: 100%;
}

/* Spinning 4-pointed star ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â sits in the white gap between the two arches */
.about-star {
  position: absolute;
  top: 15%;
  left: 66%;
  margin-left: -26px;
  width: 52px;
  height: 52px;
  z-index: 4;
  animation: spin-star 6s linear infinite;
}

@keyframes spin-star {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SERVICES ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.services {
  position: relative;
  background: var(--white);
  padding: var(--space-11) var(--space-5);
  overflow: hidden;
}
/* Radial glow accent behind services heading */
.services::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(78,148,104,0.10) 0%, rgba(128,0,128,0.06) 50%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.services-container { position: relative; z-index: 1; }

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-eyebrow {
  font-family: 'Allura', cursive;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #4E9468;
  margin-bottom: 2px;
  display: block;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.services-headline {
  font-family: 'Fraunces', serif;
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  /* gradient text */
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-headline,
.about-headline,
.services-headline,
.hiw-title,
.wcu-headline,
.testi-heading,
.ds5-intro__title,
.slc-card-title,
.modules-heading,
.hp-support__title,
.ps-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Gradient accent on section headings */
.hero-headline,
.about-headline,
.services-headline,
.hiw-title,
.wcu-headline,
.testi-heading,
.ds5-intro__title,
.slc-card-title,
.modules-heading,
.hp-support__title,
.ps-title {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero H1: exclude from gradient-fill above â€” greens in --grad-text match the hero photo and read as invisible */
.hero .hero-headline {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  color: var(--off-white);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 8px 32px rgba(10, 20, 16, 0.55);
}

/* NDIS badge â€” smaller + lower so it clears the headline */
.hero-il-float {
  position: absolute;
  left: auto;
  right: clamp(14px, 3.2vw, 56px);
  top: 64%;
  width: clamp(118px, 14vw, 200px);
  height: auto;
  transform: translateY(-50%);
  transform-origin: center right;
  animation: heroIlFloat 10.5s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 14px 28px rgba(91, 33, 182, 0.32));
  will-change: transform;
}

.tabs-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  position: relative;
}

/* Wrapper that clips the scroll and applies the fade-out mask */
.tabs-scroll-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  /* Fade mask: solid for ~85% then fades out the last 15% */
  -webkit-mask-image: linear-gradient(to right, black 0%, black 78%, transparent 100%);
  mask-image: linear-gradient(to right, black 0%, black 78%, transparent 100%);
}

.tabs-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 6px 4px 6px;
}

.tabs-scroll::-webkit-scrollbar {
  display: none;
}

.tab-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  /* ~4.3 pills visible: (container - gaps) / 4.3 ÃƒÂ¢Ã¢â‚¬Â°Ã‹â€  22% each */
  width: calc((100%) / 4.3);
  min-width: 180px;
  height: 72px;
  border-radius: var(--rad-lg);
  border: 1.5px solid #D8E8D4;
  background: #FAFDF9;
  color: var(--dark-green);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 22px;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.18s ease;
  line-height: 1.3;
  text-align: left;
  box-shadow: var(--shadow-xs);
}

.tab-pill span {
  font-size: 16px;
  font-weight: 700;
  display: block;
  white-space: nowrap;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-top: 3px;
  color: var(--dark-green);
}

.tab-pill:hover:not(.active) {
  background: #EFF7EC;
  border-color: #A8C9A0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10,51,34,0.1);
}

.tab-pill.active {
  background: var(--dark-green);
  border-color: var(--dark-green);
  color: #F5F2C0;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(10,51,34,0.25);
  transform: translateY(-2px);
}

.tab-pill.active span {
  color: #F9F7D9;
}

/* Circular nav button */
.tabs-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--dark-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 14px rgba(10,51,34,0.25);
}

.tabs-nav-btn:hover {
  background: #051f12;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(10,51,34,0.35);
}

.tabs-nav-btn svg path {
  stroke: #fff;
}

.tabs-nav-btn svg {
  width: 16px;
  height: 16px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Service Card ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.service-card-wrap {
  position: relative;
  min-height: 400px;
}

.service-card {
  display: none;   /* hidden by default ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â JS adds .active to show one at a time */
  grid-template-columns: 1fr 1fr;
  height: 400px;
  border-radius: var(--rad-2xl);
  background: #1a3d2a;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.service-card.active {
  display: grid;
  opacity: 0;
  transform: translateY(30px);
  animation: svcCardIn 0.5s ease forwards;
}

/* Card enter animation */
@keyframes svcCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cross-fade class added during transition */
.service-card.fading-out {
  animation: svcFadeOut 0.25s ease forwards;
  pointer-events: none;
}

@keyframes svcFadeOut {
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* Image column */
.card-image {
  position: relative;
  overflow: hidden;
  border-radius: 26px 0 0 26px;
  margin: 14px 0 14px 14px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #c8e6c9, #6cad7e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

/* Content column */
.card-content {
  background: #FAF5C0;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 12px;
  line-height: 1.2;
}

.card-desc {
  font-size: 1rem;
  font-weight: 500;
  color: #4C574E;
  line-height: 1.65;
  margin-bottom: 18px;
  max-height: 30%;
  overflow: hidden;
}

.card-includes {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.card-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.card-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #4C574E;
  font-weight: 500;
}

.card-bullets li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Learn more link */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dark-green);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  width: fit-content;
  transition: gap 0.2s ease;
}

.card-link:hover {
  text-decoration: underline;
}

.card-link:hover svg {
  transform: translateX(4px);
}

.card-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ HOW IT WORKS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
/* DS5 CARE GRID */
[data-ds5-section] {
  font-family: 'Manrope', sans-serif;
  color: #f4f1ea;
}

.ds5-care-section {
  background: #032d4b;
  padding: 0;
}

.ds5-care-shell {
  max-width: 1340px;
  margin: 0 auto;
  padding: 80px 95px 80px;
}

.ds5-care-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas:
    "intro intro intro personal"
    "nutrition . social ."
    ". medical . cta";
  gap: 0;
  grid-auto-rows: minmax(230px, auto);
  align-items: stretch;
}

.ds5-intro {
  grid-area: intro;
  align-self: start;
  padding: 0 36px 0 0;
  max-width: 760px;
}

.ds5-intro__title,
.ds5-card__title,
.ds5-cta-card__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.ds5-intro__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.7rem, 3.6vw, 4.2rem);
  line-height: 0.94;
}

.ds5-intro__desc {
  margin: 10px 0 0;
  max-width: 640px;
  font-size: clamp(0.9rem, 0.86vw, 1.08rem);
  line-height: 1.4;
  color: #b0c5d5;
}

.ds5-card,
.ds5-cta-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  transition: transform 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
  isolation: isolate;
}

.ds5-card::before,
.ds5-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(3, 21, 36, 0.18), rgba(3, 21, 36, 0.66)),
    var(--ds5-hover-image);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 100% 100%, cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.32s ease, transform 0.32s ease;
  pointer-events: none;
}

.ds5-cta-card::before {
  background-image:
    linear-gradient(180deg, rgba(5, 34, 59, 0.16), rgba(5, 34, 59, 0.6)),
    var(--ds5-hover-image);
}

.ds5-card__icon,
.ds5-card__content,
.ds5-cta-card__content {
  position: relative;
  z-index: 1;
}

.ds5-card {
  background: #17486f;
  color: #f4f1ea;
  box-shadow: 0 12px 28px rgba(2, 18, 30, 0.12);
}

.ds5-card--personal {
  grid-area: personal;
  --ds5-hover-image: url("../assets/6.png");
}

.ds5-card--nutrition {
  grid-area: nutrition;
  --ds5-hover-image: url("../assets/11.png");
}

.ds5-card--social {
  grid-area: social;
  --ds5-hover-image: url("../assets/15.png");
}

.ds5-card--medical {
  grid-area: medical;
  --ds5-hover-image: url("../assets/20.png");
}

.ds5-cta-card {
  grid-area: cta;
  background: #66a9df;
  color: #123353;
  --ds5-hover-image: url("../assets/23.png");
}

.ds5-card__icon {
  width: 52px;
  height: 52px;
  color: #5aa9ea;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.ds5-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ds5-card__content,
.ds5-cta-card__content {
  margin-top: 0;
  width: 100%;
}

.ds5-card__title {
  font-size: clamp(1.55rem, 1.55vw, 2.25rem);
  line-height: 0.96;
  transition: color 0.24s ease;
}

.ds5-card__desc {
  margin: 10px 0 0;
  max-width: none;
  font-size: clamp(0.88rem, 0.75vw, 1rem);
  line-height: 1.36;
  color: #b0c5d5;
  transition: color 0.24s ease;
}

.ds5-cta-card__title {
  font-size: clamp(1.7rem, 1.85vw, 2.7rem);
  line-height: 0.94;
  color: #123353;
  transition: color 0.24s ease;
}

.ds5-cta-card__title--mobile,
.wcu-card-heading__cert-mobile {
  display: none;
}

.ds5-cta-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 56px;
  margin-top: 20px;
  padding: 0 22px;
  border-radius: 999px;
  background: #032b48;
  color: #f6fbff;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.ds5-card:hover,
.ds5-card:focus-visible,
.ds5-card:focus-within,
.ds5-cta-card:hover,
.ds5-cta-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(2, 18, 30, 0.18);
}

.ds5-card:hover::before,
.ds5-card:focus-visible::before,
.ds5-card:focus-within::before,
.ds5-cta-card:hover::before,
.ds5-cta-card:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.ds5-card:hover .ds5-card__icon,
.ds5-card:focus-visible .ds5-card__icon,
.ds5-card:focus-within .ds5-card__icon {
  opacity: 0;
  transform: translateY(-10px);
}

.ds5-card:hover .ds5-card__title,
.ds5-card:focus-visible .ds5-card__title,
.ds5-card:focus-within .ds5-card__title,
.ds5-card:hover .ds5-card__desc,
.ds5-card:focus-visible .ds5-card__desc,
.ds5-card:focus-within .ds5-card__desc,
.ds5-cta-card:hover,
.ds5-cta-card:focus-within,
.ds5-cta-card:hover .ds5-cta-card__title,
.ds5-cta-card:focus-within .ds5-cta-card__title {
  color: #f4f1ea;
}

.ds5-card:focus-visible {
  outline: 2px solid rgba(144, 203, 255, 0.8);
  outline-offset: -2px;
}

.ds5-cta-card:hover .ds5-cta-card__button,
.ds5-cta-card:focus-within .ds5-cta-card__button {
  background: rgba(3, 21, 36, 0.84);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.ds5-cta-card__button:hover,
.ds5-cta-card__button:focus-visible {
  transform: translateY(-3px);
  background: #04233c;
  box-shadow: 0 20px 36px rgba(3, 24, 41, 0.22);
  outline: none;
}

@media (max-width: 1200px) {
  .ds5-care-shell {
    padding: 56px 40px 56px;
  }

  .ds5-care-grid {
    gap: 0;
    grid-auto-rows: minmax(210px, auto);
  }

  .ds5-card,
  .ds5-cta-card {
    padding: 24px;
  }
}

@media (max-width: 960px) {
  .ds5-care-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "intro intro"
      "personal social"
      "nutrition medical"
      "cta cta";
    gap: 18px;
    grid-auto-rows: auto;
  }

  .ds5-intro {
    padding: 0 0 8px;
    max-width: none;
  }

  .ds5-card,
  .ds5-cta-card {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .ds5-care-shell {
    padding: 54px 16px 54px;
  }

  .ds5-care-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "personal"
      "nutrition"
      "social"
      "medical"
      "cta";
  }

  .ds5-intro__title {
    font-size: clamp(3rem, 12vw, 4.2rem);
  }

  .ds5-card,
  .ds5-cta-card {
    min-height: 300px;
    padding: 24px;
  }

  .ds5-cta-card__button {
    width: 100%;
    min-width: 0;
  }
}

.hiw {
  position: relative;
  background: linear-gradient(160deg, #FAF7F2 0%, #F3F8F4 100%);
  padding: var(--space-12) var(--space-5);
  overflow: hidden;
}

/* Floral line-art watermark left margin */
.hiw-floral {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 600' fill='none'%3E%3C!-- main stem --%3E%3Cpath d='M60 600 C55 500 65 400 60 300 C55 200 65 100 60 0' stroke='%230A3322' stroke-width='1.5' stroke-linecap='round'/%3E%3C!-- left branches --%3E%3Cpath d='M60 480 C40 465 20 460 10 450' stroke='%230A3322' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M60 380 C35 360 15 355 5 340' stroke='%230A3322' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M60 260 C38 242 18 240 8 228' stroke='%230A3322' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M60 150 C38 132 20 128 10 118' stroke='%230A3322' stroke-width='1' stroke-linecap='round'/%3E%3C!-- right branches --%3E%3Cpath d='M60 430 C80 415 100 408 110 398' stroke='%230A3322' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M60 320 C82 302 102 298 112 286' stroke='%230A3322' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M60 200 C80 183 98 178 108 168' stroke='%230A3322' stroke-width='1' stroke-linecap='round'/%3E%3C!-- leaf shapes --%3E%3Cellipse cx='8' cy='450' rx='8' ry='14' stroke='%230A3322' stroke-width='0.8' transform='rotate(-30 8 450)'/%3E%3Cellipse cx='5' cy='340' rx='8' ry='14' stroke='%230A3322' stroke-width='0.8' transform='rotate(-25 5 340)'/%3E%3Cellipse cx='110' cy='398' rx='8' ry='14' stroke='%230A3322' stroke-width='0.8' transform='rotate(30 110 398)'/%3E%3Cellipse cx='112' cy='286' rx='8' ry='13' stroke='%230A3322' stroke-width='0.8' transform='rotate(25 112 286)'/%3E%3Cellipse cx='10' cy='118' rx='7' ry='12' stroke='%230A3322' stroke-width='0.8' transform='rotate(-20 10 118)'/%3E%3Cellipse cx='108' cy='168' rx='7' ry='12' stroke='%230A3322' stroke-width='0.8' transform='rotate(20 108 168)'/%3E%3C/svg%3E");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top left;
}

.hiw-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section heading */
.hiw-header {
  text-align: center;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}

.hiw-kicker {
  margin: 0 0 14px;
  color: #537A65;
}

.hiw-kicker-text {
  position: relative;
  display: inline-block;
  padding: 0 10px 18px;
  font-family: 'Allura', cursive;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1;
}

.hiw-kicker-text::before,
.hiw-kicker-text::after {
  content: '';
  position: absolute;
  left: 9%;
  right: 9%;
  border-radius: var(--rad-pill);
  background: #C7DFBD;
}

.hiw-kicker-text::before {
  bottom: 10px;
  height: 3px;
  opacity: 0.95;
}

.hiw-kicker-text::after {
  bottom: 3px;
  height: 2px;
  opacity: 0.8;
}

.hiw-title {
  font-family: 'Fraunces', serif;
  font-style: normal;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--dark-green);
  max-width: 900px;
  margin: 0 auto;
}

/* Three-column grid */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  position: relative;
}
.hiw-grid::before {
  content: none;
  display: none;
}
/* Idle float after landing */
.hiw-step.in-view .step-body {
  animation: stepFloat 4s ease-in-out infinite 1.2s;
}
@keyframes stepFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

/* Individual step column ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â thin bar on top, main card below (two separate boxes) */
.hiw-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: stretch;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Thin top bar ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.step-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-radius: var(--rad-lg);
  box-shadow: 0 2px 12px rgba(10,51,34,0.10);
  height: 62px;
  flex-shrink: 0;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Main card body ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.step-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: var(--rad-lg);
  box-shadow: 0 4px 24px rgba(10,51,34,0.08);
  flex: 1;
}

/* Step pill badge inside bar */
.step-pill {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

/* Icon circle inside bar */
.step-bar-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

.step-bar-icon svg {
  width: 18px;
  height: 18px;
}

/* Large icon circle in body */
.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-out;
  cursor: default;
  flex-shrink: 0;
}

.step-circle:hover {
  transform: scale(1.06);
}

.step-circle--yellow   { background: #FCF8D9; }
.step-circle--mint     { background: #E8F6E5; }
.step-circle--lavender { background: #F3EAF9; }

.step-icon {
  width: 28px;
  height: 28px;
}

.step-icon path,
.step-icon rect {
  transition: stroke 0.2s ease-out;
}

/* Step heading & desc */
.step-heading {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-green);
  line-height: 1.25;
  margin: 0;
}

.step-desc {
  font-size: 0.95rem;
  color: #4C574E;
  line-height: 1.7;
  margin: 0;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Color themes per step ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */

/* Step 01 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Yellow/olive */
.hiw-step--yellow .step-bar   { background: #C8B84A; }
.hiw-step--yellow .step-body  { background: #FAF5C0; border: 1.5px solid #C8B84A; }
.hiw-step--yellow .step-pill  { color: #0A3322; }
.hiw-step--yellow .step-bar-icon { color: #0A3322; }

/* Step 02 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Mint/green */
.hiw-step--mint .step-bar   { background: #4E9468; }
.hiw-step--mint .step-body  { background: #E8F6E5; border: 1.5px solid #4E9468; }
.hiw-step--mint .step-pill  { color: #fff; }
.hiw-step--mint .step-bar-icon { color: #fff; }

/* Step 03 ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â Lavender/purple */
.hiw-step--lavender .step-bar   { background: #8B6BAE; }
.hiw-step--lavender .step-body  { background: #F3EAF9; border: 1.5px solid #8B6BAE; }
.hiw-step--lavender .step-pill  { color: #fff; }
.hiw-step--lavender .step-bar-icon { color: #fff; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Stack-then-slide animation ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
/* Left card starts on top of the centre (shifted right) */
.hiw-step--from-left {
  opacity: 0;
  transform: translateX(calc(100% + 24px));
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Centre card starts visible and stationary */
.hiw-step--from-bottom {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Right card starts on top of the centre (shifted left) */
.hiw-step--from-right {
  opacity: 0;
  transform: translateX(calc(-100% - 24px));
  transition: opacity 0.7s ease 0.05s, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
}

.hiw-step.in-view {
  opacity: 1;
  transform: translate(0, 0);
}


/* --- CARE HIGHLIGHTS STACKING CARDS --- */
.slc-stack-section {
  position: relative;
  padding: 80px 0 80px;
  background: #f7f6f2;
}
.slc-stack-header {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.slc-cards-stack {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.slc-work-card {
  position: sticky;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  min-height: 320px;
  margin-bottom: 24px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.12);
}
.slc-work-card:nth-child(1) { z-index: 1; top: 80px; }
.slc-work-card:nth-child(2) { z-index: 2; top: 100px; }
.slc-work-card:nth-child(3) { z-index: 3; top: 120px; }
.slc-card--1 { background: #D4EED5; }
.slc-card--2 { background: #EAD9F7; }
.slc-card--3 { background: #FAE8D1; }
.slc-card-left {
  flex: 0 0 52%;
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.slc-card-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10,51,34,0.5);
  display: block;
  margin-bottom: 14px;
}
.slc-card-title {
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0A3322;
  margin-bottom: 16px;
}
.slc-card-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(10,51,34,0.6);
  max-width: 360px;
}
.slc-card-stats {
  display: flex;
  gap: 36px;
  margin-top: 28px;
}
.slc-stat-label {
  font-size: 11px;
  color: rgba(10,51,34,0.45);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.slc-stat-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0A3322;
}
.slc-card-right {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
  border-radius: 0 24px 24px 0;
}
.slc-card-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 768px) {
  .slc-work-card { flex-direction: column; min-height: unset; }
  .slc-card-left { flex: none; padding: 32px 24px; }
  .slc-card-desc { max-width: 100%; }
  .slc-card-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    align-items: start;
  }
  .slc-card-stats > div { min-width: 0; }
  .slc-stat-value {
    font-size: clamp(22px, 6vw, 32px);
    line-height: 1.08;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .slc-card-right { flex: none; height: 240px; border-radius: 0 0 24px 24px; }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ WHY CHOOSE US ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.wcu {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--mist) 0%, #EAF2EC 100%);
  padding: var(--space-12) var(--space-5);
  overflow: hidden;
}

/* Botanical watermark on left edge */
.wcu-botanical {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 700' fill='none'%3E%3Cpath d='M50 700 C48 580 52 460 50 340 C48 220 52 110 50 0' stroke='%230A3322' stroke-width='1.8' stroke-linecap='round'/%3E%3Cpath d='M50 620 C32 602 14 596 6 584' stroke='%230A3322' stroke-width='1.1' stroke-linecap='round'/%3E%3Cpath d='M50 520 C70 502 88 496 94 484' stroke='%230A3322' stroke-width='1.1' stroke-linecap='round'/%3E%3Cpath d='M50 420 C30 402 12 396 4 384' stroke='%230A3322' stroke-width='1.1' stroke-linecap='round'/%3E%3Cpath d='M50 310 C70 292 90 286 96 274' stroke='%230A3322' stroke-width='1.1' stroke-linecap='round'/%3E%3Cpath d='M50 200 C32 182 14 176 6 166' stroke='%230A3322' stroke-width='1.1' stroke-linecap='round'/%3E%3Cpath d='M50 100 C70 82 88 76 94 66' stroke='%230A3322' stroke-width='1.1' stroke-linecap='round'/%3E%3Cellipse cx='6' cy='584' rx='7' ry='12' stroke='%230A3322' stroke-width='0.9' transform='rotate(-40 6 584)' fill='none'/%3E%3Cellipse cx='94' cy='484' rx='7' ry='12' stroke='%230A3322' stroke-width='0.9' transform='rotate(40 94 484)' fill='none'/%3E%3Cellipse cx='4' cy='384' rx='7' ry='12' stroke='%230A3322' stroke-width='0.9' transform='rotate(-40 4 384)' fill='none'/%3E%3Cellipse cx='96' cy='274' rx='7' ry='12' stroke='%230A3322' stroke-width='0.9' transform='rotate(40 96 274)' fill='none'/%3E%3Cellipse cx='6' cy='166' rx='6' ry='11' stroke='%230A3322' stroke-width='0.9' transform='rotate(-35 6 166)' fill='none'/%3E%3Cellipse cx='94' cy='66' rx='6' ry='11' stroke='%230A3322' stroke-width='0.9' transform='rotate(35 94 66)' fill='none'/%3E%3C/svg%3E");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top left;
}

.wcu-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section header */
.wcu-header {
  text-align: center;
  margin-bottom: 56px;
}

.wcu-eyebrow {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: #4C574E;
  margin-bottom: 10px;
}

.wcu-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-green);
  margin-bottom: 14px;
}

.wcu-sub {
  font-size: 1rem;
  color: #4C574E;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Four-column grid */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 34px);
  align-items: stretch;
}

/* Base card */
.wcu-card {
  position: relative;
  border-radius: var(--rad-xl);
  min-height: 520px;
  background: #FBFBFA;
  box-shadow: var(--shadow-lg);
  transition: transform 0.28s ease-out, box-shadow 0.28s ease-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.wcu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Card 1: photo card */
.wcu-card--photo {
  position: relative;
  padding: 0;
  background: linear-gradient(180deg, #EEF3F0 0%, #E0E9E3 58%, #0A4A32 100%);
}

.wcu-photo-art,
.wcu-photo-art svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.wcu-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 42%;
  background: linear-gradient(180deg, rgba(10, 51, 34, 0) 0%, rgba(10, 51, 34, 0.5) 34%, rgba(10, 51, 34, 0.95) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 36px 36px;
  gap: 24px;
}

.wcu-c1-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.45rem, 2.45vw, 4.15rem);
  font-weight: 600;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: 290px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.wcu-c1-highlight {
  display: inline-block;
  padding: 0 10px 4px;
  margin: 0 2px;
  background: #165EDA;
  color: var(--white);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(22, 94, 218, 0.25);
}

.btn-wcu-services {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pastel-green);
  color: var(--dark-green);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  width: auto;
  height: 74px;
  padding: 0 26px 0 28px;
  border-radius: var(--rad-pill);
  border: none;
  cursor: pointer;
  justify-content: center;
  align-self: flex-start;
  box-shadow: 0 10px 26px rgba(10, 51, 34, 0.14);
  transition: background var(--dur-base) ease, transform var(--dur-base) ease, box-shadow var(--dur-base) ease;
}

.btn-wcu-services:hover {
  background: #b8ddb9;
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(10, 51, 34, 0.2);
}

.btn-wcu-services svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Card 2: trust card */
.wcu-card--trust {
  background: #FBFBFA;
  padding: 32px 30px 34px;
  justify-content: space-between;
  gap: 12px;
}

.wcu-card-top {
  position: relative;
  z-index: 1;
}

.trust-circle {
  position: relative;
  width: clamp(188px, 14vw, 214px);
  height: clamp(188px, 14vw, 214px);
  border-radius: 50%;
  background: #E5DCF8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.82);
}

.trust-circle::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid #EEE8FB;
}

.trust-shield {
  width: 88px;
  height: 88px;
  z-index: 1;
}

.trust-graphic {
  position: absolute;
  inset: 112px 26px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-deco {
  position: absolute;
  width: 40px;
  height: 40px;
  color: #DCE9D7;
}

.trust-deco svg {
  width: 100%;
  height: 100%;
  display: block;
}

.trust-deco--home {
  top: 14px;
  left: 14px;
}

.trust-deco--hand {
  top: 108px;
  right: 6px;
  transform: rotate(-10deg);
}

.trust-deco--phone {
  bottom: 18px;
  left: 18px;
  transform: rotate(-18deg);
}

/* Card 3: certified card */
.wcu-card--certified {
  background: #FBFBFA;
  padding: 28px 34px 34px;
  gap: 18px;
}

.laurel-wrap {
  position: relative;
  width: min(100%, 316px);
  height: 246px;
  margin: 4px auto 6px;
  flex-shrink: 0;
}

.laurel-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.laurel-portraits {
  position: absolute;
  inset: 0;
}

.portrait-circle {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, var(--portrait-hair) 0 22%, transparent 23%),
    radial-gradient(circle at 50% 42%, var(--portrait-skin) 0 16%, transparent 17%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0 50%, var(--portrait-shirt) 50% 100%),
    linear-gradient(135deg, var(--portrait-bg-1), var(--portrait-bg-2));
}

.portrait-circle::before {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 28px;
  border-radius: 28px 28px 16px 16px;
  background: var(--portrait-jacket);
}

.portrait-circle--1 {
  top: 38px;
  left: 74px;
  --portrait-bg-1: #F3F4F2;
  --portrait-bg-2: #DCE5DF;
  --portrait-hair: #BBA98C;
  --portrait-skin: #F0D5C4;
  --portrait-shirt: #DDE4F2;
  --portrait-jacket: #8DA0B9;
}

.portrait-circle--2 {
  top: 38px;
  right: 74px;
  --portrait-bg-1: #EEF3EC;
  --portrait-bg-2: #D8E7D9;
  --portrait-hair: #B48F54;
  --portrait-skin: #E9D0BD;
  --portrait-shirt: #D6EBE6;
  --portrait-jacket: #8FB3A4;
}

.portrait-circle--3 {
  bottom: 36px;
  left: 38px;
  --portrait-bg-1: #EFF2F1;
  --portrait-bg-2: #DCE5E1;
  --portrait-hair: #8E755E;
  --portrait-skin: #E5C4AE;
  --portrait-shirt: #D6E4F0;
  --portrait-jacket: #6F8AA6;
}

.portrait-circle--4 {
  bottom: 34px;
  left: calc(50% - 36px);
  --portrait-bg-1: #EEF1EA;
  --portrait-bg-2: #D9E4D9;
  --portrait-hair: #A66944;
  --portrait-skin: #EBC9B4;
  --portrait-shirt: #E6E3F6;
  --portrait-jacket: #8E89B8;
}

.portrait-circle--5 {
  bottom: 36px;
  right: 38px;
  --portrait-bg-1: #F3F0EB;
  --portrait-bg-2: #DED8D2;
  --portrait-hair: #6E625C;
  --portrait-skin: #E4C3AE;
  --portrait-shirt: #E5EBDD;
  --portrait-jacket: #73836E;
}

.wcu-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-green);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  margin-top: 12px;
  transition: color 0.2s ease;
}

.wcu-card-link:hover {
  color: #061d14;
}

.wcu-card-link:hover svg {
  transform: translateX(4px);
}

.wcu-card-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* Card 4: emergency card */
.wcu-card--emergency {
  background: #FBFBFA;
  padding: 0;
  gap: 0;
}

.emergency-top {
  padding: 34px 36px 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 22px;
}

.emergency-photo {
  margin-top: auto;
  flex: 0 0 278px;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F1F4F1 16%, #ECEFED 100%);
}

.emergency-photo-art,
.emergency-photo-art svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Shared card text styles */
.wcu-text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.wcu-card-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 2.28vw, 3.9rem);
  font-weight: 600;
  color: var(--dark-green);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.wcu-card-body {
  font-size: 1.02rem;
  color: #3E5649;
  line-height: 1.55;
  max-width: 300px;
}

.wcu-card--trust .wcu-card-heading {
  max-width: 250px;
}

.wcu-card--trust .wcu-card-body {
  max-width: 286px;
}

.wcu-card--certified .wcu-card-heading {
  max-width: 260px;
}

.wcu-card--certified .wcu-card-body {
  max-width: 270px;
}

.wcu-card--emergency .wcu-card-heading {
  max-width: 280px;
}

.wcu-card--emergency .wcu-card-body {
  max-width: 288px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ SCROLL REVEAL ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
/* â”€â”€â”€ SCROLL REVEAL â€” per-type variants â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.scroll-reveal {
  opacity: 0;
}

/* Default: rise up */
.scroll-reveal,
.scroll-reveal[data-reveal="rise"] {
  transform: translateY(48px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

/* Headings: clip-path wipe from bottom */
.scroll-reveal[data-reveal="clip"] {
  transform: translateY(32px);
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1),
              transform 0.65s cubic-bezier(0.22,1,0.36,1),
              clip-path 0.65s cubic-bezier(0.22,1,0.36,1);
}

/* Images: scale from slight zoom with mask */
.scroll-reveal[data-reveal="scale"] {
  transform: scale(1.06);
  filter: blur(4px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1),
              filter 0.8s ease;
}

/* Cards: spring overshoot rise */
.scroll-reveal[data-reveal="card"] {
  transform: translateY(60px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.34,1.56,0.64,1),
              transform 0.65s cubic-bezier(0.34,1.56,0.64,1);
}

/* Fade only (misc) */
.scroll-reveal[data-reveal="fade"] {
  transform: none;
  transition: opacity 0.8s ease;
}

/* â”€â”€ in-view states â”€â”€ */
.scroll-reveal.in-view,
.scroll-reveal[data-reveal="rise"].in-view {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal[data-reveal="clip"].in-view {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0% 0);
}
.scroll-reveal[data-reveal="scale"].in-view {
  opacity: 1;
  transform: scale(1);
  filter: blur(0px);
}
.scroll-reveal[data-reveal="card"].in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.scroll-reveal[data-reveal="fade"].in-view {
  opacity: 1;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ RESPONSIVE ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .hero-content {
    left: 5%;
    max-width: 90%;
  }

  /* About: stack columns */
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-right {
    height: 340px;
  }

  .explore-badge {
    width: 70px;
    height: 70px;
  }

  .about-star {
    width: 22px;
    height: 22px;
  }

  /* Why Choose Us: two-column tablet */
  .wcu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .wcu-card {
    min-height: 560px;
  }

  .wcu-photo-overlay {
    padding: 24px 30px 32px;
  }

  .trust-graphic {
    inset: 110px 22px 108px;
  }

  .laurel-wrap {
    width: min(100%, 288px);
    height: 228px;
  }

  .emergency-top {
    padding: 30px 28px 0;
  }

  .emergency-photo {
    flex-basis: 236px;
  }

  /* How It Works on mobile */
  .hiw-header {
    margin-bottom: 40px;
  }

  .hiw-kicker {
    margin-bottom: 8px;
  }

  .hiw-kicker-text {
    font-size: clamp(2rem, 8vw, 3.2rem);
    padding-bottom: 14px;
  }

  .hiw-title {
    font-size: clamp(1.95rem, 7.2vw, 3.1rem);
    line-height: 1.04;
  }

  .hiw-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hiw-step--from-left,
  .hiw-step--from-right {
    transform: translateY(50px); /* collapse to simple bottom-up on mobile */
  }

  /* Services on mobile */
  .service-card {
    grid-template-columns: 1fr;
    height: auto;
  }

  .card-image {
    height: 220px;
    border-radius: 28px 28px 0 0;
    margin: 16px 16px 0 16px;
  }
}

@media (max-width: 600px) {
  .wcu-grid {
    grid-template-columns: 1fr;
  }

  .wcu-card {
    min-height: auto;
  }

  .wcu-card--photo {
    min-height: 560px;
  }

  .wcu-card--trust,
  .wcu-card--certified {
    padding: 28px 24px;
  }

  .wcu-card--trust {
    gap: 18px;
  }

  .trust-graphic {
    position: relative;
    inset: auto;
    min-height: 220px;
    margin: 0 0 4px;
  }

  .trust-deco--home {
    top: 6px;
    left: 4px;
  }

  .trust-deco--hand {
    top: 98px;
    right: 2px;
  }

  .trust-deco--phone {
    bottom: 8px;
    left: 8px;
  }

  .laurel-wrap {
    width: min(100%, 268px);
    height: 212px;
  }

  .portrait-circle {
    width: 52px;
    height: 52px;
  }

  .portrait-circle::before {
    left: 10px;
    right: 10px;
    bottom: 5px;
    height: 20px;
    border-radius: 20px 20px 12px 12px;
  }

  .portrait-circle--1 {
    top: 34px;
    left: 62px;
  }

  .portrait-circle--2 {
    top: 34px;
    right: 62px;
  }

  .portrait-circle--3 {
    bottom: 30px;
    left: 24px;
  }

  .portrait-circle--4 {
    bottom: 28px;
    left: calc(50% - 26px);
  }

  .portrait-circle--5 {
    bottom: 30px;
    right: 24px;
  }

  .emergency-top {
    padding: 28px 24px 0;
  }

  .emergency-photo {
    flex-basis: 212px;
  }

  .wcu-photo-overlay {
    padding: 22px 24px 28px;
  }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ QUOTE PANEL ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.quote-panel {
  background: #F4F8F5;
  padding: 80px 24px 60px;
  display: flex;
  justify-content: center;
}

.quote-block {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Quote content area */
.quote-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: opacity 0.3s ease;
}

.quote-content.fading {
  opacity: 0;
}

.quote-category {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-green);
}

.quote-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #2a4a38;
  border: none;
  padding: 0;
  margin: 0;
  max-width: 740px;
  position: relative;
  display: inline;
}

.q-mark {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  line-height: 0;
  color: #8AA997;
  vertical-align: -0.3em;
  font-style: normal;
}

.q-mark--open  { margin-right: 4px; }
.q-mark--close { margin-left: 4px; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Category tabs ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.quote-tabs {
  position: relative;
  display: flex;
  gap: 8px;
  width: 600px;
  max-width: 100%;
  padding-bottom: 6px; /* space for underline */
}

.q-tab {
  flex: 1;
  height: 36px;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #8AA997;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.4s ease;
  padding: 0;
  position: relative;
  z-index: 1;
}

.q-tab:hover {
  color: #5c8870;
}

.q-tab.active {
  color: var(--dark-green);
  font-weight: 600;
}

/* Sliding underline marker */
.q-tab-underline {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: var(--dark-green);
  border-radius: 2px;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

@media (max-width: 640px) {
  .quote-tabs {
    width: 100%;
    flex-wrap: wrap;
  }

  .q-tab {
    font-size: 14px;
  }

  .quote-text {
    font-size: 1.2rem;
  }
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ TESTIMONIALS ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.testi {
  background: linear-gradient(160deg, #0D1F17 0%, #122B1E 60%, #1A1028 100%);
  padding: 80px 0 60px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
/* Soft radial glow in testimonials dark section */
.testi::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at top, rgba(139,107,174,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.testi > * { position: relative; z-index: 1; }

/* Section header */
.testi-header {
  text-align: center;
  padding: 0 24px 52px;
}

.testi-script {
  font-family: 'Allura', cursive;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--lavender);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.testi-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-invert);
}

.about-headline,
.services-headline,
.hiw-title,
.wcu-headline,
.testi-heading {
  font-size: clamp(2.05rem, 3.2vw, 3rem);
  line-height: 1.08;
  text-align: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* Stage ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â positions arrows + track */
.testi-stage {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Arrow buttons */
.testi-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(240,246,242,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--text-invert);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(4px);
}

.testi-arrow--left  { left: 16px; }
.testi-arrow--right { right: 16px; }

.testi-arrow:hover {
  background: rgba(139,107,174,0.25);
  border-color: rgba(139,107,174,0.5);
  transform: translateY(-50%) scale(1.08);
}

.testi-arrow svg {
  width: 20px;
  height: 20px;
}

/* Scroll track */
.testi-track {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  scroll-snap-type: none;
  scroll-behavior: auto;
  scrollbar-width: none;
  padding: 20px 72px;
  width: 100%;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-y;
}

.testi-track::-webkit-scrollbar { display: none; }
.testi-track.is-paused           { cursor: default; }
.testi-track.is-dragging         { cursor: grabbing; scroll-behavior: auto; }

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Base card ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.tc {
  flex-shrink: 0;
  width: 340px;
  scroll-snap-align: none;
  border-radius: var(--rad-xl);
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  margin: 0 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.tc.is-clone {
  pointer-events: none;
}

.tc.is-active {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Video card ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.tc--video {
  display: flex;
  flex-direction: column;
  background: var(--dark-green);
}

.tc-video-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a5c3a;
  overflow: hidden;
}

.tc-video-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tc-img-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: linear-gradient(160deg, #1a5c3a, #0a3322);
}

.tc-video-img img[style*="display: none"] + .tc-img-fallback,
.tc-alt-photo img[style*="display: none"] + .tc-img-fallback {
  display: flex;
}

/* Play button circle */
.tc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-base) ease, transform var(--dur-base) ease;
  z-index: 1;
}

.tc-play:hover {
  background: rgba(0,0,0,0.65);
  transform: translate(-50%, -50%) scale(1.1);
}

.tc-play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.tc-video-footer {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: var(--dark-green);
  flex-shrink: 0;
}

.tc-video-footer .tc-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.tc-video-footer .tc-relation {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Quote card ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.tc--quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 24px;
  gap: 16px;
}

.tc--yellow   { background: #FDF8E8; }   /* warm cream â€” replaces digital yellow */
.tc--mint     { background: #EBF5EE; }
.tc--lavender { background: #F0EAF8; }

.tc-stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.tc-stars svg {
  width: 16px;
  height: 16px;
}

.tc-quote-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dark-green);
  max-width: 200px;
}

.tc-reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}

.tc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(10,51,34,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-green);
  flex-shrink: 0;
}

.tc-reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.tc-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-green);
}

.tc-relation {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #4C574E;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Alternate card (split) ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.tc--alt {
  display: flex;
  flex-direction: row;
  background: #F3EAF9;
  overflow: hidden;
  align-items: stretch;
}

.tc-alt-photo {
  width: 40%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
  background: #c8b5e0;
}

.tc-alt-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tc-alt-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 16px;
  gap: 14px;
}

.tc-alt-body .tc-quote-text {
  max-width: none;
  text-align: left;
  font-size: 0.92rem;
}

.tc-alt-body .tc-reviewer {
  padding-top: 0;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Dot navigation ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
.testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 32px;
  padding: 0 24px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240,246,242,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--dur-base) ease, transform var(--dur-base) ease;
  flex-shrink: 0;
}

.testi-dot.active {
  background: var(--lavender);
  transform: scale(1.3);
  width: 20px;
  border-radius: 4px;
}

/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ Responsive ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
@media (max-width: 900px) {
  .tc {
    width: calc(50vw - 56px);
    min-width: 280px;
  }

  .testi-arrow {
    display: none;
  }

  .testi-track {
    padding: 20px 24px;
  }
}

@media (max-width: 600px) {
  .tc {
    width: calc(100% - 48px);
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ SCROLL-DRIVEN MOSAIC GALLERY + CTA Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */

/* Outer section Ã¢â‚¬â€ tall to provide scroll distance for the animation */
.mosaic-scroll-section {
  position: relative;
  height: 400vh;
  background: #F8F5F0;
}

/* Sticky inner container Ã¢â‚¬â€ pins in viewport while outer scrolls */
.mosaic-pin {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Faint floral underlay */
.mosaic-floral {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 500' fill='none'%3E%3Cpath d='M60 500 C58 380 62 260 60 140 C58 60 62 20 60 0' stroke='%230A3322' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M60 420 C38 400 16 394 6 382' stroke='%230A3322' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M60 310 C82 290 104 284 112 272' stroke='%230A3322' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M60 200 C36 182 16 176 6 164' stroke='%230A3322' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M60 90 C82 72 102 66 110 56' stroke='%230A3322' stroke-width='1' stroke-linecap='round'/%3E%3Cellipse cx='6' cy='382' rx='7' ry='12' stroke='%230A3322' stroke-width='0.8' transform='rotate(-40 6 382)' fill='none'/%3E%3Cellipse cx='112' cy='272' rx='7' ry='12' stroke='%230A3322' stroke-width='0.8' transform='rotate(40 112 272)' fill='none'/%3E%3Cellipse cx='6' cy='164' rx='6' ry='11' stroke='%230A3322' stroke-width='0.8' transform='rotate(-35 6 164)' fill='none'/%3E%3Cellipse cx='110' cy='56' rx='6' ry='11' stroke='%230A3322' stroke-width='0.8' transform='rotate(35 110 56)' fill='none'/%3E%3Cpath d='M540 500 C538 380 542 260 540 140 C538 60 542 20 540 0' stroke='%230A3322' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M540 380 C562 360 582 354 592 342' stroke='%230A3322' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M540 270 C518 250 498 244 490 232' stroke='%230A3322' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M540 160 C562 142 580 136 588 126' stroke='%230A3322' stroke-width='1' stroke-linecap='round'/%3E%3Cellipse cx='592' cy='342' rx='7' ry='12' stroke='%230A3322' stroke-width='0.8' transform='rotate(40 592 342)' fill='none'/%3E%3Cellipse cx='490' cy='232' rx='7' ry='12' stroke='%230A3322' stroke-width='0.8' transform='rotate(-40 490 232)' fill='none'/%3E%3Cellipse cx='588' cy='126' rx='6' ry='11' stroke='%230A3322' stroke-width='0.8' transform='rotate(35 588 126)' fill='none'/%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Shared image tile Ã¢â€â‚¬Ã¢â€â‚¬ */
.mosaic-img {
  position: absolute;
  border-radius: var(--rad-lg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  will-change: transform, opacity;
}

.mosaic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mosaic-fallback {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.mosaic-img img[style*="display: none"] + .mosaic-fallback {
  display: flex;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Tile default size Ã¢â‚¬â€ GSAP handles all positioning Ã¢â€â‚¬Ã¢â€â‚¬ */
.mosaic-tile {
  width: 220px;
  height: 220px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ CTA in the center Ã¢â‚¬â€ revealed as images fan out Ã¢â€â‚¬Ã¢â€â‚¬ */
.mosaic-cta {
  position: absolute;
  z-index: 10;
  max-width: 600px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  gap: 16px;
  text-align: center;
  opacity: 0;
  will-change: transform, opacity;
}

.mosaic-cta-heading {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-green);
  margin: 0;
}

.mosaic-cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4C574E;
  margin: 0;
  max-width: 480px;
}

.mosaic-cta-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Filled green button */
.btn-mosaic-filled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 160px;
  height: 52px;
  border-radius: var(--rad-2xl);
  background: var(--pastel-green);
  color: var(--dark-green);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn-mosaic-filled:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn-mosaic-filled svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* White-outline button */
.btn-mosaic-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 160px;
  height: 52px;
  border-radius: var(--rad-2xl);
  background: transparent;
  color: var(--dark-green);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--dark-green);
  cursor: pointer;
  flex-shrink: 0;
  transition: filter 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.btn-mosaic-outline:hover {
  background: rgba(10,51,34,0.06);
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.btn-mosaic-outline svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Mosaic responsive Ã¢â‚¬â€ disable pinning on small screens Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 900px) {
  .mosaic-scroll-section {
    height: auto !important;
  }

  .mosaic-pin {
    position: relative;
    height: auto;
    min-height: 0;
    flex-direction: column;
    gap: 16px;
    padding: var(--space-9) var(--space-5);
    flex-wrap: wrap;
  }

  .mosaic-img {
    position: static !important;
    width: 100% !important;
    height: 200px !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .mosaic-cta {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    margin-top: 16px;
  }

  .mosaic-cta-heading { font-size: 1.5rem; }
  .mosaic-cta-desc { font-size: 0.88rem; }

  .btn-mosaic-filled,
  .btn-mosaic-outline {
    width: 140px;
    height: 46px;
    font-size: 14px;
  }
}


/* ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ FOOTER ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ÃƒÂ¢Ã¢â‚¬ÂÃ¢â€šÂ¬ */
/* == FOOTER == */
.site-footer {
  background: #0A3322;
  padding: 64px max(32px, 5vw) 0;
  position: relative;
  z-index: 1;
}
.footer-main {
  display: flex;
  gap: 64px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-wordmark {
  display: flex;
  flex-direction: column;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  color: #CFE6D1;
  line-height: 0.94;
  letter-spacing: -0.02em;
}
.footer-wordmark span { color: #F5C842; }
.footer-wordmark small { font-size: 0.82em; color: #CFE6D1; }
.footer-tagline {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #7aac8e;
  line-height: 1.6;
  max-width: 220px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #F5C842;
  text-decoration: none;
  transition: opacity 0.15s;
}
.footer-phone:hover { opacity: 0.8; }
.footer-wel-image {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-top: 10px;
  border-radius: 10px;
}
.footer-cols {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col-title {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A5CDB3;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: #CFE6D1;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul a:hover { color: #ffffff; }
.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  padding: 20px 0 24px;
  gap: 16px;
}
.footer-bottom p {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: #587a68;
  margin: 0;
}
.footer-bottom > p { justify-self: start; }
.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #7b9b8a;
  white-space: nowrap;
}
.footer-credit-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.footer-credit-heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff5a79;
  font-size: 0.95rem;
  line-height: 1;
  animation: footer-heart-pump 1.3s ease-in-out infinite;
  transform-origin: center;
}
.footer-credit-brand {
  height: 15px;
  width: auto;
  display: block;
}
.footer-credit-link:hover .footer-credit-brand {
  opacity: 0.9;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
}
.footer-legal-btn {
  background: none;
  border: none;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: #587a68;
  text-decoration: none;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.footer-legal-btn:hover {
  color: #CFE6D1;
  background: rgba(255,255,255,0.05);
}
@keyframes footer-heart-pump {
  0%, 100% { transform: scale(1); }
  18% { transform: scale(1.16); }
  36% { transform: scale(0.98); }
  54% { transform: scale(1.13); }
}
@media (max-width: 900px) {
  .site-footer {
    padding: 48px max(20px, 6vw) 0;
  }
  .footer-main {
    flex-direction: column;
    gap: 28px;
    padding-bottom: 36px;
  }
  .footer-brand {
    flex: none;
    gap: 12px;
  }
  .footer-tagline {
    max-width: 320px;
  }
  .footer-wel-image {
    max-width: 150px;
    margin-top: 4px;
  }
  .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .footer-bottom {
    padding: 18px 0 20px;
  }
}
@media (max-width: 600px) {
  .site-footer {
    padding: 28px 16px 0;
  }
  .footer-main {
    gap: 16px;
    padding-bottom: 18px;
  }
  .footer-brand {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 14px;
    row-gap: 8px;
    align-items: start;
  }
  .footer-logo {
    grid-column: 1;
    grid-row: 1;
  }
  .footer-tagline {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    font-size: 0.82rem;
    line-height: 1.4;
  }
  .footer-wel-image {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    max-width: 104px;
    margin-top: 0;
  }
  .footer-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
  }
  .footer-col:last-child {
    grid-column: 1 / -1;
  }
  .footer-col-title {
    margin-bottom: 8px;
  }
  .footer-col ul {
    gap: 5px;
  }
  .footer-col ul a {
    font-size: 0.84rem;
    line-height: 1.35;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 14px 0 16px;
    gap: 6px;
  }
  .footer-bottom p,
  .footer-credit,
  .footer-legal-btn {
    font-size: 0.74rem;
  }
  .footer-bottom > p,
  .footer-bottom-links { justify-self: center; }
  .footer-credit {
    gap: 5px;
    margin: 0;
  }
  .footer-credit-brand {
    height: 13px;
  }
  .footer-credit-heart {
    font-size: 0.82rem;
  }
  .footer-bottom-links {
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
  }
  .footer-legal-btn {
    padding: 3px 8px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 24px 14px 0;
  }
  .footer-main {
    gap: 14px;
    padding-bottom: 16px;
  }
  .footer-cols {
    gap: 10px 12px;
  }
}


/* â”€â”€â”€ DECORATIVE FLOATING ORBS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  animation: orbFloat var(--dur, 8s) ease-in-out infinite var(--delay, 0s);
}
.hero-orb--1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(78,148,104,0.25), transparent 70%);
  top: 10%; left: 5%;
  --dur: 9s; --delay: 0s;
}
.hero-orb--2 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(128,0,128,0.18), transparent 70%);
  top: 55%; right: 8%;
  --dur: 11s; --delay: 1.5s;
}
.hero-orb--3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(232,160,32,0.15), transparent 70%);
  bottom: 15%; left: 35%;
  --dur: 7s; --delay: 3s;
}
.slc-ready .hero-orb { opacity: 1; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(18px, -24px) scale(1.05); }
  66%       { transform: translate(-12px, 16px) scale(0.97); }
}

/* â”€â”€â”€ BACK TO TOP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-green);
  color: var(--off-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(10,51,34,0.3);
}
#back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
#back-to-top:hover {
  background: var(--sage);
  transform: translateY(-3px) scale(1.06);
}
#back-to-top svg { width: 20px; height: 20px; }

/* â”€â”€â”€ FOOTER NEWSLETTER CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer-newsletter {
  background: linear-gradient(135deg, #0D1F17 0%, #1A1028 100%);
  padding: var(--space-9) var(--space-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-newsletter::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(139,107,174,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.fn-eyebrow {
  font-family: 'Allura', cursive;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--lavender);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.fn-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.fn-sub {
  font-size: var(--text-sm);
  color: rgba(240,246,242,0.6);
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.fn-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 460px;
  margin: 0 auto;
}
.fn-input {
  flex: 1;
  min-width: 220px;
  height: 50px;
  border-radius: 25px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 0 20px;
  outline: none;
  transition: border-color 0.2s ease;
}
.fn-input::placeholder { color: rgba(240,246,242,0.4); }
.fn-input:focus { border-color: var(--lavender); }
.fn-btn {
  height: 50px;
  padding: 0 28px;
  border-radius: 25px;
  background: var(--sage);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--dur-base) ease, transform var(--dur-base) ease;
  white-space: nowrap;
}
.fn-btn:hover { background: #3d7a55; transform: translateY(-2px); }
.fn-privacy {
  font-size: 11px;
  color: rgba(240,246,242,0.35);
  margin-top: 14px;
}

/* â”€â”€â”€ CARD TILT (WCU) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wcu-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* â”€â”€â”€ TAB SCROLL INDICATOR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tabs-scroll-wrap {
  position: relative;
}
.tabs-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95));
  pointer-events: none;
  border-radius: 0 var(--rad-lg) var(--rad-lg) 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UTILITY CLASSES â€” SLC design system helpers
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Layout */
.slc-container        { max-width: 1200px; margin-inline: auto; padding-inline: var(--space-5); }
.slc-container--wide  { max-width: 1400px; margin-inline: auto; padding-inline: var(--space-5); }
.slc-container--narrow{ max-width: 760px;  margin-inline: auto; padding-inline: var(--space-5); }
.slc-stack            { display: flex; flex-direction: column; }
.slc-stack--sm        { gap: var(--space-3); }
.slc-stack--md        { gap: var(--space-5); }
.slc-stack--lg        { gap: var(--space-7); }
.slc-cluster          { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3); }

/* Section spacing */
.slc-section          { padding-block: var(--space-12); }
.slc-section--md      { padding-block: var(--space-10); }
.slc-section--sm      { padding-block: var(--space-9); }

/* Typography utilities */
.slc-eyebrow {
  font-family: 'Allura', cursive;
  font-size: var(--text-lg);
  color: var(--sage);
  display: block;
  margin-bottom: var(--space-2);
}
.slc-heading {
  font-family: 'Fraunces', serif;
  font-size: var(--text-4xl);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  text-rendering: optimizeLegibility;
}
.slc-subheading {
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 60ch;
}
.slc-gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Surface / card utilities */
.slc-card {
  background: var(--white);
  border-radius: var(--rad-xl);
  box-shadow: var(--shadow-md);
  padding: var(--space-6);
}
.slc-card--elevated {
  box-shadow: var(--shadow-lg);
  transition: box-shadow var(--dur-base) var(--ease-out),
              transform    var(--dur-base) var(--ease-out);
}
.slc-card--elevated:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

/* Badge / tag */
.slc-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--rad-pill);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.slc-badge--green   { background: var(--sage-light);    color: var(--dark-green); }
.slc-badge--gold    { background: var(--gold-light);    color: #7A4F00; }
.slc-badge--lavender{ background: var(--lavender-light);color: var(--lavender); }

/* Focus visible */
:focus-visible { outline: none; box-shadow: var(--focus-ring); }

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

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE & RESPONSIVE â€” comprehensive 900px / 600px / 400px
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Sticky mobile CTA bar (healthcare "Call Now") â”€â”€ */
.slc-mobile-cta {
  display: none;
}
@media (max-width: 900px) {
  .slc-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(calc(100% - 24px), 560px);
    z-index: var(--z-nav);
    background: var(--dark-green);
    padding: 12px 14px max(12px, env(safe-area-inset-bottom));
    gap: var(--space-3);
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    box-shadow: 0 -4px 24px rgba(10,51,34,0.25);
  }
  .slc-mobile-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    min-height: 48px;
    border-radius: var(--rad-pill);
    font-size: var(--text-sm);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: opacity var(--dur-base);
    min-width: 0;
    white-space: nowrap;
  }
  .slc-mobile-cta a:active { opacity: 0.8; }
  .slc-mobile-cta .slc-cta-call {
    background: var(--pastel-green);
    color: var(--dark-green);
  }
  .slc-mobile-cta .slc-cta-contact {
    background: rgba(255,255,255,0.12);
    color: var(--text-invert);
    border: 1px solid rgba(255,255,255,0.25);
  }
  /* Push page content above the sticky bar */
  body { padding-bottom: 80px; }
}

/* â”€â”€ Hero: mobile viewport height â”€â”€ */
@media (max-width: 900px) {
  .hero {
    height: 100svh;
    height: 100dvh;
    margin-top: 0;
    min-height: 480px;
    contain: none;
  }
  .hero-il-float {
    right: clamp(10px, 2.5vw, 28px);
    left: auto;
    top: 62%;
    width: clamp(104px, 22vw, 178px);
    opacity: 0.95;
  }
  /* Two phrases: flex nowrap keeps word spans from stacking (inline-block wrap bug) */
  .hero-headline__line {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    column-gap: 0.3em;
    width: 100%;
    min-width: 0;
  }
  .hero .hero-headline {
    font-size: clamp(11px, 3.25vw, 1.32rem);
    line-height: 1.2;
    letter-spacing: -0.035em;
  }
  .hero-sub      { font-size: var(--text-base); }
  .hero-buttons  { flex-direction: column; gap: var(--space-3); align-items: flex-start; }
}

/* â”€â”€ About: single column â”€â”€ */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* â”€â”€ Services tab pills: touch-friendly â”€â”€ */
@media (max-width: 900px) {
  .tab-pill {
    min-width: 140px;
    height: 52px;          /* still above 44px touch target */
    padding: 0 var(--space-4);
    font-size: var(--text-xs);
  }
  .tab-pill span { font-size: 0.65rem; }
  .service-card  { flex-direction: column; }
}

/* â”€â”€ WCU: single column, remove excessive min-height â”€â”€ */
@media (max-width: 900px) {
  .wcu-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .wcu-card { min-height: unset; }
  .wcu-card--photo { min-height: 280px; }
}
@media (max-width: 600px) {
  .wcu-card { border-radius: var(--rad-lg); }
}

/* â”€â”€ Testimonial: full-width cards on mobile â”€â”€ */
@media (max-width: 600px) {
  .tc { width: calc(100% - 32px); min-width: unset; }
  .testi-track { padding: 16px 20px; }
}

/* â”€â”€ Mosaic gallery: flat grid fallback on mobile â”€â”€ */
@media (max-width: 900px) {
  /* Collapse the 400vh sticky scroll into a simple static section */
  .mosaic-scroll-section {
    height: auto;
    background: #F8F5F0;
    padding: var(--space-10) var(--space-5);
  }
  .mosaic-pin {
    position: static;
    height: auto;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: stretch;
  }
  /* Show tiles as a 2-col grid */
  .mosaic-tile {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    width: calc(50% - var(--space-2));
    height: 200px;
    border-radius: var(--rad-lg);
    overflow: hidden;
    flex-shrink: 0;
  }
  .mosaic-tile img { width: 100%; height: 100%; object-fit: cover; }
  /* CTA block: full width below tiles */
  .mosaic-cta {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    width: 100%;
    margin-top: var(--space-6);
    text-align: center;
  }
  .mosaic-cta-btns { justify-content: center; }
}
@media (max-width: 600px) {
  .mosaic-tile { width: 100%; height: 180px; }
}

/* â”€â”€ Photo strip: slow down & reduce DOM thrash on mobile â”€â”€ */
@media (max-width: 600px) {
  .strip-arch { height: 200px; }
}

/* â”€â”€ HIW: single column on mobile â”€â”€ */
@media (max-width: 768px) {
  .hiw-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .hiw-grid::before { display: none; } /* hide connecting line */
}

/* â”€â”€ Footer: single column â”€â”€ */
@media (max-width: 768px) {
  .footer-menu-row   { flex-direction: column; gap: var(--space-7); }
  .footer-newsletter { padding: var(--space-9) var(--space-5); }
  .footer-nsl-form   { flex-direction: column; }
  .footer-nsl-input  { border-radius: var(--rad-lg); }
  .footer-nsl-btn    { border-radius: var(--rad-lg); width: 100%; }
}

/* â”€â”€ Generic touch target enforcement â”€â”€ */
@media (max-width: 900px) {
  button, [role="button"], a, [role="tab"] {
    min-height: 44px;
    min-width: 44px;
  }
  /* Override for inline text links */
  p a, li a { min-height: unset; min-width: unset; }
}

/* â”€â”€ About: fix right column height on mobile â”€â”€ */
@media (max-width: 900px) {
  .about-right {
    height: 340px;
  }
  .arch-large {
    width: 60%;
    height: 100%;
  }
  .arch-small {
    width: 44%;
    right: 0;
    bottom: 0;
    height: 65%;
  }
}
@media (max-width: 600px) {
  .about-right { height: 260px; }
  .about-headline { font-size: var(--text-xl); }
  .about-body { font-size: 0.9rem; }
}

/* â”€â”€ Hero: extra-small screens â”€â”€ */
@media (max-width: 480px) {
  .hero-il-float {
    display: block;
    width: clamp(80px, 34vw, 128px);
    right: 6px;
    top: 62%;
    opacity: 0.9;
  }
  .hero-sub { font-size: 0.85rem; }
  .hero-content { padding: 0 var(--space-4) var(--space-8); }
  .hero-title-backdrop { inset: -14px -18px -14px -18px; }
}

/* â”€â”€ Stacking cards: tighter on small mobile â”€â”€ */
@media (max-width: 480px) {
  .slc-work-card { border-radius: 16px; }
  .slc-card-left { padding: 24px 18px; }
  .slc-card-stats { grid-template-columns: 1fr; gap: 18px; }
  .slc-stat-value {
    font-size: clamp(20px, 8.2vw, 30px);
    line-height: 1.12;
  }
  .slc-card-right { height: 180px; }
  .slc-stack-header { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .slc-mobile-cta {
    width: calc(100% - 16px);
    padding: 10px 10px max(10px, env(safe-area-inset-bottom));
    gap: 10px;
  }
  .slc-mobile-cta a {
    min-height: 46px;
    font-size: 14px;
    padding-inline: 10px;
  }
}

/* â”€â”€ Services (ds5): single column on mobile â”€â”€ */
@media (max-width: 640px) {
  .ds5-care-shell { padding: var(--space-9) var(--space-4); }
  .ds5-intro__title { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* â”€â”€ Testimonials: tighter on small mobile â”€â”€ */
@media (max-width: 480px) {
  .testi-track { padding: 12px 16px; }
  .tc { width: calc(100% - 24px); }
}

/* â”€â”€ WCU: single column on small mobile â”€â”€ */
@media (max-width: 480px) {
  .wcu-section { padding: var(--space-9) var(--space-4); }
  .wcu-header h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* â”€â”€ Footer: extra-small â”€â”€ */
@media (max-width: 480px) {
  .footer-newsletter h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
}

/* Mobile heading reflow: keep authored line breaks; avoid ultra-narrow ch clamps */
@media (max-width: 640px) {
  .hero .hero-content {
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .hp-support .hp-support__title,
  .hiw .hiw-title,
  .wcu .wcu-card-heading,
  .testi .testi-heading {
    text-wrap: balance;
    overflow-wrap: normal;
  }

  /* Narrow phones — slightly tighter still (nowrap rows inherit from ≤900px) */
  .hero .hero-headline {
    font-size: clamp(9px, 3.35vw, 1.38rem);
    line-height: 1.2;
    max-width: none;
    text-wrap: unset;
  }

  .hp-support .hp-support__title {
    font-size: clamp(1.85rem, 7.3vw, 2.35rem);
    line-height: 1.08;
  }

  .ds5-intro .ds5-intro__title {
    font-size: clamp(2.2rem, 8.9vw, 3.05rem);
    line-height: 1.06;
    max-width: none;
    text-wrap: unset;
  }

  .ds5-cta-card__title--desktop {
    display: none;
  }

  .ds5-cta-card__title--mobile {
    display: block;
  }

  .ds5-cta-card .ds5-cta-card__title {
    font-size: clamp(1.68rem, 7vw, 2.08rem);
    line-height: 1.08;
    max-width: none;
    text-wrap: unset;
  }

  .hiw .hiw-title {
    font-size: clamp(1.95rem, 7.2vw, 2.45rem);
    line-height: 1.08;
    max-width: 14ch;
  }

  .wcu .wcu-headline {
    font-size: clamp(1.95rem, 6.9vw, 2.45rem);
    line-height: 1.08;
    max-width: none;
    text-wrap: unset;
  }

  .wcu-card-heading__cert-desktop {
    display: none;
  }

  .wcu-card-heading__cert-mobile {
    display: block;
  }

  .wcu-card--certified .wcu-card-heading.wcu-card-heading--cert-lines {
    max-width: 100%;
    text-wrap: unset;
  }

  .wcu-card--certified .wcu-text-block {
    min-width: 0;
  }

  .wcu .wcu-card-heading,
  .wcu .wcu-card--trust .wcu-card-heading,
  .wcu .wcu-card--certified .wcu-card-heading,
  .wcu .wcu-card--emergency .wcu-card-heading {
    font-size: clamp(1.8rem, 7.2vw, 2.25rem);
    line-height: 1.02;
    max-width: none;
  }

  .testi .testi-header {
    padding: 0 18px 40px;
  }

  .testi .testi-heading {
    font-size: clamp(1.9rem, 6.8vw, 2.35rem);
    line-height: 1.08;
    max-width: 14ch;
  }

  [data-ps-text] .ps-title {
    font-size: clamp(2rem, 7.2vw, 2.6rem);
    line-height: 1.06;
    max-width: none;
    text-wrap: unset;
  }
}

@media (max-width: 420px) {
  .hero .hero-headline {
    font-size: clamp(9px, 3.15vw, 1.28rem);
    max-width: none;
  }

  .ds5-cta-card .ds5-cta-card__title {
    font-size: clamp(1.55rem, 7.4vw, 1.95rem);
  }

  .testi .testi-heading {
    font-size: clamp(1.78rem, 7vw, 2.1rem);
    max-width: 13ch;
  }
}

/* Hero mobile headline (mirrors index.html): plain two lines, no per-word .hw layout */
.hero-headline__simple {
  display: none;
}
@media (max-width: 1024px) {
  .hero .hero-headline__simple {
    display: block !important;
    font-size: clamp(1.8rem, 8.2vw, 2.55rem) !important;
    line-height: 1.04 !important;
    letter-spacing: 0 !important;
  }
  .hero .hero-headline__simple-line {
    display: block !important;
    white-space: nowrap !important;
  }
  .hero .hero-headline .hero-headline__rich,
  .hero .hero-headline .hero-headline__rich * {
    display: none !important;
    visibility: hidden !important;
  }
}

/* Mobile-only: keep testimonials as a plain swipe row and keep footer bottom compact */
@media (max-width: 900px) {
  .testi-stage {
    display: block;
    overflow: hidden;
  }

  .testi-arrow {
    display: none !important;
  }

  .testi-track {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 16px 0;
    gap: 14px;
  }

  .tc {
    width: min(84vw, 340px);
    min-width: min(84vw, 340px);
    margin: 0;
    scroll-snap-align: start;
  }

  .tc.is-active {
    transform: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  }

  .testi-dots {
    display: none;
  }
}

@media (max-width: 600px) {
  .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 12px 16px 14px !important;
    text-align: center !important;
  }

  .footer-bottom > p {
    font-size: 0.73rem;
    margin: 0;
  }

  .footer-credit {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
  }

  .footer-bottom-links {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  .footer-legal-btn {
    min-width: 0;
    white-space: nowrap;
    text-align: center;
    padding: 3px 7px;
    font-size: 0.72rem;
  }
}
