/*
Theme Name:       Hot Water Heroes v5
Theme URI:        https://hotwaterheroesplumbing.com
Author:           Hot Water Heroes
Author URI:       https://hotwaterheroesplumbing.com
Description:      Premium, performance-optimized theme for Hot Water Heroes Plumbing.
Version:          4.0.2
Requires at least: 6.0
Tested up to:     6.7
Requires PHP:     8.0
License:          GPL v2 or later
Text Domain:      hot-water-heroes
*/
/* ==========================================================================
   HOT WATER HEROES - DESIGN TOKEN SYSTEM
   All brand colors, backgrounds, and surfaces are defined here as CSS
   custom properties. Edit this block to retheme the entire site at once.
   ========================================================================== */
:root {
  /* Brand Red, Navy & White */
  --brand:            #F22F3A;
  --brand-dark:       #AF2D37;
  --brand-mid:        #F0595F;
  --brand-bright:     #F0595F;
  --brand-pink:       #F0595F;
  --brand-pink-mid:   #AF2D37;
  --brand-882:        #AF2D37;
  --brand-navy:       #18375D;
  --brand-navy-dark:  #0F2440;

  /* RGB channels for rgba() */
  --brand-rgb:        242, 47, 58;
  --cream-rgb:        248, 249, 251;
  --dark-rgb:         24, 55, 93;
  --ink-rgb:          15, 36, 64;

  /* Backgrounds */
  --bg-cream:         #F8F9FB;
  --bg-alt:           #EEF2F8;
  --bg-warm:          #E8EEF7;
  --bg-light-blue:    #E5EBF5;
  --bg-light-blue-deep: #D8E2F0;
  --bg-petal:         #DDEAF8;
  --bg-blush:         #F4F6FA;

  /* Text */
  --text-dark:        #0F2440;
  --text-body:        #1C3A5E;
  --text-mid:         #2A4F7A;
  --text-muted:       #3D6491;
  --text-subtle:      #5A7FA8;
  --text-faint:       #7A9CC0;
  --text-pale:        #9DB8D6;

  /* Surfaces and Borders */
  --surface-card:     #18375D;
  --surface-ink:      #0F2440;
  --border-soft:      #D0DAEA;
  --border-warm:      #C8D5E6;

  /* State */
  --color-error:      #e53e3e;
  --color-success:    #68d391;
  --color-warning:    #F5C542;
}


/* Fonts loaded via wp_enqueue_style in functions.php — no @import needed */

/* Cookie banner: hidden by default via CSS — JS reveals after 5s.
   contain:strict + content-visibility:hidden excludes it from LCP calculation. */
.cookie-banner {
  display: none !important;
  contain: strict;
}
.cookie-banner.is-visible {
  display: flex !important;
  contain: layout style;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/* Skip-to-content (accessibility) */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100000;
  padding: 0.75rem 2rem;
  background: var(--brand);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 12px 12px;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 0;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  line-height: 1.6;
  color: var(--text-dark);
  background: #0A1628;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) transparent;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand), var(--brand-mid));
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #AF2D37, var(--brand));
}

body.is-leaving {
  opacity: 0;
  transition: opacity 0.25s ease;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--brand);
}

ul,
ol {
  list-style: none;
}

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

/* Lazy-load fade-in */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img[loading="lazy"].is-loaded,
img[loading="lazy"][complete] {
  opacity: 1;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Text selection */
::selection {
  background: rgba(var(--brand-rgb), 0.25);
  color: var(--text-dark);
}

::-moz-selection {
  background: rgba(var(--brand-rgb), 0.25);
  color: var(--text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
}

/* Focus ring for keyboard users */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Staggered children animation */
.reveal.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: var(--bg-blush);
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.15);
  text-align: center;
  overflow: hidden;
  max-height: 50px;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.announcement-bar.is-dismissed {
  max-height: 0;
  opacity: 0;
  border-bottom: none;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.announcement-bar__text {
  font-size: 0.72rem;
  color: var(--surface-card);
  letter-spacing: 0.02em;
}

.announcement-bar__text strong {
  color: var(--brand);
}

.announcement-bar__link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
  margin-left: 0.5rem;
  transition: color 0.2s ease;
}

.announcement-bar__link:hover {
  color: #AF2D37;
}

.announcement-bar__close {
  background: none;
  border: none;
  color: rgba(100, 60, 140, 0.5);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.announcement-bar__close:hover {
  color: var(--text-dark);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.75rem 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}

/* ── WordPress Admin Bar Fix ─────────────────────────────────────
   When logged in, WP adds a 32px admin bar at top.
   This hides it on the frontend so it doesn't break the layout.
   ──────────────────────────────────────────────────────────────── */
#wpadminbar {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb), 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.site-header.is-scrolled {
  padding: 0.5rem 0;
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* ── Logo ──────────────────────────────────────────────────────── */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}

.site-logo__name {
  font-family: 'Montserrat', serif;
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.1rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 0px transparent);
}

.site-logo:hover .site-logo__name {
  filter: drop-shadow(0 0 8px rgba(var(--brand-rgb), 0.35));
}

/* Image logo */
.site-logo__img {
  height: clamp(30px, 2rem + 0.3vw, 40px);
  width: auto;
  display: block;
  transition: filter 0.4s ease, transform 0.4s ease;
}

.site-logo:hover .site-logo__img {
  filter: drop-shadow(0 0 12px rgba(var(--brand-rgb), 0.25));
  transform: scale(1.02);
}

.site-logo__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand-pink-mid);
  margin-top: -3px;
  transition: letter-spacing 0.4s ease;
}

.site-logo:hover .site-logo__tagline {
  letter-spacing: 0.4em;
}

/* ── Desktop Nav ───────────────────────────────────────────────── */
.site-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__item {
  position: static;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 1.1rem;
  font-size: clamp(0.78rem, 0.73rem + 0.22vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.nav__link:hover {
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.08);
}

.nav__item--active>.nav__link {
  color: var(--brand);
}

/* Active indicator dot */
.nav__item--active>.nav__link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
}

.nav__arrow {
  transition: transform 0.3s ease;
  font-size: 0.55rem;
  opacity: 0.5;
}

.nav__item--has-mega:hover .nav__arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Invisible bridge so mega menu doesn't vanish when moving mouse down */
.nav__item--has-mega>.nav__link::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

/* ── Header Actions ────────────────────────────────────────────── */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.site-header__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--text-mid);
  transition: all 0.3s ease;
}

.site-header__phone:hover {
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand);
  transform: scale(1.05);
}

/* Divider between icons and CTA */
.header__divider {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, transparent, #ddd, transparent);
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.68rem, 0.63rem + 0.2vw, 0.73rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-pink) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(var(--brand-rgb), 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Shimmer sweep on hover */
.btn--primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(255, 255, 255, 0.15) 50%,
      transparent 100%);
  transform: rotate(30deg) translateX(-130%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn--primary:hover::after {
  transform: rotate(30deg) translateX(130%);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--brand-rgb), 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn--sm {
  padding: 0.6rem 1.5rem;
}

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid #ddd;
}

.btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.04);
  transform: translateY(-2px);
}

/* Arrow icon shift on hover */
.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   MEGA MENU
   ========================================================================== */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #f0f0f4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
  z-index: 100;
  /* Invisible top padding acts as hover bridge between nav link and dropdown */
  padding-top: 0.5rem;
  margin-top: 0;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.nav__item--has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 300px;
  gap: 2rem;
}

.mega-menu__column {
  display: flex;
  flex-direction: column;
}

.mega-menu__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f4;
}

.mega-menu__items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mega-menu__item:hover {
  background: var(--bg-alt);
  transform: translateX(4px);
}

/* Ensure content column fills space and wraps cleanly */
.mega-menu__item-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.mega-menu__item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.mega-menu__item:hover .mega-menu__item-icon {
  transform: scale(1.12);
}

.mega-menu__item-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  line-height: 1.3;
}

.mega-menu__item-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: var(--text-faint);
  line-height: 1.35;
  margin-top: 1px;
  display: block;
}

.mega-menu__item-arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: var(--brand);
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.85rem;
}

.mega-menu__item:hover .mega-menu__item-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Promo panel */
.mega-menu__promo {
  background: var(--bg-alt);
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

/* Gradient top-line accent */
.mega-menu__promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-pink));
  border-radius: 14px 14px 0 0;
  pointer-events: none;
}



.mega-menu__promo-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.mega-menu__promo-title {
  font-family: 'Montserrat', serif;
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.mega-menu__promo-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.mega-menu__promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-pink) 100%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(var(--brand-rgb), 0.2);
}

.mega-menu__promo-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(var(--brand-rgb), 0.35);
  color: #fff;
  filter: brightness(1.05);
}

/* Mega menu bottom bar */
.mega-menu__bottom {
  border-top: 1px solid #f0f0f4;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

.mega-menu__bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mega-menu__bottom-link {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--text-subtle);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.mega-menu__bottom-link:hover {
  color: var(--brand);
}

.mega-menu__bottom-cta {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.mega-menu__bottom-cta:hover {
  color: var(--brand-882);
}

/* Compact mega menu (About) */
.mega-menu__inner--compact {
  grid-template-columns: 1fr 1fr 280px;
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.nav__mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  z-index: 301;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

.hamburger__line:nth-child(2) {
  width: 65%;
}

.nav__mobile-toggle.is-active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__mobile-toggle.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav__mobile-toggle.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 26, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.is-open .mobile-menu__overlay {
  opacity: 1;
}

.mobile-menu__drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, 85vw);
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-menu.is-open .mobile-menu__drawer {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #f0f0f4;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-warm);
  color: var(--text-dark);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.mobile-menu__close:hover {
  background: rgba(var(--brand-rgb), 0.15);
  color: var(--brand);
}

.mobile-menu__nav {
  flex: 1;
  padding: 1.5rem 2rem;
}

.mobile-menu__links li {
  border-bottom: 1px solid #f5f5f7;
}

.mobile-menu__links li:last-child {
  border-bottom: none;
}

.mobile-menu__links a {
  display: block;
  padding: 1rem 0;
  font-family: 'Montserrat', serif;
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu__links a:hover {
  color: var(--brand);
  padding-left: 0.5rem;
}

.mobile-menu__footer {
  padding: 2rem;
  border-top: 1px solid #f0f0f4;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  text-decoration: none;
}

.mobile-menu__contact-item:hover {
  color: var(--brand);
}

/* ==========================================================================
   CONTENT AREA
   ========================================================================== */
.site-main {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.test-section {
  max-width: 800px;
  margin: 4rem auto;
  text-align: center;
  padding: 0 2rem;
}

.test-section h1 {
  font-size: clamp(2.8rem, 2rem + 3.5vw, 4.5rem);
  margin-bottom: 1rem;
}

.test-section p {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  color: var(--text-subtle);
  line-height: 1.7;
}

.test-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(var(--brand-rgb), 0.12);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 2rem;
}

.test-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s ease-in-out infinite;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.6;
  }

  50% {
    transform: translate(10px, -20px);
    opacity: 1;
  }
}

/* Scroll reveal — GPU-accelerated */
.reveal {
  opacity: 0;
  transform: translateY(30px) translateZ(0);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  will-change: auto;
}

/* ── Section Shared ────────────────────────────────────────────── */
.section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}

.section__label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.5rem;
  padding: 0.4rem 1.25rem;
  background: rgba(var(--brand-rgb), 0.1);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.25rem;
  width: fit-content;
}

.section__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.2rem);
  margin-bottom: 1rem;
}

.section__desc {
  font-size: clamp(0.95rem, 0.88rem + 0.35vw, 1.1rem);
  color: var(--text-subtle);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg-alt);
  padding: clamp(6rem, 5rem + 3vw, 8rem) clamp(1.5rem, 1rem + 3vw, 4rem);
  overflow: hidden;
  contain: layout style;
}

/* ── Aurora blobs ─────────────────────────────────────────────── */
.hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: aurora-drift 12s ease-in-out infinite alternate;
}

.hero__aurora-blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.12), transparent 70%);
  top: -150px;
  right: -100px;
  animation-duration: 14s;
}

.hero__aurora-blob--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 113, 209, 0.12), transparent 70%);
  bottom: -100px;
  left: -80px;
  animation-duration: 18s;
  animation-delay: -4s;
}

.hero__aurora-blob--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.07), transparent 70%);
  top: 40%;
  left: 40%;
  opacity: 0.5;
  animation-duration: 20s;
  animation-delay: -8s;
}

@keyframes aurora-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(var(--brand-rgb), 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(var(--brand-rgb), 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: var(--brand);
  border-radius: 50%;
  animation: float 6s ease-in-out var(--delay) infinite;
}

/* ── Layout ────────────────────────────────────────────────────── */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 2rem + 5vw, 7rem);
}

/* ── Left content ──────────────────────────────────────────────── */
.hero__content {
  text-align: left;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(var(--brand-rgb), 0.1);
  border: 1px solid rgba(var(--brand-rgb), 0.25);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 1.75rem;
  animation: fadeIn 1s ease 0.2s both;
}

.hero__title {
  font-size: clamp(3rem, 2rem + 4vw, 5.75rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.0;
  margin-bottom: 1.25rem;
  animation: fadeIn 1s ease 0.4s both;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--brand) 20%, #e0c48a 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animated divider line */
.hero__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), #e0c48a);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: expand 1s ease 0.6s both;
}

@keyframes expand {
  from { width: 0; opacity: 0; }
  to   { width: 60px; opacity: 1; }
}

.hero__subtitle {
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.1rem);
  color: rgba(80, 50, 110, 0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeIn 1s ease 0.6s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeIn 1s ease 0.8s both;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 0.78rem;
}

.hero__actions .btn--outline {
  color: var(--text-dark);
  border-color: rgba(var(--dark-rgb), 0.2);
}

.hero__actions .btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.08);
}

/* ── Stats row ─────────────────────────────────────────────────── */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  animation: fadeIn 1s ease 1s both;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__stat-num {
  font-family: 'Montserrat', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(80, 50, 110, 0.5);
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(var(--brand-rgb), 0.25);
  flex-shrink: 0;
}

/* ── Right visual panel ─────────────────────────────────────────── */
/* ── Right: Model image ─────────────────────────────────────────── */
.hero__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 560px;
  animation: fadeIn 1.2s ease 0.5s both;
}

/* ── Background lighting glows (behind the model) ─────────────── */
.hero__model-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hero__model-glow--purple {
  width: 380px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(var(--brand-rgb), 0.22), transparent 70%);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: pulse-glow 5s ease-in-out infinite alternate;
}

.hero__model-glow--gold {
  width: 220px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(224, 196, 138, 0.12), transparent 70%);
  bottom: 10%;
  right: 5%;
  animation: pulse-glow 7s ease-in-out 2s infinite alternate;
}

@keyframes pulse-glow {
  from { opacity: 0.7; transform: translateX(-50%) scale(0.95); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.05); }
}

/* ── Model container with bottom fade ─────────────────────────── */
.hero__model {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.hero__model-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  /* Bottom fade — blends into the light hero background */
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
}

/* Floating treatment badges */
.hero__visual-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(var(--brand-rgb), 0.2);
  border-radius: 50px;
  padding: 0.55rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 8px 28px rgba(var(--brand-rgb), 0.12), inset 0 1px 0 rgba(255,255,255,0.9);
  z-index: 5;
}

.hero__visual-badge--1 {
  top: 18%;
  left: -8%;
  animation: float 5s ease-in-out 0.5s infinite;
}

.hero__visual-badge--2 {
  top: 38%;
  right: -8%;
  animation: float 6s ease-in-out 1.5s infinite;
}

.hero__visual-badge--3 {
  bottom: 28%;
  left: -6%;
  animation: float 7s ease-in-out 1s infinite;
}

/* ── Scroll indicator ──────────────────────────────────────────── */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scroll-fade 1.5s ease-in-out 2s forwards;
  opacity: 0;
  z-index: 5;
}

@keyframes scroll-fade {
  to { opacity: 1; }
}

.hero__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(var(--brand-rgb), 0.4);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--brand);
  border-radius: 2px;
  margin-top: 6px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

.hero__scroll-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(122, 11, 184, 0.6);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content { text-align: center; }
  .hero__divider { margin-left: auto; margin-right: auto; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { height: 380px; order: -1; overflow: visible; }
  .hero__model-img { height: 380px; }
  /* Clamp badges to viewport edges so they don't overflow */
  .hero__visual-badge--1 { left: 4px; top: 10%; }
  .hero__visual-badge--2 { right: 4px; top: 35%; }
  .hero__visual-badge--3 { left: 4px; bottom: 22%; }
}

@media (max-width: 480px) {
  /* Hide floating badges on small phones to avoid overlap */
  .hero__visual-badge { display: none; }
  .hero__visual { height: 300px; }
  .hero__model-img { height: 300px; }
  /* Tighter hero padding on tiny screens */
  .hero {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: var(--bg-cream);
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__thumb {
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.service-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-card__thumb img {
  transform: scale(1.06);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.service-card__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-card__text {
  font-size: 0.85rem;
  color: var(--text-subtle);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card__link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.03em;
  transition: gap 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.service-card:hover .service-card__link {
  gap: 0.5rem;
}

/* ==========================================================================
   TRUST TICKER
   ========================================================================== */
.trust-ticker {
  background: var(--border-warm);
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}


.trust-ticker__track {
  padding: 1.1rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trust-ticker__items {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
  will-change: transform;
}

.trust-ticker__item {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7A5C6E;
  flex-shrink: 0;
  padding: 0 1.5rem;
  position: relative;
}

/* Gold dot separator between items */
.trust-ticker__item::after {
  content: '✦';
  position: absolute;
  right: -0.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.45rem;
  -webkit-text-fill-color: rgba(var(--brand-rgb), 0.35);
}

.trust-ticker__item:last-child::after {
  display: none;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SERVICES CAROUSEL
   ========================================================================== */
.carousel {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 1rem;
  perspective: 1200px;
  /* Enable native momentum scrolling touch on iOS */
  touch-action: pan-y;
  /* Fade side cards into the background instead of hard-clipping */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.carousel__track {
  position: relative;
  height: 480px;
  transform-style: preserve-3d;
}

.carousel__slide {
  position: absolute;
  width: calc(33.333% - 1rem);
  top: 0;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%) scale(0.75) rotateY(0deg);
  filter: blur(3px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  pointer-events: none;
}

.carousel__slide.is-active {
  opacity: 1;
  transform: translateX(-50%) scale(1) rotateY(0deg);
  filter: blur(0);
  z-index: 5;
  pointer-events: auto;
}

.carousel__slide.is-prev {
  opacity: 0.7;
  transform: translateX(calc(-50% - 105%)) scale(0.88) rotateY(-8deg);
  filter: blur(0);
  z-index: 3;
  pointer-events: auto;
}

.carousel__slide.is-next {
  opacity: 0.7;
  transform: translateX(calc(-50% + 105%)) scale(0.88) rotateY(8deg);
  filter: blur(0);
  z-index: 3;
  pointer-events: auto;
}

.carousel__slide.is-far-prev {
  opacity: 0.25;
  transform: translateX(calc(-50% - 200%)) scale(0.75) rotateY(-15deg);
  filter: blur(2px);
  z-index: 1;
}

.carousel__slide.is-far-next {
  opacity: 0.25;
  transform: translateX(calc(-50% + 200%)) scale(0.75) rotateY(15deg);
  filter: blur(2px);
  z-index: 1;
}

.carousel-card {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.3s ease, border-color 0.4s ease;
  position: relative;
}

.carousel-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright), var(--brand));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.carousel__slide.is-active .carousel-card {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(var(--brand-rgb), 0.08);
  border-color: rgba(var(--brand-rgb), 0.15);
}

.carousel__slide.is-active .carousel-card::after {
  opacity: 1;
}

.carousel-card__image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.carousel-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.carousel__slide.is-active .carousel-card__image img {
  transform: scale(1.02);
}

.carousel-card:hover .carousel-card__image img {
  transform: scale(1.08);
}

.carousel-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-card__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(var(--brand-rgb), 0.12) 0%, transparent 60%);
}

.carousel-card__placeholder span {
  font-size: 3.5rem;
  position: relative;
  z-index: 2;
}

.carousel-card__body {
  padding: 1.75rem 1.75rem 2rem;
}

.carousel-card__icon {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.carousel-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.carousel-card__text {
  font-size: 0.82rem;
  color: var(--text-subtle);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.carousel-card__price {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 1rem;
}

.btn--sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.68rem;
}

/* Carousel Navigation */
.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  position: relative;
}

.carousel__nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb), 0.2), transparent);
}

.carousel__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e8e8ed;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-dark);
  flex-shrink: 0;
}

.carousel__arrow:hover {
  border-color: var(--brand);
  color: var(--brand);
  box-shadow: 0 4px 20px rgba(var(--brand-rgb), 0.2);
  transform: scale(1.08);
}

.carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
  /* Expand invisible touch target to 44x44px without changing visual size */
}

.carousel__dot::before {
  content: '';
  position: absolute;
  inset: -18px;
}

.carousel__dot:hover {
  background: #bbb;
  transform: scale(1.2);
}

.carousel__dot.is-active,
.carousel__dot[aria-selected="true"] {
  width: 32px;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  box-shadow: 0 2px 8px rgba(var(--brand-rgb), 0.3);
}

/* ==========================================================================
   YOUR JOURNEY (How It Works)
   ========================================================================== */
.journey-section {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: var(--bg-cream);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.journey-step {
  text-align: center;
  padding: 2.25rem 1.5rem;
  position: relative;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.journey-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.journey-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(var(--brand-rgb), 0.15);
}

.journey-step:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.journey-step__number {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.journey-step__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  background: rgba(var(--brand-rgb), 0.08);
  border-radius: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.journey-step:hover .journey-step__icon {
  background: rgba(var(--brand-rgb), 0.15);
  transform: translateY(-3px);
}

.journey-step__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.journey-step__text {
  font-size: 0.8rem;
  color: var(--text-subtle);
  line-height: 1.6;
}

.journey-step__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4.5rem;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .journey-step {
    max-width: 100%;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .journey-steps {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   PRODUCT SHOWCASE
   ========================================================================== */
.product-showcase {
  position: relative;
  background: #FFFFFF;
  padding: clamp(3.5rem, 3rem + 3vw, 5.5rem) 0;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-showcase__glow {
  position: absolute;
  top: 50%;
  right: 25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.08) 0%, transparent 65%);
  transform: translateY(-50%);
  pointer-events: none;
}

.product-showcase__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 2rem + 4vw, 5rem);
  align-items: center;
}

.product-showcase__content {
  order: 1;
}

.product-showcase__visual {
  order: 2;
}

.product-showcase__text {
  font-size: 0.95rem;
  color: rgba(60, 30, 90, 0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.product-showcase__features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.product-showcase__feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.product-showcase__feature-icon {
  font-size: 1.1rem;
}

.product-showcase__feature-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(60, 30, 90, 0.75);
}

.product-showcase__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Outline light button variant */
.btn--outline-light {
  border-color: rgba(var(--dark-rgb), 0.2);
  color: var(--text-dark);
}

.btn--outline-light:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.06);
}

/* Product Visual */
.product-showcase__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-showcase__image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-showcase__ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--brand-rgb), 0.15);
  animation: productRingSpin 20s linear infinite;
}

.product-showcase__ring::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(var(--brand-rgb), 0.6);
}

@keyframes productRingSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.product-showcase__image {
  width: 280px;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 50px rgba(var(--brand-rgb), 0.15));
  animation: productFloat 4s ease-in-out infinite;
}

@keyframes productFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.product-showcase__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 3;
  animation: badgeBounce 3s ease-in-out infinite;
}

.product-showcase__badge--1 {
  top: 15%;
  right: -5%;
  animation-delay: 0s;
}

.product-showcase__badge--2 {
  bottom: 20%;
  left: -5%;
  animation-delay: 1.5s;
}

@keyframes badgeBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.product-showcase__badge-icon {
  font-size: 1rem;
}

.product-showcase__badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

/* ==========================================================================
   SUPPLEMENTS (FULLSCRIPT)
   ========================================================================== */
.supplements {
  padding: clamp(5rem, 4rem + 4vw, 8rem) 0;
  background: var(--bg-cream);
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.supplements__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 2rem + 4vw, 6rem);
  align-items: center;
}

.supplements__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.supplements__cta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.supplements__discount {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
  padding: 0.4rem 0.85rem;
  background: rgba(var(--brand-rgb), 0.1);
  border-radius: 8px;
}

.supplements__partnership {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f4;
  width: fit-content;
}

.supplements__partner-label {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.supplements__partner-x {
  font-size: 0.75rem;
  color: var(--brand);
  font-weight: 300;
}

.supplements__partner-powered {
  font-size: 0.68rem;
  color: var(--text-faint);
  font-weight: 500;
}

.supplements__partner-brand {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2d6a4f;
  letter-spacing: -0.01em;
}

.supplements__features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.supplement-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-left: 3px solid var(--brand);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.supplement-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.supplement-feature__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.supplement-feature__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.supplement-feature__text {
  font-size: 0.82rem;
  color: var(--text-subtle);
  line-height: 1.5;
}

/* ==========================================================================
   CLIENT PORTAL
   ========================================================================== */
.client-portal {
  position: relative;
  background: #FFFFFF;
  padding: clamp(3.5rem, 3rem + 3vw, 5.5rem) 0;
  margin-top: 0;
  overflow: hidden;
}

.client-portal__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 2rem + 4vw, 5rem);
  align-items: center;
}

.client-portal__phone {
  order: 2;
}

.client-portal__content {
  order: 1;
}

/* Phone Visual */
.client-portal__phone {
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-portal__phone-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-portal__phone-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.12) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 1;
}

.client-portal__phone-img {
  width: 300px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  animation: phoneFloat 5s ease-in-out infinite;
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(0.5deg);
  }

  75% {
    transform: translateY(6px) rotate(-0.5deg);
  }
}

/* Content */
.client-portal__text {
  font-size: 0.95rem;
  color: rgba(60, 30, 90, 0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.client-portal__features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.client-portal__feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(60, 30, 90, 0.8);
}

.client-portal__feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ==========================================================================
   WHY US
   ========================================================================== */
.why-us {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #FFFFFF;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1.5rem + 3vw, 5rem);
  align-items: center;
}

.why-us__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.why-us__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-us__feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--brand-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-us__feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.why-us__feature-text {
  font-size: 0.82rem;
  color: var(--text-subtle);
  line-height: 1.5;
}

.why-us__content .section__label,
.why-us__content .section__title,
.why-us__content .section__desc {
  text-align: left;
}

/* Visual side with stats */
.why-us__visual {
  position: relative;
  min-height: 420px;
}

.why-us__image-placeholder {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.why-us__image-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(var(--brand-rgb), 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(var(--brand-rgb), 0.08) 0%, transparent 50%);
  z-index: 1;
}

.why-us__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 0;
}

.why-us__stat-card {
  position: absolute;
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  z-index: 2;
  text-align: center;
  min-width: 140px;
}

.why-us__stat-card--1 {
  top: 2rem;
  left: -1.5rem;
}

.why-us__stat-card--2 {
  bottom: 4rem;
  right: -1rem;
}

.why-us__stat-card--3 {
  bottom: -0.5rem;
  left: 2rem;
}

.why-us__stat-number {
  display: block;
  font-family: 'Montserrat', serif;
  font-size: clamp(1.8rem, 1.5rem + 1.2vw, 2.4rem);
  font-weight: 600;
  color: var(--brand);
  line-height: 1.1;
}

.why-us__stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 0.25rem;
  display: block;
}

/* ==========================================================================
   TESTIMONIALS — Split Layout
   ========================================================================== */
.testimonials-split {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: var(--bg-cream);
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials-split__layout {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(2rem, 1.5rem + 3vw, 4rem);
  align-items: center;
}

.testimonials-split__visual {
  position: relative;
}

.testimonials-split__img-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}

.testimonials-split__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.testimonials-split__badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 9999px;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(var(--brand-rgb), 0.15);
  white-space: nowrap;
  z-index: 2;
}

.testimonials-split__badge-stars {
  color: var(--color-warning);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.testimonials-split__badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonials-split__content .section__title,
.testimonials-split__content .section__label,
.testimonials-split__content .section__desc {
  text-align: left;
  margin-left: 0;
}

.testimonials-split__content .section__label {
  display: block;
}

.testimonials-split__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-card-v2 {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.testimonial-card-v2::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(var(--brand-rgb), 0.08);
  pointer-events: none;
}

.testimonial-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-color: rgba(var(--brand-rgb), 0.12);
}

.testimonial-card-v2__stars {
  color: var(--color-warning);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.testimonial-card-v2__text {
  font-size: 0.88rem;
  color: var(--surface-ink);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.testimonial-card-v2__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.testimonial-card-v2__name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-dark);
}

.testimonial-card-v2__via {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-subtle);
}

.testimonial-card-v2__via svg {
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .testimonials-split__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .testimonials-split__visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonials-split__content .section__title,
  .testimonials-split__content .section__label,
  .testimonials-split__content .section__desc {
    text-align: center;
  }
}

/* ==========================================================================
   LATEST BLOG POSTS (Homepage)
   ========================================================================== */
.latest-posts {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: var(--bg-cream);
}

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

.latest-post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0f0f4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.latest-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(var(--brand-rgb), 0.2);
}

.latest-post-card__img {
  height: 180px;
  overflow: hidden;
}

.latest-post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.latest-post-card:hover .latest-post-card__img img {
  transform: scale(1.05);
}

.latest-post-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--border-soft), #e8e0d4);
  font-size: 2.5rem;
}

.latest-post-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.latest-post-card__date {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.latest-post-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.latest-post-card__excerpt {
  font-size: 0.82rem;
  color: var(--text-subtle);
  line-height: 1.6;
  flex: 1;
}

.latest-post-card__link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .latest-posts__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   REFER A FRIEND
   ========================================================================== */
.refer-section {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: var(--border-soft);
}

.refer-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: #fff;
  border-radius: 20px;
  padding: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  border: 1px solid rgba(var(--brand-rgb), 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.refer-card__content {
  flex: 1;
}

.refer-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.refer-card__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.refer-card__text {
  font-size: 0.9rem;
  color: var(--text-subtle);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.refer-card__text strong {
  color: var(--brand);
  font-weight: 700;
}

.refer-card__visual {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.refer-card__circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.refer-card__circle--1 {
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: #fff;
}

.refer-card__circle--2 {
  background: rgba(var(--brand-rgb), 0.1);
  color: var(--brand);
  border: 2px dashed rgba(var(--brand-rgb), 0.4);
}

.refer-card__plus {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand);
}

@media (max-width: 768px) {
  .refer-card {
    flex-direction: column;
    text-align: center;
  }

  .refer-card__visual {
    justify-content: center;
  }
}

/* ==========================================================================
   FAQ SECTION (Wrapper)
   ========================================================================== */
.faq-section {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: var(--bg-cream);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  padding: clamp(4rem, 3rem + 4vw, 6rem) 0;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb), 0.3), transparent);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.cta-section__label {
  display: inline-flex;
  padding: 0.4rem 1.25rem;
  background: rgba(var(--brand-rgb), 0.12);
  border: 1px solid rgba(var(--brand-rgb), 0.2);
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.5rem;
}

.cta-section__title {
  font-size: clamp(2.2rem, 1.6rem + 3vw, 3.8rem);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-section__text {
  font-size: clamp(0.95rem, 0.88rem + 0.35vw, 1.1rem);
  color: rgba(60, 30, 90, 0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-section__urgency {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 1.5rem;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
/* NOTE: Testimonial-card styles are defined above (line ~2410). Do not duplicate here. */


.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-section__actions .btn--outline {
  color: var(--text-dark);
  border-color: rgba(var(--dark-rgb), 0.25);
}

.cta-section__actions .btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.error-404 {
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(7rem, 6rem + 3vw, 9rem) 0 4rem;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-lavender) 60%, var(--bg-lavender-deep) 100%);
  position: relative;
  overflow: hidden;
}

.error-404__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.error-404__particles span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.3);
  animation: error-float 6s ease-in-out var(--delay) infinite;
}

@keyframes error-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.5); opacity: 0.7; }
}

.error-404__content {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 2rem;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.error-404__code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.error-404__digit {
  font-family: 'Montserrat', serif;
  font-size: clamp(5rem, 4rem + 5vw, 9rem);
  font-weight: 300;
  color: rgba(var(--brand-rgb), 0.15);
  line-height: 1;
}

.error-404__glow {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  color: var(--brand);
  animation: glow-pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(var(--brand-rgb), 0.4));
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.error-404__title {
  font-family: 'Montserrat', serif;
  font-size: clamp(1.8rem, 1.5rem + 2vw, 2.8rem);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.error-404__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.error-404__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.error-404__links {
  width: 100%;
}

.error-404__links-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(var(--brand-rgb), 0.5);
  display: block;
  margin-bottom: 1rem;
}

.error-404__links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.error-404__links-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 1rem 0.5rem;
  border-radius: 16px;
  border: 1px solid rgba(var(--brand-rgb), 0.15);
  background: rgba(255, 255, 255, 0.55);
  transition: all 0.3s ease;
}

.error-404__links-grid a:hover {
  color: var(--text-dark);
  background: rgba(var(--brand-rgb), 0.08);
  border-color: rgba(var(--brand-rgb), 0.3);
  transform: translateY(-2px);
}

.error-404__link-icon {
  font-size: 1.3rem;
}

.error-404__search {
  margin-top: 2rem;
  text-align: center;
}

.error-404__search-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.error-404__search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
}

.error-404__search-input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(var(--brand-rgb), 0.25);
  border-radius: 10px;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.error-404__search-input::placeholder {
  color: var(--text-faint);
}

.error-404__search-input:focus {
  border-color: var(--brand);
}

.error-404__search-btn {
  padding: 0.7rem 1.5rem;
}

/* ==========================================================================
   SEARCH RESULTS
   ========================================================================== */
.search-results {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
  background: var(--bg-cream);
}

.search-results__grid {
  display: grid;
  gap: 1.5rem;
}

.search-result-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f4;
  transition: all 0.3s ease;
}

.search-result-card:hover {
  border-color: rgba(var(--brand-rgb), 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.search-result-card__img {
  flex-shrink: 0;
  width: 140px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
}

.search-result-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-card__type {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.search-result-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.search-result-card__title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.search-result-card__title a:hover {
  color: var(--brand);
}

.search-result-card__excerpt {
  font-size: 0.82rem;
  color: var(--text-subtle);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.search-result-card__link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}

@media (max-width: 640px) {
  .search-result-card {
    flex-direction: column;
  }

  .search-result-card__img {
    width: 100%;
    height: 160px;
  }
}

/* ==========================================================================
   GENERIC PAGE CONTENT
   ========================================================================== */
.page-content__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3rem, 2rem + 3vw, 5rem) 1.5rem;
}

.page-content__thumbnail {
  margin-bottom: 2.5rem;
  border-radius: 18px;
  overflow: hidden;
}

.page-content__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.page-content__body {
  font-size: 1rem;
  line-height: 1.9;
  color: #3a3a50;
}

.page-content__body h2,
.page-content__body h3,
.page-content__body h4 {
  font-family: 'Montserrat', serif;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content__body p {
  margin-bottom: 1.25rem;
}

.page-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.page-content__body ul,
.page-content__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.page-content__body li {
  margin-bottom: 0.5rem;
  color: var(--text-mid);
}

/* ==========================================================================
   ENHANCED BUTTON ANIMATIONS
   ========================================================================== */
.btn {
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn--primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn--primary:active {
  transform: scale(0.97);
}

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(var(--brand-rgb), 0.3);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--brand-rgb), 0.4);
}

/* Active nav link */
.nav__link.is-active,
.nav__item--active > .nav__link {
  color: var(--brand) !important;
}

.nav__link.is-active::after,
.nav__item--active > .nav__link::after {
  width: 100% !important;
  opacity: 1 !important;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #141422;
  color: rgba(var(--cream-rgb), 0.7);
}

.footer__top {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 1.5rem + 2vw, 3rem);
}

.footer__brand-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(var(--cream-rgb), 0.5);
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(var(--cream-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(var(--cream-rgb), 0.5);
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.08);
  transform: translateY(-2px);
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-warm);
  margin-bottom: 1.5rem;
}

.footer__links li {
  margin-bottom: 0.65rem;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(var(--cream-rgb), 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--brand);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(var(--cream-rgb), 0.5);
}

.footer__contact-item a {
  color: rgba(var(--cream-rgb), 0.5);
}

.footer__contact-item a:hover {
  color: var(--brand);
}

/* ── Newsletter ────────────────────────────────────────────── */
.footer__newsletter {
  border-top: 1px solid rgba(var(--brand-rgb), 0.1);
  padding: 2.5rem 0;
}

.footer__newsletter .footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--bg-warm);
  margin-bottom: 0.25rem;
}

.newsletter__desc {
  font-size: 0.8rem;
  color: rgba(var(--cream-rgb), 0.5);
}

.newsletter__form {
  flex: 1;
  max-width: 420px;
}

.newsletter__input-group {
  display: flex;
  gap: 0.5rem;
}

.newsletter__input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(var(--cream-rgb), 0.12);
  border-radius: 10px;
  color: var(--bg-warm);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  transition: border-color 0.3s ease;
}

.newsletter__input::placeholder {
  color: rgba(var(--cream-rgb), 0.35);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--brand);
}

.newsletter__btn {
  white-space: nowrap;
  padding: 0.7rem 1.5rem;
}

.newsletter__privacy {
  font-size: 0.65rem;
  color: rgba(var(--cream-rgb), 0.3);
  margin-top: 0.5rem;
}

/* ── Cookie Banner ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem;
  background: rgba(var(--ink-rgb), 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(var(--brand-rgb), 0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.8rem;
  color: rgba(var(--cream-rgb), 0.7);
  line-height: 1.5;
  flex: 1;
}

.cookie-banner__text strong {
  color: var(--bg-warm);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-banner__btn--accept {
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: linear-gradient(135deg, #AF2D37, var(--brand));
}

.cookie-banner__btn--decline {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(var(--cream-rgb), 0.6);
  border: 1px solid rgba(var(--cream-rgb), 0.1);
}

.cookie-banner__btn--decline:hover {
  border-color: rgba(var(--cream-rgb), 0.3);
  color: var(--bg-warm);
}

.footer__bottom {
  border-top: 1px solid rgba(var(--cream-rgb), 0.06);
  padding: 1.5rem 0;
}

.footer__bottom .footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 0.78rem;
  color: rgba(var(--cream-rgb), 0.35);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(var(--cream-rgb), 0.35);
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: var(--brand);
}

/* Page content */
.page-content {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-lavender) 60%, var(--bg-lavender-deep) 100%);
  padding: clamp(3.5rem, 3rem + 2vw, 5rem) 0 clamp(3rem, 2rem + 3vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.1);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-size: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero__desc {
  font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-section {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 1.5rem + 3vw, 4rem);
  align-items: start;
}

/* Form */
.contact-form__title {
  font-family: 'Montserrat', serif;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.contact-form__subtitle {
  font-size: 0.88rem;
  color: var(--text-subtle);
  margin-bottom: 2rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--bg-cream);
  border: 1.5px solid #e8e8ed;
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-input::placeholder {
  color: #b0b0c0;
}

.form-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.1);
}

/* Inline validation */
.form-input:not(:placeholder-shown):valid {
  border-color: rgba(45, 106, 79, 0.4);
}

.form-input:not(:placeholder-shown):invalid:not(:focus) {
  border-color: rgba(196, 78, 78, 0.4);
}

/* Form submission success */
.contact-form__success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.contact-form__success.is-visible {
  display: block;
  animation: fade-in 0.5s ease;
}

.contact-form__success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-form__success-title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-form__success-text {
  font-size: 0.85rem;
  color: var(--text-subtle);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237a7a90' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.contact-form__submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* Contact Cards */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(var(--brand-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 1rem;
}

.contact-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.contact-card__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}

a.contact-card__text:hover {
  color: var(--brand);
}

.contact-card__hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-card__hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-mid);
}

.contact-social {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 14px;
}

.contact-social__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 1rem;
}

.contact-social__links {
  display: flex;
  gap: 0.75rem;
}


/* ==========================================================================
   CONTACT MAP
   ========================================================================== */
.contact-map {
  padding: 0 0 clamp(3rem, 2rem + 3vw, 5rem);
  background: var(--bg-cream);
}

.contact-map__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
  border-radius: 16px;
  overflow: hidden;
}

.contact-map__wrap iframe {
  display: block;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   BLOG POST
   ========================================================================== */
.post-content__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 1.5rem + 3vw, 4rem) clamp(1.25rem, 1rem + 2vw, 3rem);
}

.post-content__thumbnail {
  margin-bottom: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
}

.post-content__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content__body {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  line-height: 1.8;
  color: var(--surface-ink);
}

.post-content__body h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  margin: 2.5rem 0 1rem;
}

.post-content__body h3 {
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.5rem);
  margin: 2rem 0 0.75rem;
}

.post-content__body p {
  margin-bottom: 1.5rem;
}

.post-content__body img {
  border-radius: 12px;
  margin: 2rem 0;
}

.post-content__body blockquote {
  border-left: 3px solid var(--brand);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(var(--brand-rgb), 0.05);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--text-mid);
}

.post-content__body ul,
.post-content__body ol {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: revert;
}

.post-content__body li {
  margin-bottom: 0.5rem;
}

.post-content__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #f0f0f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.post-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(var(--brand-rgb), 0.1);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand);
  margin-right: 0.5rem;
}

/* ==========================================================================
   BLOG — Premium Redesign
   ========================================================================== */

/* ── Blog Hero ────────────────────────────────────────────── */
.blog-hero {
  position: relative;
  background: linear-gradient(150deg, #070e1a 0%, #0F2440 25%, #18375D 70%, #102c50 100%);
  padding: clamp(7rem, 5rem + 5vw, 10rem) 0 clamp(3rem, 2rem + 3vw, 5rem);
  overflow: hidden;
  text-align: center;
}

.blog-hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.blog-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: blog-orb-float 12s ease-in-out infinite alternate;
}
.blog-hero__orb--1 {
  width: 500px; height: 500px;
  background: var(--brand);
  top: -20%; right: -8%;
}
.blog-hero__orb--2 {
  width: 350px; height: 350px;
  background: #3B82F6;
  bottom: -15%; left: -5%;
  animation-delay: -6s;
  animation-direction: alternate-reverse;
}

@keyframes blog-orb-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

.blog-hero__inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
}

.blog-hero .section__label {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
}

.blog-hero__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(2.2rem, 1.6rem + 3vw, 3.8rem);
  font-weight: 800; color: #fff;
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.blog-hero__title em {
  font-style: normal; font-weight: 800;
  background: linear-gradient(135deg, var(--brand) 0%, #FF6B74 60%, #FFA07A 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.blog-hero__desc {
  font-size: clamp(0.9rem, 0.82rem + 0.3vw, 1.05rem);
  color: rgba(255,255,255,0.55); line-height: 1.75;
  max-width: 50ch; margin: 0 auto;
}

/* ── Category Filters ─────────────────────────────────────── */
.blog-filters {
  padding: 1.5rem 0 0;
  background: var(--bg-cream);
}

.blog-filters__bar {
  display: flex; align-items: center; gap: 0.5rem;
  flex-wrap: wrap; justify-content: center;
  padding: 0.5rem;
  background: #fff; border-radius: 9999px;
  border: 1px solid #f0f0f4;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.blog-filter-btn {
  display: inline-flex; align-items: center;
  padding: 0.6rem 1.35rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-subtle); text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s ease; white-space: nowrap;
}
.blog-filter-btn:hover { color: var(--text-dark); background: var(--border-soft); }
.blog-filter-btn.is-active {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  color: #fff; box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.25);
}

/* ── Blog Archive ─────────────────────────────────────────── */
.blog-archive { padding: clamp(3rem, 2rem + 3vw, 5rem) 0; }

/* ── Featured Post ────────────────────────────────────────── */
.blog-featured {
  margin-bottom: 3rem;
}
.blog-featured__link {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-featured__link:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(var(--ink-rgb), 0.12);
  border-color: rgba(var(--brand-rgb), 0.15);
}

.blog-featured__img {
  position: relative; overflow: hidden;
  min-height: 380px;
}
.blog-featured__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-featured__link:hover .blog-featured__img img { transform: scale(1.05); }

.blog-featured__placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; min-height: 380px;
  background: linear-gradient(135deg, #18375D, #0F2440);
  color: rgba(255,255,255,0.2);
}

.blog-featured__badge {
  position: absolute; top: 1.25rem; left: 1.25rem;
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  color: #fff; font-family: 'Inter', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.3);
}

.blog-featured__body {
  padding: clamp(1.5rem, 1rem + 2vw, 3rem);
  display: flex; flex-direction: column; justify-content: center;
}
.blog-featured__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  font-weight: 400; color: var(--text-dark);
  line-height: 1.2; margin-bottom: 0.75rem;
}
.blog-featured__excerpt {
  font-size: 0.95rem; color: var(--text-subtle);
  line-height: 1.75; margin-bottom: 1.5rem;
  max-width: 48ch;
}
.blog-featured__footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  margin-top: auto; padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.blog-featured__author {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 600; color: var(--text-mid);
}
.blog-featured__author img {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(var(--brand-rgb), 0.15);
}

/* ── Blog Grid ────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.blog-card__link {
  display: flex; flex-direction: column;
  text-decoration: none; height: 100%;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(var(--ink-rgb), 0.1);
  border-color: rgba(var(--brand-rgb), 0.15);
}

/* ── Card Image ───────────────────────────────────────────── */
.blog-card__img {
  height: 210px; overflow: hidden; position: relative;
}
.blog-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }

.blog-card__img--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #18375D, #0F2440);
  color: rgba(255,255,255,0.15);
  height: 100%;
}

/* ── Card Body ────────────────────────────────────────────── */
.blog-card__body {
  padding: 1.5rem; flex: 1;
  display: flex; flex-direction: column;
}

.blog-card__meta {
  display: flex; align-items: center;
  gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap;
}
.blog-card__cat {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.1);
  padding: 3px 10px; border-radius: 9999px;
}
.blog-card__date {
  font-size: 0.72rem; color: var(--text-faint); font-weight: 500;
}
.blog-card__read-time {
  font-size: 0.72rem; color: var(--text-faint); font-weight: 500;
}

.blog-card__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
  font-weight: 600; color: var(--text-dark);
  line-height: 1.3; margin-bottom: 0.6rem;
}
.blog-card__excerpt {
  font-size: 0.85rem; color: var(--text-subtle);
  line-height: 1.65; flex: 1;
}

.blog-card__read {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  color: var(--brand); letter-spacing: 0.04em;
  margin-top: 1rem;
  transition: gap 0.3s ease;
}
.blog-card:hover .blog-card__read,
.blog-featured__link:hover .blog-card__read { gap: 0.7rem; }

/* ── Pagination ───────────────────────────────────────────── */
.blog-pagination {
  display: flex; justify-content: center; margin-top: 3rem;
}
.blog-pagination ul {
  display: flex; align-items: center;
  gap: 0.35rem; list-style: none; padding: 0;
}
.blog-pagination li { display: inline-flex; }
.blog-pagination a,
.blog-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 0.75rem; gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-mid); text-decoration: none;
  border-radius: 10px; border: 1px solid #f0f0f4;
  background: #fff; transition: all 0.3s ease;
}
.blog-pagination a:hover {
  border-color: var(--brand); color: var(--brand);
  background: rgba(var(--brand-rgb), 0.04);
}
.blog-pagination .current {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.25);
}
.blog-pagination .prev,
.blog-pagination .next { font-size: 0.75rem; letter-spacing: 0.04em; }

/* ── Empty State ──────────────────────────────────────────── */
.blog-empty {
  text-align: center;
  padding: clamp(4rem, 3rem + 4vw, 7rem) 2rem;
}
.blog-empty__icon-wrap {
  width: 80px; height: 80px; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.08);
  color: var(--brand);
}
.blog-empty__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem);
  font-weight: 300; color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.blog-empty__text {
  font-size: 0.95rem; color: var(--text-subtle);
  line-height: 1.7; max-width: 480px; margin: 0 auto 2rem;
}

/* ── Newsletter CTA ───────────────────────────────────────── */
.blog-newsletter {
  padding: 0 0 clamp(3rem, 2rem + 3vw, 5rem);
}
.blog-newsletter__inner {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(2.5rem, 2rem + 2vw, 4rem) clamp(2rem, 1.5rem + 3vw, 4rem);
  background: linear-gradient(135deg, #0F2440 0%, #18375D 100%);
  border-radius: 1.5rem; position: relative; overflow: hidden;
}
.blog-newsletter__content { position: relative; z-index: 1; }
.blog-newsletter__visual {
  position: absolute; right: 2rem; top: 50%;
  transform: translateY(-50%); color: #fff; z-index: 0;
}
.blog-newsletter .section__label {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}
.blog-newsletter__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
  font-weight: 300; color: #fff;
  line-height: 1.15; margin-bottom: 0.75rem;
}
.blog-newsletter__title em {
  font-style: normal; font-weight: 800;
  background: linear-gradient(135deg, var(--brand) 0%, #FF6B74 60%, #FFA07A 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.blog-newsletter__desc {
  font-size: 0.95rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; max-width: 45ch;
}

/* ── Blog Responsive ──────────────────────────────────────── */
@media (max-width: 960px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .blog-featured__link { grid-template-columns: 1fr; }
  .blog-featured__img { min-height: 260px; }
  .blog-filters__bar { border-radius: 1rem; padding: 0.5rem; }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured__body { padding: 1.5rem; }
  .blog-filters__bar {
    justify-content: flex-start; overflow-x: auto;
    flex-wrap: nowrap; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .blog-filters__bar::-webkit-scrollbar { display: none; }
  .blog-newsletter__visual { display: none; }
}

/* ==========================================================================
   SERVICES ARCHIVE PAGE
   ========================================================================== */
.services-archive {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
  background: var(--bg-cream);
}

/* ── Category Filter Tabs ─────────────────────────────────────── */
.services-filter {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 72px; /* clears fixed header */
  z-index: 10;
  padding: 0.75rem 0;
}

.services-filter__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
  max-width: 1280px;
  margin: 0 auto;
}

.services-filter__btn {
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.services-filter__btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.services-filter__btn.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ── Service Card Body wrapper (archive variant) ─────────────── */
.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0;
}

.service-card__cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

/* ── No Results State ─────────────────────────────────────────── */
.services-no-results {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-subtle);
  font-size: 0.95rem;
}

/* ==========================================================================
/* ==========================================================================
   SINGLE SERVICE PAGE — Bold Plumbing Design
   ========================================================================== */

/* ── Service Hero — Dark navy split ──────────────────────────────── */
.service-hero {
  position: relative;
  background: linear-gradient(
    150deg,
    #070e1a   0%,
    var(--brand-navy-dark) 25%,
    var(--brand-navy)      70%,
    #102c50                100%
  );
  padding: clamp(6rem, 5rem + 4vw, 9rem) 0 clamp(3.5rem, 2rem + 3vw, 5rem);
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.service-hero__glow {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 400px;
  height: 140%;
  background: linear-gradient(180deg, transparent 0%, rgba(242,47,58,0.06) 30%, rgba(242,47,58,0.1) 50%, rgba(242,47,58,0.06) 70%, transparent 100%);
  transform: rotate(-25deg);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.service-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 2rem + 5vw, 5rem);
}

.service-hero--no-image .service-hero__inner {
  max-width: 860px;
  grid-template-columns: 1fr;
  text-align: center;
}

.service-hero__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(2.4rem, 1.8rem + 3vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.service-hero__title em,
.service-hero__location {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand) 0%, #FF6B74 60%, #FFA07A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.5em;
  display: block;
  margin-top: 0.3em;
}

.service-hero__desc {
  font-size: clamp(0.92rem, 0.82rem + 0.3vw, 1.02rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 50ch;
  margin-bottom: 1.5rem;
}
.service-hero--no-image .service-hero__desc {
  margin-left: auto;
  margin-right: auto;
}

.service-hero .section__label {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
}

.service-hero__meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.service-hero--no-image .service-hero__meta {
  justify-content: center;
}

.service-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.service-hero__meta-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.service-hero__meta-value {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.service-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.service-hero--no-image .service-hero__actions {
  justify-content: center;
}
.service-hero__actions .btn--outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}
.service-hero__actions .btn--outline:hover {
  border-color: var(--brand);
  background: rgba(242, 47, 58, 0.12);
  color: #fff;
}

/* Image column */
.service-hero__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
.service-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.service-hero__img-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 60px rgba(242, 47, 58, 0.1);
  pointer-events: none;
}

/* ── Breadcrumbs (dark hero version) ──────────────────────────────── */
.breadcrumbs--hero .breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.78rem;
}
.breadcrumbs--hero a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumbs--hero a:hover { color: #fff; }
.breadcrumbs__sep { color: rgba(255, 255, 255, 0.2); }
.breadcrumbs__item--current span { color: rgba(255, 255, 255, 0.75); font-weight: 600; }

/* ── Content + Sidebar ────────────────────────────────────────────── */
.service-body {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #fff;
}

.service-body__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}

.service-body__main {
  min-width: 0;
}

.service-body__sidebar {
  position: sticky;
  top: 120px;
}

/* Sidebar card */
.service-sidebar {
  background: var(--brand-navy);
  border-radius: 20px;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.3);
}

.service-sidebar__icon { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }

.service-sidebar__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.service-sidebar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-sidebar__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-sidebar__value {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.service-sidebar__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1rem 0;
}

.service-sidebar__book {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.service-sidebar__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.25s ease;
}
.service-sidebar__call:hover { color: #fff; border-color: var(--brand); background: rgba(242, 47, 58, 0.15); }

.service-sidebar__fine {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: 0.75rem;
}

@media (max-width: 900px) {
  .service-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .service-hero__image { max-height: 300px; }
  .service-hero__meta { justify-content: center; }
  .service-hero__actions { justify-content: center; }
  .service-hero__desc { margin-left: auto; margin-right: auto; }
  .service-body__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-body__sidebar { position: static; }
}

/* ── Service Content Typography ───────────────────────────────────── */
.service-content__body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.service-content__body h2 {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(242, 47, 58, 0.15);
}

.service-content__body h2:first-child {
  margin-top: 0;
}

.service-content__body h3 {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  font-weight: 600;
  color: var(--text-dark);
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}

.service-content__body p {
  margin-bottom: 1.5rem;
  max-width: 65ch;
}

.service-content__body img {
  border-radius: 16px;
  margin: 2rem 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  max-width: 100%;
  height: auto;
}

.service-content__body ul,
.service-content__body ol {
  margin: 1.25rem 0 1.5rem;
  padding-left: 0;
}

.service-content__body ul {
  list-style: none;
}

.service-content__body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

.service-content__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
}

.service-content__body ol li {
  padding-left: 0.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

.service-content__body blockquote {
  border-left: 3px solid var(--brand);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background: rgba(242, 47, 58, 0.04);
  border-radius: 0 12px 12px 0;
}

.service-content__body blockquote p {
  margin: 0;
  font-style: italic;
}

.service-content__body strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* ── Benefits Grid ────────────────────────────────────────────────── */
.service-benefits {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: var(--bg-alt);
}

.service-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-benefits__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-benefits__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(242, 47, 58, 0.2);
}

.service-benefits__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(242, 47, 58, 0.25);
}

/* ── Video Section ────────────────────────────────────────────────── */
.service-video {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #fff;
}

.service-video__wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-video__wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Why Choose Us ────────────────────────────────────────────────── */
.service-why-us {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: var(--bg-alt);
}

.service-why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-why-us__card {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-why-us__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #FF6B74);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-why-us__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  border-color: rgba(242, 47, 58, 0.2);
}
.service-why-us__card:hover::before {
  transform: scaleX(1);
}

.service-why-us__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(242, 47, 58, 0.08);
  color: var(--brand);
  margin-bottom: 1.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.service-why-us__card:hover .service-why-us__icon {
  background: var(--brand);
  color: #fff;
  transform: scale(1.08);
}

.service-why-us__card-title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-why-us__card-text {
  font-size: 0.85rem;
  color: var(--text-subtle);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .service-why-us__grid { grid-template-columns: 1fr; }
  .service-hero__actions { flex-direction: column; }
  .service-hero__actions .btn { width: 100%; justify-content: center; }
}

/* ── Trust Section (dark navy 2-col) ──────────────────────────────── */
.svc-trust {
  background: linear-gradient(150deg, #070e1a 0%, var(--brand-navy-dark) 30%, var(--brand-navy) 70%, #102c50 100%);
  padding: clamp(5rem, 4rem + 4vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}
.svc-trust::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 160%;
  background: linear-gradient(180deg, transparent, rgba(242,47,58,.06) 30%, rgba(242,47,58,.1) 50%, rgba(242,47,58,.06) 70%, transparent);
  transform: rotate(-25deg);
  filter: blur(50px);
  pointer-events: none;
}

.svc-trust__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 2rem + 4vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.svc-trust__left {
  position: sticky;
  top: 140px;
}

.svc-trust__heading {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(2.5rem, 2rem + 3vw, 4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem;
}
.svc-trust__heading em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand) 0%, #FF6B74 60%, #FFA07A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-trust__desc {
  font-size: clamp(0.88rem, 0.82rem + 0.3vw, 0.98rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 40ch;
  margin-bottom: 2rem;
}

.svc-trust__stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.svc-trust__stat-stars {
  font-size: 1.4rem;
  color: #F5C542;
  letter-spacing: 0.05em;
}
.svc-trust__stat strong {
  display: block;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.svc-trust__stat span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Right: stacked cards */
.svc-trust__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svc-trust__card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.svc-trust__card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(242, 47, 58, 0.3);
  transform: translateX(6px);
}

.svc-trust__card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(242, 47, 58, 0.12);
  border: 1px solid rgba(242, 47, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  transition: all 0.3s ease;
}
.svc-trust__card:hover .svc-trust__card-icon {
  background: var(--brand);
  color: #fff;
  transform: scale(1.05);
}

.svc-trust__card-body {
  flex: 1;
  min-width: 0;
}

.svc-trust__card-num {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.svc-trust__card-num span {
  font-size: 0.45em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  margin-left: 0.1em;
}

.svc-trust__card-body h3 {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.35rem;
}
.svc-trust__card-body p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .svc-trust__inner { grid-template-columns: 1fr; }
  .svc-trust__left { position: static; text-align: center; }
  .svc-trust__desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .svc-trust__stat { justify-content: center; }
}

/* ==========================================================================
   RELATED SERVICES
   ========================================================================== */
.related-services {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: var(--border-soft);
}

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

@media (max-width: 768px) {
  .related-services__grid {
    grid-template-columns: 1fr;
  }
}

/* Keep old service card meta for archive pages */
.service-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f4;
}

.service-card__price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
}

.service-card__duration {
  font-size: 0.78rem;
  color: var(--text-subtle);
}


/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-story {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1.5rem + 3vw, 5rem);
  align-items: center;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-image-placeholder {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--bg-lavender), var(--bg-lavender-deep));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(var(--brand-rgb), 0.15) 0%, transparent 60%);
}

.about-image-text {
  position: relative;
  z-index: 2;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(var(--dark-rgb), 0.3);
}

/* Stats Bar */
.stats-bar {
  padding: clamp(2.5rem, 2rem + 2vw, 4rem) 0;
  background: linear-gradient(135deg, var(--bg-lavender) 0%, var(--bg-lavender-deep) 100%);
  border-top: 1px solid rgba(var(--brand-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.08);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats-bar__number {
  display: block;
  font-family: 'Montserrat', serif;
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  font-weight: 600;
  color: var(--brand);
  line-height: 1.1;
}

.stats-bar__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 0.35rem;
}

/* Team Preview */
.team-preview {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: var(--bg-cream);
}

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

.team-card {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.team-card__image {
  margin-bottom: 1.25rem;
}

.team-card__placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto;
}

.team-card__placeholder--lg {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  font-size: 2rem;
  margin: 0;
}

.team-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}

.team-card__bio {
  font-size: 0.82rem;
  color: var(--text-subtle);
  line-height: 1.6;
}

/* Values */
.values-section {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

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

.value-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.value-card__number {
  font-family: 'Montserrat', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--brand);
  margin-bottom: 1rem;
}

.value-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.value-card__text {
  font-size: 0.82rem;
  color: var(--text-subtle);
  line-height: 1.6;
}

/* ==========================================================================
   PRODUCTS PAGE
   ========================================================================== */
.products-showcase {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, #f0ece6 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Product Card ──────────────────────────────────────────────── */
.product-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s ease;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1),
              0 8px 30px rgba(var(--brand-rgb), 0.08);
}

/* ── Video Background ──────────────────────────────────────────── */
.product-card__video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  border-radius: 24px;
  pointer-events: none;
}

.product-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  filter: grayscale(50%) blur(1px);
  transition: opacity 0.5s ease;
}

.product-card:hover .product-card__video {
  opacity: 0.1;
}

.product-card--has-video .product-card__inner {
  position: relative;
  z-index: 1;
}

/* ── Card Inner ────────────────────────────────────────────────── */
.product-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ── Product Image ─────────────────────────────────────────────── */
.product-card__image {
  position: relative;
  background: linear-gradient(160deg, var(--bg-lavender) 0%, var(--bg-lavender-deep) 60%, var(--bg-petal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  max-height: 300px;
  overflow: hidden;
}

/* Shimmer loading effect for product images */
@keyframes shimmer-load {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.product-card__image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(var(--brand-rgb), 0.1), transparent);
  pointer-events: none;
  z-index: 1;
}

.product-card__image::after {
  content: '';
  position: absolute;
  top: -25%;
  right: -25%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(var(--brand-rgb), 0.3);
  background: transparent;
}

/* ── Product Content ───────────────────────────────────────────── */
.product-card__content {
  padding: clamp(1.5rem, 1rem + 1vw, 2rem);
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.product-card__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(1.5rem, 1rem + 1vw, 2rem);
  right: clamp(1.5rem, 1rem + 1vw, 2rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb), 0.3), transparent);
}

.product-card__name {
  font-family: 'Montserrat', serif;
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.product-card__price {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-card__desc p {
  margin-bottom: 0.5rem;
}

.product-card__desc p:last-child {
  margin-bottom: 0;
}

.product-card__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  padding: 0.65rem 1.5rem;
  margin-top: auto;
}

.product-card__btn svg {
  transition: transform 0.2s ease;
}

.product-card:hover .product-card__btn svg {
  transform: translate(2px, -2px);
}

/* ==========================================================================
   CLIENT PORTAL SECTION
   ========================================================================== */
.portal-section {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, #f0ece6 100%);
}

.portal-section__card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 28px;
  padding: clamp(2.5rem, 2rem + 2vw, 4rem);
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s ease;
}

.portal-section__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.08);
}

.portal-section__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.12), rgba(var(--brand-rgb), 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--brand);
}

.portal-section__title {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.portal-section__text {
  font-size: 0.88rem;
  color: var(--text-subtle);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   TEAM FULL PAGE
   ========================================================================== */
.team-full {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--border-soft) 100%);
}

.team-full__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 2rem + 4vw, 5rem);
}

/* ── Team Member Card ──────────────────────────────────────────── */
.team-member {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  transition: box-shadow 0.5s ease, transform 0.4s ease;
}

.team-member:hover {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12), 0 8px 30px rgba(var(--brand-rgb), 0.1);
  transform: translateY(-6px);
}

.team-member--reverse {
  direction: rtl;
}

.team-member--reverse > * {
  direction: ltr;
}

/* ── Photo Area — colored background for cutouts ───────────────── */
.team-member__image {
  position: relative;
  background: linear-gradient(160deg, var(--bg-lavender) 0%, var(--bg-lavender-deep) 60%, var(--bg-petal) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 480px;
  overflow: hidden;
}

.team-member__image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(var(--brand-rgb), 0.12), transparent);
  pointer-events: none;
  z-index: 1;
}

.team-member__image::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Gold corner accent */
.team-member__image img {
  max-width: 100%;
  max-height: 480px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  z-index: 2;
  transition: transform 0.6s ease;
}

.team-member:hover .team-member__image img {
  transform: scale(1.03);
}

.team-member__image .team-card__placeholder--lg {
  width: 100%;
  height: 100%;
  border-radius: 0;
  font-size: 4rem;
  background: transparent;
  color: rgba(var(--brand-rgb), 0.25);
  font-weight: 300;
  letter-spacing: 0.2em;
  font-family: 'Montserrat', serif;
}

/* ── Info Area ─────────────────────────────────────────────────── */
.team-member__info {
  padding: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.team-member__info::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 4px;
  height: 80px;
  background: linear-gradient(to bottom, var(--brand), rgba(var(--brand-rgb), 0.1));
  border-radius: 2px;
}

.team-member--reverse .team-member__info::before {
  left: auto;
  right: 0;
}

.team-member__name {
  font-family: 'Montserrat', serif;
  font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.team-member__role {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.5rem;
}

/* ── Credential Badges ─────────────────────────────────────────── */
.team-member__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.team-member__badge {
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-pink));
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(var(--cream-rgb), 0.85);
  letter-spacing: 0.03em;
}

/* ── Bio Area ──────────────────────────────────────────────────── */
.team-member__bio {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(var(--brand-rgb), 0.15);
}

.team-member__bio p {
  margin-bottom: 0.75rem;
}

.team-member__bio p:last-child {
  margin-bottom: 0;
}

/* ── Specialty Tags ────────────────────────────────────────────── */
.team-member__specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f4;
}

.team-member__specialty {
  padding: 0.4rem 1rem;
  background: rgba(var(--brand-rgb), 0.08);
  border: 1px solid rgba(var(--brand-rgb), 0.15);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand);
  transition: all 0.2s ease;
}

.team-member__specialty:hover {
  background: rgba(var(--brand-rgb), 0.15);
  transform: translateY(-1px);
}

/* ==========================================================================
   MISSION PAGE
   ========================================================================== */
.mission-content {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

.mission-statement {
  text-align: center;
  padding: clamp(2rem, 1.5rem + 2vw, 4rem) 0;
  margin-bottom: 3rem;
}

.mission-quote {
  font-family: 'Montserrat', serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  border: none;
  padding: 0;
  background: none;
}

.mission-quote__author {
  display: block;
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.05em;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.mission-pillar {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.mission-pillar:hover {
  transform: translateY(-3px);
}

.mission-pillar__icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.mission-pillar__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.mission-pillar__text {
  font-size: 0.85rem;
  color: var(--text-subtle);
  line-height: 1.7;
}

.mission-vision {
  padding: 3rem 0;
  max-width: 800px;
}

/* ==========================================================================
   VALUES FULL PAGE
   ========================================================================== */
.values-full {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

.values-detailed {
  max-width: 800px;
  margin: 0 auto;
}

.value-detail {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #f0f0f4;
}

.value-detail:last-child {
  border-bottom: none;
}

.value-detail__number {
  font-family: 'Montserrat', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--brand);
  line-height: 1;
}

.value-detail__title {
  font-family: 'Montserrat', serif;
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.value-detail__text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ==========================================================================
   CAREERS PAGE
   ========================================================================== */
.careers-why {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: var(--bg-cream);
}

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

.careers-perk {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.careers-perk:hover {
  transform: translateY(-3px);
}

.careers-perk__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.careers-perk__title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.careers-perk__text {
  font-size: 0.82rem;
  color: var(--text-subtle);
  line-height: 1.6;
}

.careers-positions {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.positions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.position-card {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.position-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.position-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.position-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.position-card__tag {
  padding: 0.25rem 0.65rem;
  background: rgba(var(--brand-rgb), 0.08);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-mid);
}

.position-card__desc {
  font-size: 0.85rem;
  color: var(--text-subtle);
  line-height: 1.5;
}

.generic-page {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

/* ==========================================================================
   BEFORE & AFTER GALLERY
   ========================================================================== */
.gallery-section {
  padding: clamp(3rem, 2rem + 3vw, 5rem) 0;
}

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gallery-filter {
  padding: 0.55rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-subtle);
  background: #fff;
  border: 1.5px solid #e8e8ed;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.gallery-filter.is-active {
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: #fff;
  border-color: transparent;
}

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

.gallery-card {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
}

.gallery-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gallery-card__before,
.gallery-card__after {
  position: relative;
}

.gallery-card__label {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.65rem;
  background: rgba(var(--ink-rgb), 0.7);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  z-index: 2;
}

.gallery-card__label--after {
  background: rgba(var(--brand-rgb), 0.85);
}

.gallery-card__placeholder {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e0d4, #d5cdc1);
  font-size: 0.75rem;
  font-weight: 600;
  color: #9e9490;
  letter-spacing: 0.05em;
}

.gallery-card__placeholder--after {
  background: linear-gradient(135deg, #d4dde8, #c1c9d5);
  color: #8a929e;
}

.gallery-card__info {
  padding: 1.25rem 1.5rem;
}

.gallery-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.gallery-card__desc {
  font-size: 0.8rem;
  color: var(--text-subtle);
  line-height: 1.5;
}

.gallery-disclaimer {
  text-align: center;
  margin-top: 2.5rem;
}

.gallery-disclaimer p {
  font-size: 0.75rem;
  color: var(--text-faint);
  font-style: italic;
}

/* ==========================================================================
   BLOG SINGLE
   ========================================================================== */
.page-hero--blog {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-lavender) 50%, var(--bg-lavender-deep) 100%);
}

/* Blog Section (Homepage) */
.blog-section {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Blog Archive */
.blog-archive {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: var(--bg-cream);
}

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

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Single Post Wrapper */
.post-content {
  background: #fff;
}

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.blog-card__img {
  height: 200px;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.05);
}

.blog-card__img--placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-warm), #f0f0f4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-card__date {
  font-size: 0.72rem;
  color: var(--text-faint);
}

.blog-card__cat {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.blog-card__excerpt {
  font-size: 0.82rem;
  color: var(--text-subtle);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card__read {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
}

.blog-card__read-time {
  font-size: 0.7rem;
  color: var(--text-faint);
  margin-left: auto;
}

/* ==========================================================================
   READING PROGRESS BAR
   ========================================================================== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10000;
  background: transparent;
  pointer-events: none;
}

.reading-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), #AF2D37, var(--brand));
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
  will-change: width;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
  padding: 1rem 0;
  background: linear-gradient(180deg, var(--border-soft) 0%, var(--bg-cream) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* Inside the service hero — no bar, just an inline trail */
.breadcrumbs--hero {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 1.25rem;
  justify-content: center;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  font-size: 0.78rem;
  color: var(--text-faint);
}

.breadcrumbs--hero .breadcrumbs__list {
  justify-content: center;
}

.breadcrumbs__item a {
  color: var(--text-subtle);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs--hero .breadcrumbs__item a {
  color: rgba(106, 75, 120, 0.65);
}

.breadcrumbs__item a:hover {
  color: var(--brand);
}

.breadcrumbs__sep {
  margin: 0 0.5rem;
  color: var(--brand);
  font-size: 0.85rem;
}

.breadcrumbs--hero .breadcrumbs__sep {
  color: rgba(var(--brand-rgb), 0.4);
}

.breadcrumbs__item--current {
  color: var(--text-dark);
  font-weight: 600;
}

.breadcrumbs--hero .breadcrumbs__item--current {
  color: rgba(var(--dark-rgb), 0.55);
  font-weight: 500;
}

/* ==========================================================================
   SOCIAL PROOF NOTIFICATION
   ========================================================================== */
.social-proof {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: rgba(var(--ink-rgb), 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  border: 1px solid rgba(var(--brand-rgb), 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateX(-120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  max-width: 320px;
}

.social-proof.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.social-proof__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.social-proof__content {
  font-size: 0.78rem;
  color: rgba(var(--cream-rgb), 0.85);
  line-height: 1.4;
}

.social-proof__content strong {
  color: var(--brand);
}

.social-proof__content strong:first-child {
  color: var(--bg-warm);
}

.social-proof__time {
  display: block;
  font-size: 0.65rem;
  color: rgba(var(--cream-rgb), 0.4);
  margin-top: 0.15rem;
}

@media (max-width: 768px) {
  .social-proof {
    display: none;
  }
}

/* ==========================================================================
   FLOATING MOBILE CTA
   ========================================================================== */
.floating-cta {
  display: none;
}

@media (max-width: 768px) {
  .floating-cta {
    display: flex;
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    gap: 0.5rem;
    padding: 0.6rem;
    background: rgba(var(--ink-rgb), 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 9999px;
    border: 1px solid rgba(var(--brand-rgb), 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: float-up 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }

  @keyframes float-up {
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }

  .floating-cta__btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.2rem;
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .floating-cta__btn--book {
    background: linear-gradient(135deg, var(--brand), var(--brand-mid));
    color: #fff;
  }

  .floating-cta__btn--book:hover {
    background: linear-gradient(135deg, #AF2D37, var(--brand));
  }

  .floating-cta__btn--call {
    background: rgba(255, 255, 255, 0.08);
    color: var(--bg-warm);
    border: 1px solid rgba(var(--cream-rgb), 0.15);
  }

  .floating-cta__btn--call:hover {
    border-color: var(--brand);
    color: var(--brand);
  }
}

/* Pagination */
.blog-pagination {
  margin-top: 3rem;
  text-align: center;
}

.blog-pagination .page-numbers {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
}

.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-mid);
  border: 1px solid #f0f0f4;
  transition: all 0.3s ease;
}

.blog-pagination .page-numbers li .current {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.blog-pagination .page-numbers li a:hover {
  background: var(--bg-cream);
}

/* Empty Blog */
.blog-empty {
  text-align: center;
  padding: 5rem 2rem;
}

.blog-empty__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.blog-empty__title {
  font-family: 'Montserrat', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.blog-empty__text {
  font-size: 0.9rem;
  color: var(--text-subtle);
  margin-bottom: 2rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.post-meta-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.post-meta-line__date,
.post-meta-line__cat,
.post-meta-line__read {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(var(--cream-rgb), 0.55);
}

.post-meta-line__cat a {
  color: var(--brand);
  text-decoration: none;
}

.post-meta-line__sep {
  color: rgba(var(--cream-rgb), 0.2);
}

/* Author Bar */
.post-author-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 14px;
  margin: 2.5rem 0;
  border: 1px solid #f0f0f4;
}

.post-author-bar__avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.post-author-bar__info {
  flex: 1;
}

.post-author-bar__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.post-author-bar__name {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.post-author-bar__share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-author-bar__share-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-faint);
}

.post-share-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8e6e2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.post-share-link:hover {
  background: var(--brand);
  color: #fff;
}

/* Related Posts */
.related-posts {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #f0f0f4;
}

.related-posts__title {
  font-family: 'Montserrat', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

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

.related-post-card {
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f0f0f4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.related-post-card__img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.related-post-card__body {
  padding: 1rem;
}

.related-post-card__date {
  font-size: 0.7rem;
  color: var(--text-faint);
}

.related-post-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* ==========================================================================
   MEMBERSHIPS PAGE
   ========================================================================== */
.page-hero--memberships {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-lavender) 60%, var(--bg-lavender-deep) 100%);
}

.membership-how {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.membership-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.membership-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.membership-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.membership-step__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.membership-step__number {
  font-family: 'Montserrat', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(var(--brand-rgb), 0.2);
  position: absolute;
  top: 0.75rem;
  right: 1rem;
}

.membership-step__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.membership-step__text {
  font-size: 0.8rem;
  color: var(--text-subtle);
  line-height: 1.6;
}

/* Why Beauty Bank */
.membership-why {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: linear-gradient(160deg, var(--bg-cream) 0%, var(--bg-lavender) 50%, var(--bg-lavender-deep) 100%);
  border-top: 1px solid rgba(var(--brand-rgb), 0.08);
}

.membership-why .section__title {
  color: var(--text-dark);
}

.membership-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.membership-benefit {
  padding: 2.5rem 2rem;
  background: #FFFFFF;
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  border-radius: 18px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.membership-benefit:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  box-shadow: 0 8px 30px rgba(var(--brand-rgb), 0.1);
}

.membership-benefit__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.15), rgba(var(--brand-rgb), 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

.membership-benefit__title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.membership-benefit__text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Rewards Programs */
.membership-rewards {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.reward-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.reward-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.reward-card--featured {
  border-color: var(--brand);
  box-shadow: 0 8px 30px rgba(var(--brand-rgb), 0.1);
  position: relative;
}

.reward-card--featured::before {
  content: '★ Most Popular';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reward-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.reward-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.reward-card__text {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.reward-card__perks {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.reward-card__perk {
  font-size: 0.78rem;
  font-weight: 500;
  color: #2d6a4f;
}

.reward-card__downloads {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

/* ==========================================================================
   PARTIES PAGE
   ========================================================================== */
.page-hero--parties {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-lavender) 60%, var(--bg-lavender-deep) 100%);
}

.party-types {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.party-block {
  margin-bottom: 4rem;
}

.party-block__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.party-block__emoji {
  font-size: 2.5rem;
}

.party-block__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 1.5rem + 3vw, 4rem);
  align-items: start;
}

.party-block__grid--reverse {
  grid-template-columns: 1.2fr 0.8fr;
  direction: rtl;
}

.party-block__grid--reverse>* {
  direction: ltr;
}

.party-block__subtitle {
  font-family: 'Montserrat', serif;
  font-size: clamp(1.3rem, 1rem + 1.5vw, 1.8rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.party-block__text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.party-block__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.party-feature-card {
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-left: 3px solid var(--brand);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.party-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.party-feature-card__icon {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.party-feature-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.party-feature-card__text {
  font-size: 0.8rem;
  color: var(--text-subtle);
  line-height: 1.6;
}

/* Video */
.party-block__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-lavender);
}

.party-block__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.party-block__image-placeholder {
  width: 100%;
  min-height: 350px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bg-lavender), var(--bg-lavender-deep));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.party-block__image-placeholder span {
  font-size: 3rem;
}

.party-block__image-placeholder p {
  font-size: 0.8rem;
  color: rgba(var(--cream-rgb), 0.4);
}

/* Divider */
.party-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.party-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #e0ddd8, transparent);
}

.party-divider__text {
  font-family: 'Montserrat', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-faint);
}

/* How It Works */
.party-how-it-works {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: var(--bg-cream);
}

.party-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 3rem;
}

.party-step {
  flex: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.party-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.party-step__number {
  font-family: 'Montserrat', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.party-step__title {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.party-step__text {
  font-size: 0.8rem;
  color: var(--text-subtle);
  line-height: 1.6;
}

.party-step__arrow {
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
  font-size: 1.25rem;
  color: var(--brand);
  font-weight: 300;
}

/* FAQ */
.party-faq {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(var(--brand-rgb), 0.2);
  transform: translateY(-1px);
}

.faq-item[open] {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border-color: rgba(var(--brand-rgb), 0.3);
}

.faq-item__question {
  padding: 1.25rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--brand);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
}

.faq-item__answer p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ==========================================================================
   MISSION & VALUES PAGE
   ========================================================================== */
.mission-section {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

/* Mission Statement Quote */
.mission-statement {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.mission-statement__quote {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-dark);
  position: relative;
  padding: 2rem 0;
}

.mission-statement__quote::before,
.mission-statement__quote::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}

.mission-statement__quote::before {
  top: 0;
}

.mission-statement__quote::after {
  bottom: 0;
}

.mission-statement__author {
  display: block;
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

/* Mission Pillars */
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mission-pillar {
  background: #fff;
  border: 1px solid #f0f0f4;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mission-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(var(--brand-rgb), 0.2);
}

.mission-pillar:hover::before {
  opacity: 1;
}

.mission-pillar__icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.mission-pillar__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.5rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.mission-pillar__text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Section Divider */
.section-divider {
  padding: 0;
}

.section-divider__line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-rgb), 0.25), transparent);
}

/* Values Full Page Styles */
.values-full {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.values-detailed {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}

.value-detail {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #f0f0f4;
  align-items: start;
}

.value-detail:last-child {
  border-bottom: none;
}

.value-detail__number {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--brand);
  opacity: 0.5;
  line-height: 1;
  padding-top: 0.2rem;
}

.value-detail__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.65rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.value-detail__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1023px) {
  .site-header__nav {
    display: none;
  }

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

  .nav__cta-desktop {
    display: none;
  }

  .header__divider {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  .mega-menu {
    display: none !important;
  }

  .announcement-bar__close {
    right: 0.75rem;
  }

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

  .carousel__slide {
    width: calc(45% - 0.75rem);
  }

  .carousel__track {
    height: 420px;
  }

  /* Tablet: hide dots, keep arrows only + push nav clear of cards */
  .carousel__dots {
    display: none;
  }

  .carousel__nav {
    gap: 2rem;
    margin-top: 5.5rem;
  }

  .membership-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .membership-benefits {
    grid-template-columns: 1fr;
  }

  .rewards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .party-block__grid,
  .party-block__grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .party-steps {
    flex-wrap: wrap;
  }

  .party-step {
    flex: 1 1 calc(50% - 1rem);
  }

  .party-step__arrow {
    display: none;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .why-us__visual {
    min-height: 340px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .single-service__grid {
    grid-template-columns: 1fr;
  }

  .product-showcase__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-showcase__features {
    align-items: center;
  }

  .product-showcase__actions {
    justify-content: center;
  }

  .product-showcase__ring {
    width: 300px;
    height: 300px;
  }

  .product-showcase__image {
    width: 220px;
  }

  .supplements__layout {
    grid-template-columns: 1fr;
  }

  .client-portal__layout {
    grid-template-columns: 1fr;
  }

  .client-portal__phone-img {
    width: 240px;
  }

  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .team-member {
    grid-template-columns: 1fr;
  }

  .team-member--reverse {
    direction: ltr;
  }

  .team-member__image {
    min-height: 320px;
  }

  .team-member__info::before {
    display: none;
  }

  .team-card__placeholder--lg {
    height: 250px;
  }

  .mission-pillars {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto 3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .careers-perks {
    grid-template-columns: repeat(2, 1fr);
  }

  .position-card {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .announcement-bar__text {
    font-size: 0.65rem;
  }

  .announcement-bar__cta {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .carousel__slide {
    width: calc(80% - 0.75rem);
  }

  .carousel__track {
    height: 400px;
  }

  .carousel__slide.is-far-prev,
  .carousel__slide.is-far-next {
    opacity: 0;
  }

  /* Mobile nav: just show arrows, hide the dots */
  .carousel__dots {
    display: none;
  }

  .carousel__nav {
    gap: 2rem;
    margin-top: 6rem;
  }

  /* Hide scroll indicator — desktop-only hint */
  .hero__scroll-indicator {
    display: none;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: clamp(2.5rem, 2rem + 3vw, 4rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .cta-section__actions {
    flex-direction: column;
  }

  .cta-section__actions .btn {
    width: 100%;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__bottom .footer__inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .newsletter {
    flex-direction: column;
    text-align: center;
  }

  .newsletter__form {
    max-width: 100%;
    width: 100%;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .why-us__stat-card--1 {
    left: 0;
  }

  .why-us__stat-card--2 {
    right: 0;
  }

  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-detail {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .error-404__links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portal-section__card {
    padding: 2rem 1.5rem;
  }

  .announcement-bar {
    display: none;
  }
}

/* WP Admin bar — handled dynamically via JS */

/* ==========================================================================
   PERFORMANCE: Reduce motion for users who prefer it
   ========================================================================== */
@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__particle {
    display: none;
  }

  .product-showcase__ring {
    animation: none;
  }

  .product-showcase__image {
    animation: none;
  }

  .product-showcase__badge {
    animation: none;
  }

  .client-portal__phone-img {
    animation: none;
  }
}

/* ==========================================================================
   PERFORMANCE: Print styles
   ========================================================================== */
@media print {

  .site-header,
  .announcement-bar,
  .scroll-top,
  .mobile-menu,
  .mega-menu,
  .hero__particles,
  .product-showcase__glow,
  .client-portal__bg-glow,
  .floating-cta,
  .cookie-banner,
  .social-proof {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .site-main {
    padding-top: 0 !important;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.8em;
    color: #666;
  }
}

/* ==========================================================================
   FINANCING / PAYMENT PLANS
   ========================================================================== */
.cherry-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bg-cream);
}

.cherry-widget-wrap {
  margin-top: 2rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

/* Override Cherry widget font to match theme */
.cherry-widget-wrap * {
  font-family: 'Inter', 'Open Sans', sans-serif !important;
}

.financing-why {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--border-soft);
}

.financing-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.financing-benefit {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.financing-benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(var(--ink-rgb), 0.08);
}

.financing-benefit__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.financing-benefit__title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.financing-benefit__text {
  font-size: 0.85rem;
  color: var(--text-subtle);
  line-height: 1.65;
}

@media (max-width: 960px) {
  .financing-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   MEMBERSHIP TIERS — HWH Service Cards
   ========================================================================== */
.membership-tiers {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg-cream);
}

/* Tier cards grid */
.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-top: 1rem;
}

/* ── Individual Card ──────────────────────────────────────── */
.tier-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(var(--ink-rgb), 0.06);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(var(--ink-rgb), 0.12);
}

/* ── Card Image ───────────────────────────────────────────── */
.tier-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.tier-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tier-card:hover .tier-card__image img {
  transform: scale(1.05);
}

.tier-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(var(--ink-rgb), 0.5) 100%);
  pointer-events: none;
}

.tier-card__tier-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ── Card Body ────────────────────────────────────────────── */
.tier-card__body {
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tier-card__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tier-card__name {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 1.85rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.tier-card__name em {
  font-style: italic;
  color: var(--brand);
}

.tier-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.tier-card__price {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 1.6rem + 1.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.tier-card__currency {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--brand);
  vertical-align: super;
  margin-right: 1px;
}

.tier-card__cents {
  font-size: 0.4em;
  font-weight: 600;
  color: var(--text-subtle);
  vertical-align: super;
}

.tier-card__period {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-faint);
  font-weight: 500;
}

/* ── Perks List ───────────────────────────────────────────── */
.tier-card__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.tier-card__perk {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.tier-card__perk strong {
  color: var(--text-dark);
  font-weight: 700;
}

.tier-card__perk small {
  font-size: 0.78em;
  color: var(--text-faint);
}

.tier-card__perk-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ── CTA Button ───────────────────────────────────────────── */
.tier-card__btn {
  width: 100%;
  margin-top: 2rem;
}

/* ── Featured Card (Signature) ────────────────────────────── */
.tier-card--featured {
  border: 2px solid var(--brand);
  box-shadow: 0 8px 40px rgba(var(--brand-rgb), 0.18);
  transform: scale(1.03);
  z-index: 2;
}

.tier-card--featured:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 24px 64px rgba(var(--brand-rgb), 0.25);
}

.tier-card__popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  padding: 8px 24px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 16px rgba(var(--brand-rgb), 0.3);
}

/* ── Prestige Card styling ────────────────────────────────── */
.tier-card--prestige .tier-card__image-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(var(--ink-rgb), 0.65) 100%);
}

.tier-card__btn--prestige {
  border-color: var(--brand);
  color: var(--brand);
}

.tier-card__btn--prestige:hover {
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: #fff;
  border-color: transparent;
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.membership-compare {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--border-soft);
}

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 1.25rem;
  margin-top: 0.5rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  min-width: 540px;
}

.compare-table thead {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-pink-mid) 100%);
}

.compare-table th {
  font-family: 'Montserrat', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #FFFFFF;
  padding: 1.25rem 1.5rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.compare-table th:first-child {
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.compare-table td {
  padding: 1rem 1.5rem;
  text-align: center;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: rgba(var(--brand-rgb), 0.03);
}

/* Featured column highlight */
.compare-table__featured {
  background: rgba(var(--brand-rgb), 0.06);
  position: relative;
}

.compare-table thead .compare-table__featured {
  background: rgba(var(--brand-rgb), 0.15);
  color: var(--brand);
}

/* Tox Discount highlight row */
.compare-table__highlight {
  background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.04) 0%, rgba(var(--brand-rgb), 0.08) 50%, rgba(var(--brand-rgb), 0.04) 100%);
}

.compare-table__highlight td {
  color: var(--text-dark);
  font-weight: 700;
  border-top: 1px solid rgba(var(--brand-rgb), 0.15);
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.15);
}

.compare-table__highlight td:not(:first-child) {
  font-size: 1.1rem;
  color: var(--brand);
}

.compare-table__highlight td small {
  font-size: 0.65em;
  font-weight: 500;
  color: var(--text-faint);
  margin-left: 1px;
}

.compare-table__highlight td.compare-table__featured {
  background: rgba(var(--brand-rgb), 0.14);
}

.compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.12);
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 700;
}

.compare-dash {
  color: #d4d4de;
  font-size: 1.1rem;
}

/* ── Tier Cards Responsive ─────────────────────────────────── */
@media (max-width: 960px) {
  .tier-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .tier-card--featured {
    transform: none;
    order: -1;
  }

  .tier-card--featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 600px) {
  .tier-card__body {
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.85rem 1rem;
  }
}

/* ==========================================================================
   AI PREVIEW — Ageless Before/After Transformation
   ========================================================================== */
.ai-preview {
  width: 100%;
  padding: clamp(5rem, 10vw, 8.75rem) 0;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ai-preview::before,
.ai-preview::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.ai-preview::before {
  width: 500px;
  height: 500px;
  background: rgba(var(--brand-rgb), 0.08);
  top: -100px;
  right: -100px;
}

.ai-preview::after {
  width: 400px;
  height: 400px;
  background: rgba(146, 17, 212, 0.06);
  bottom: -80px;
  left: -80px;
}

.ai-preview__inner {
  position: relative;
  z-index: 1;
}

/* Two-column layout */
.ai-preview__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.ai-preview__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.ai-preview__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

/* ── Header ────────────────────────────────────────────────── */
.ai-preview__header {
  text-align: left;
  margin-bottom: 2rem;
}

.ai-preview__desc {
  font-size: clamp(0.9rem, 0.85rem + 0.2vw, 1rem);
  line-height: 1.8;
  color: var(--text-subtle);
  margin-top: 1.25rem;
}

.ai-preview__desc em {
  font-style: italic;
  color: var(--brand);
}

/* ── Carousel ──────────────────────────────────────────────── */
.ai-preview__carousel {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.ai-preview__stage {
  overflow: hidden;
  border-radius: 1.5rem;
}

.ai-preview__track {
  display: flex;
  will-change: transform;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
}

.ai-preview__slide {
  flex: 0 0 100%;
  width: 100%;
}

/* ── Card ──────────────────────────────────────────────────── */
.ai-preview__card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(var(--ink-rgb), 0.08);
}

/* ── Slider Image Area ─────────────────────────────────────── */
.ai-preview__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ai-preview__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.ai-preview__img--after {
  clip-path: inset(0 100% 0 0);
}

/* Labels */
.ai-preview__label {
  position: absolute;
  bottom: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
  pointer-events: none;
}

.ai-preview__label--before {
  left: 12px;
  background: rgba(var(--ink-rgb), 0.6);
  color: rgba(255, 255, 255, 0.9);
}

.ai-preview__label--after {
  right: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: #fff;
}

/* Scan divider line */
.ai-preview__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0%;
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-50%);
  z-index: 4;
  box-shadow: 0 0 12px rgba(var(--brand-rgb), 0.5),
              0 0 4px rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

/* ── Card Footer ───────────────────────────────────────────── */
.ai-preview__card-footer {
  padding: 1.15rem 1.5rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 1rem;
}

.ai-preview__name {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
  width: 100%;
}

.ai-preview__treatment {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex: 1;
}

/* AI badge — margin-left: auto pushes it right without a wrapper div */
.ai-preview__badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b5a89e;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  align-self: flex-end;
}

.ai-preview__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  flex-shrink: 0;
  animation: aiPulse 1.8s ease-in-out infinite;
}

@keyframes aiPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

/* ── Dots ───────────────────────────────────────────────────── */
.ai-preview__dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 1.25rem;
}

.ai-preview__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(var(--ink-rgb), 0.15);
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s ease;
  border: none;
  padding: 0;
}

.ai-preview__dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--brand), var(--brand-mid));
}

/* ── CTA ───────────────────────────────────────────────────── */
.ai-preview__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 0.5rem;
}

.ai-preview__cta-text {
  font-size: 0.95rem;
  color: var(--text-subtle);
  text-align: left;
  max-width: 440px;
  line-height: 1.7;
}

.ai-preview__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #b5a89e;
  font-weight: 500;
}

.ai-preview__trust svg {
  stroke: #b5a89e;
  flex-shrink: 0;
}

/* ── Powered-By Badge ──────────────────────────────────────── */
.ai-preview__powered {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b5a89e;
}

.ai-preview__powered-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  display: inline-block;
}

/* ── AI Preview Responsive ─────────────────────────────────── */
@media (max-width: 860px) {
  /* Use explicit flex column stack — display:contents is buggy on older iOS Safari */
  .ai-preview__layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .ai-preview__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 2;
  }

  .ai-preview__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
  }

  .ai-preview__header {
    text-align: center;
    margin-bottom: 0;
    width: 100%;
  }

  .ai-preview__carousel { margin: 0 auto; }

  .ai-preview__cta {
    align-items: center;
    margin-top: 1rem;
    width: 100%;
  }

  .ai-preview__powered { justify-content: center; }
  .ai-preview__dots { justify-content: center; }
  .ai-preview__cta-text { text-align: center; }
}

@media (max-width: 600px) {
  .ai-preview { padding: 3rem 0; }
  .ai-preview__stage { border-radius: 1rem; }
  .ai-preview__card { border-radius: 1rem; }
  .ai-preview__cta .btn { width: 100%; justify-content: center; }

  /* Cap the carousel to a comfortable phone size */
  .ai-preview__carousel {
    max-width: 300px;
    width: 100%;
  }

  /* Shorter aspect ratio so the photo doesn't dominate the screen */
  .ai-preview__slider {
    aspect-ratio: 3 / 3.5;
  }

  /* Tighten card footer padding */
  .ai-preview__card-footer {
    padding: 0.85rem 1rem 1rem;
  }
}

/* ==========================================================================
   LEGAL PAGES (Privacy Policy, Terms, etc.)
   ========================================================================== */
.legal-page {
  padding: clamp(3rem, 2rem + 4vw, 6rem) 0 clamp(4rem, 3rem + 4vw, 7rem);
  background: var(--bg-cream);
}

.legal-page__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
}

.legal-page__intro {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--brand);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.legal-page__intro p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-page__intro p:last-child { margin-bottom: 0; }

.legal-page__toc {
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-lavender));
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  border-left: 4px solid var(--brand);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}

.legal-page__toc h2 {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.25rem;
}

.legal-page__toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

.legal-page__toc ol li {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.legal-page__toc ol li a {
  color: var(--surface-card);
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-page__toc ol li a:hover { color: var(--brand); }

.legal-page__summary {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.legal-page__summary h2 {
  font-size: clamp(1.3rem, 1rem + 1.2vw, 1.7rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.legal-page__summary p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-page__summary ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-page__summary ul li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.legal-page__summary ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

/* Legal body sections */
.legal-page__body section {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.1);
}

.legal-page__body section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-page__body h2 {
  font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(var(--brand-rgb), 0.15);
}

.legal-page__body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1.5rem 0 0.5rem;
}

.legal-page__body p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-page__body ul,
.legal-page__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page__body ul { list-style: disc; }
.legal-page__body ol { list-style: decimal; }

.legal-page__body li {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.legal-page__body a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page__body a:hover { color: var(--brand-mid); }

/* Legal table */
.legal-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  background: #fff;
}

.legal-table th {
  background: linear-gradient(135deg, var(--brand), var(--brand-pink-mid));
  color: #FFFFFF;
  padding: 0.85rem 1rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.legal-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f0f0f4;
  color: var(--text-body);
  line-height: 1.5;
  vertical-align: top;
}

.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:nth-child(even) td { background: #faf9fc; }
.legal-table__yes { color: var(--brand); font-weight: 700; text-align: center; }

/* Address block */
.legal-address {
  font-style: normal;
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
  display: inline-block;
  border-left: 3px solid var(--brand);
  margin-top: 0.5rem;
}

/* Blockquote */
.legal-quote {
  background: rgba(var(--brand-rgb), 0.05);
  border-left: 3px solid var(--brand);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .legal-page__toc ol { grid-template-columns: 1fr; }
  .legal-page__intro,
  .legal-page__toc,
  .legal-page__summary { padding: 1.5rem; }
}

/* ==========================================================================
   CANCELLATION POLICY PAGE
   ========================================================================== */

/* Alert notice at top */
.cancellation-notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #2d0a0a, #3d1010) !important;
  border-left-color: var(--color-error) !important;
  color: #fed7d7;
}

.cancellation-notice svg {
  flex-shrink: 0;
  color: #fc8181;
}

.cancellation-notice p {
  color: #fed7d7 !important;
  font-size: 1rem !important;
  margin: 0 !important;
  letter-spacing: 0.02em;
}

/* Policy cards grid */
.cancellation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.cancellation-card {
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid transparent;
}

.cancellation-card__icon {
  font-size: 1.75rem;
  line-height: 1;
}

.cancellation-card__body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: inherit;
  margin: 0 0 0.35rem;
}

.cancellation-card__body p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 !important;
  color: inherit;
  opacity: 0.85;
}

/* Warn — 50% */
.cancellation-card--warn {
  background: #fff8e1;
  border-color: #f6d860;
  color: #7a5c00;
}

/* Danger — 100% / No-show */
.cancellation-card--danger {
  background: #fff0f0;
  border-color: #fc8181;
  color: #7a0000;
}

/* Info — Repeat / Prepay */
.cancellation-card--info {
  background: #f3f0ff;
  border-color: var(--brand);
  color: #4a0080;
}

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

/* ==========================================================================
   REFUND POLICY PAGE
   ========================================================================== */
.refund-policy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.refund-policy-card {
  background: #fff0f0;
  border: 1px solid #fc8181;
  border-radius: 14px;
  padding: 1.5rem;
  color: #7a0000;
}

.refund-policy-card--positive {
  background: #f0fff4;
  border-color: var(--color-success);
  color: #1a4731;
}

.refund-policy-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.refund-policy-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: inherit;
}

.refund-policy-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0 !important;
  color: inherit;
  opacity: 0.85;
}

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

/* ==========================================================================
   BEAUTY BANK PAGE
   ========================================================================== */
.maint-plan-hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-lavender) 60%, var(--bg-lavender-deep) 100%);
}

.maint-plan-section {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
}

.maint-plan-how {
  background: var(--bg-cream);
}

/* Steps */
.maint-plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.maint-plan-step {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maint-plan-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--brand-rgb), 0.1);
}

.maint-plan-step__num {
  font-family: 'Montserrat', serif;
  font-size: 3.5rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--brand), var(--brand-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.maint-plan-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.maint-plan-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Benefits */
.maint-plan-benefits {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-lavender) 100%);
  border-top: 1px solid rgba(var(--brand-rgb), 0.08);
}

.maint-plan-benefits .section__label { color: var(--brand); }
.maint-plan-benefits .section__title { color: var(--text-dark); }

.maint-plan-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.maint-plan-benefit {
  background: #FFFFFF;
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.maint-plan-benefit:hover {
  background: #FFFFFF;
  border-color: rgba(var(--brand-rgb), 0.35);
  box-shadow: 0 8px 30px rgba(var(--brand-rgb), 0.1);
}

.maint-plan-benefit__icon {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 1rem;
}

.maint-plan-benefit h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.maint-plan-benefit p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Policy Cards */
.maint-plan-policy {
  background: var(--bg-cream);
}

.maint-plan-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.maint-plan-policy-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  border-top: 3px solid var(--brand);
  transition: transform 0.3s ease;
}

.maint-plan-policy-card:hover {
  transform: translateY(-3px);
}

.maint-plan-policy-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.maint-plan-policy-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.maint-plan-policy-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.maint-plan-policy-card li {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}

.maint-plan-policy-card li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 960px) {
  .maint-plan-steps,
  .maint-plan-benefit-grid { grid-template-columns: 1fr 1fr; }
  .maint-plan-policy-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .maint-plan-steps,
  .maint-plan-benefit-grid,
  .maint-plan-policy-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   DEAL POPUP
   ========================================================================== */
.deal-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.deal-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.deal-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--dark-rgb), 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.deal-popup__modal {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 24px;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 460px;
  width: 100%;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(var(--brand-rgb), 0.1);
  text-align: center;
  transform: scale(0.88) translateY(24px);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.deal-popup.is-open .deal-popup__modal {
  transform: scale(1) translateY(0);
}

.deal-popup__glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(var(--brand-rgb), 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.deal-popup__close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 3;
  flex-shrink: 0;
}

.deal-popup__close:hover {
  background: rgba(var(--brand-rgb), 0.1);
  color: var(--brand);
}

.deal-popup__content {
  position: relative;
  z-index: 2;
}

.deal-popup__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: rgba(var(--brand-rgb), 0.08);
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  border-radius: 9999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 1.25rem;
}

.deal-popup__title {
  font-family: 'Montserrat', serif;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.deal-popup__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.deal-popup__code-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: var(--bg-cream);
  border: 1.5px dashed rgba(var(--brand-rgb), 0.28);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.deal-popup__code-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9A8C9E;
}

.deal-popup__code {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand);
}

.deal-popup__copy {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.deal-popup__copy:hover { background: var(--brand-dark); }

.deal-popup__btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 1rem;
}

.deal-popup__fine {
  font-size: 0.7rem;
  color: #C0B4CA;
  margin: 0;
}

@media (max-width: 480px) {
  .deal-popup__modal {
    padding: 2.5rem 1.5rem 2rem;
    border-radius: 20px;
  }
}


/* ==========================================================================
   HWH HOMEPAGE v3 — Bold Navy & Red Design System
   ========================================================================== */

/* Shared Utilities */
.hwh-section-inner{max-width:1280px;margin:0 auto;padding:0 clamp(1.25rem,1rem + 2vw,3rem)}.hwh-center{text-align:center}.hwh-section-header{text-align:center;margin-bottom:3.5rem}.hwh-section-header--light{color:#fff}.hwh-label{display:inline-block;font-family:'Inter',sans-serif;font-size:.65rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:#F22F3A;margin-bottom:1rem}.hwh-label--red{color:#F22F3A}.hwh-label--white{color:rgba(255,255,255,.6)}.hwh-section-title{font-family:'Montserrat',serif;font-size:clamp(2rem,1.5rem + 2.5vw,3.2rem);font-weight:800;line-height:1.1;color:#0F2440;margin-bottom:1rem}.hwh-section-title em{color:#F22F3A;font-style:normal}.hwh-section-title--white{color:#fff}.hwh-section-title--white em{color:#F22F3A}.hwh-section-desc{font-size:clamp(.95rem,.85rem + .3vw,1.05rem);color:#3D6491;max-width:580px;margin:0 auto;line-height:1.7}.hwh-section-desc--muted{color:rgba(255,255,255,.6)}
/* HWH Buttons */
.hwh-btn{display:inline-flex;align-items:center;gap:.5rem;padding:.9rem 2rem;font-family:'Inter',sans-serif;font-size:.82rem;font-weight:700;letter-spacing:.04em;text-decoration:none;border-radius:9999px;border:2px solid transparent;cursor:pointer;transition:all .3s ease;white-space:nowrap}
.hwh-btn--lg{padding:1.05rem 2.4rem;font-size:.9rem}
.hwh-btn--red{background:#F22F3A;color:#fff;border-color:#F22F3A;box-shadow:0 6px 24px rgba(242,47,58,.35)}
.hwh-btn--red:hover{background:#AF2D37;border-color:#AF2D37;transform:translateY(-2px);box-shadow:0 10px 32px rgba(242,47,58,.45);color:#fff}
.hwh-btn--navy{background:#0F2440;color:#fff;border-color:#0F2440}
.hwh-btn--navy:hover{background:#18375D;transform:translateY(-2px);color:#fff}
.hwh-btn--ghost{background:transparent;color:rgba(255,255,255,.9);border-color:rgba(255,255,255,.35)}
.hwh-btn--ghost:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.7);color:#fff;transform:translateY(-2px)}
.hwh-btn--white{background:#fff;color:#F22F3A;border-color:#fff;font-weight:800}
.hwh-btn--white:hover{background:#f0f0f0;transform:translateY(-2px);color:#AF2D37}
.hwh-btn--ghost-white{background:transparent;color:#fff;border-color:rgba(255,255,255,.5)}
.hwh-btn--ghost-white:hover{background:rgba(255,255,255,.1);border-color:#fff;color:#fff;transform:translateY(-2px)}

/* HWH Hero */
.hwh-hero{position:relative;min-height:100vh;background:#0A1628;overflow:hidden;display:flex;align-items:center;padding:10rem 0 6rem}
.hwh-hero__overlay{position:absolute;inset:0;background:radial-gradient(ellipse 60% 50% at 70% 50%,rgba(242,47,58,.12) 0%,transparent 70%),radial-gradient(ellipse 40% 60% at 20% 80%,rgba(24,55,93,.6) 0%,transparent 60%);pointer-events:none}
.hwh-hero__grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);background-size:60px 60px;pointer-events:none}
.hwh-hero__inner{position:relative;z-index:2;max-width:1280px;margin:0 auto;padding:0 clamp(1.25rem,1rem + 2vw,3rem);display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:4rem}
.hwh-hero__eyebrow{display:flex;align-items:center;gap:.6rem;font-family:'Inter',sans-serif;font-size:.72rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.55);margin-bottom:1.5rem}
.hwh-hero__dot{width:8px;height:8px;background:#F22F3A;border-radius:50%;box-shadow:0 0 12px rgba(242,47,58,.8);animation:hwh-pulse 1.8s ease infinite;flex-shrink:0}
@keyframes hwh-pulse{0%,100%{box-shadow:0 0 8px rgba(242,47,58,.8)}50%{box-shadow:0 0 20px rgba(242,47,58,1),0 0 40px rgba(242,47,58,.4)}}
.hwh-hero__title{font-family:'Montserrat',serif;font-size:clamp(2.8rem,2rem + 4vw,5.5rem);font-weight:900;line-height:1.0;color:#fff;margin-bottom:1.5rem;letter-spacing:-.02em}
.hwh-hero__title-accent{color:#F22F3A;display:block}
.hwh-hero__sub{font-size:clamp(1rem,.9rem + .3vw,1.15rem);color:rgba(255,255,255,.7);line-height:1.75;margin-bottom:2.5rem;max-width:520px}
.hwh-hero__actions{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.5rem}
.hwh-hero__trust{display:flex;flex-wrap:wrap;gap:.5rem 1.5rem}
.hwh-hero__trust-item{font-family:'Inter',sans-serif;font-size:.78rem;font-weight:600;color:rgba(255,255,255,.6);letter-spacing:.02em}
.hwh-hero__visual{position:relative}
.hwh-hero__img-wrap{position:relative;z-index:1}
.hwh-hero__img-wrap img{width:100%;max-width:520px;height:auto;filter:drop-shadow(0 20px 60px rgba(0,0,0,.5));margin:0 auto}
.hwh-hero__card{position:absolute;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);backdrop-filter:blur(12px);border-radius:14px;padding:.85rem 1.2rem;display:flex;align-items:center;gap:.8rem;z-index:2;animation:hwh-float 4s ease-in-out infinite}
.hwh-hero__card strong{display:block;font-size:.8rem;font-weight:700;color:#fff;line-height:1.2}
.hwh-hero__card span:not(.hwh-hero__card-icon){font-size:.68rem;color:rgba(255,255,255,.55)}
.hwh-hero__card-icon{font-size:1.4rem}
.hwh-hero__card--1{top:10%;left:-10%;animation-delay:0s}
.hwh-hero__card--2{top:45%;right:-8%;animation-delay:1.3s}
.hwh-hero__card--3{bottom:12%;left:-6%;animation-delay:2.5s}
@keyframes hwh-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

/* HWH Stats */
.hwh-stats{background:#F22F3A;padding:2rem 0}
.hwh-stats__inner{max-width:1280px;margin:0 auto;padding:0 clamp(1.25rem,1rem + 2vw,3rem);display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:0}
.hwh-stat-item{display:flex;flex-direction:column;align-items:center;padding:.5rem 3rem;text-align:center}
.hwh-stat-item__num{font-family:'Montserrat',serif;font-size:clamp(2rem,1.5rem + 1.5vw,2.8rem);font-weight:900;color:#fff;line-height:1}
.hwh-stat-item__label{font-size:.72rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.75);margin-top:.3rem}
.hwh-stat-item__div{width:1px;height:40px;background:rgba(255,255,255,.25);flex-shrink:0}

/* HWH Services */
.hwh-services{padding:7rem 0;background:#F8F9FB}
.hwh-services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.hwh-service-card{background:#fff;border:1.5px solid #E5EBF5;border-radius:18px;padding:2.2rem 2rem;display:flex;flex-direction:column;gap:.75rem;transition:all .35s ease;position:relative;overflow:hidden}
.hwh-service-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#F22F3A,#F0595F);transform:scaleX(0);transform-origin:left;transition:transform .35s ease}
.hwh-service-card:hover{border-color:#F22F3A;transform:translateY(-4px);box-shadow:0 16px 48px rgba(0,0,0,.1)}
.hwh-service-card:hover::before{transform:scaleX(1)}
.hwh-service-card__img{width:100%;aspect-ratio:16/10;overflow:hidden;border-radius:12px;margin-bottom:.75rem}
.hwh-service-card__img img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.hwh-service-card:hover .hwh-service-card__img img{transform:scale(1.05)}
.hwh-service-card__icon{font-size:2.2rem}
.hwh-service-card__title{font-family:'Montserrat',serif;font-size:.92rem;font-weight:800;color:#0F2440;line-height:1.2}
.hwh-service-card__text{font-size:.88rem;color:#3D6491;line-height:1.65;flex:1}
.hwh-service-card__price{font-size:.78rem;font-weight:700;color:#F22F3A;letter-spacing:.04em}
.hwh-service-card__link{font-size:.82rem;font-weight:700;color:#F22F3A;text-decoration:none;display:inline-block;margin-top:.25rem;transition:letter-spacing .2s ease}
.hwh-service-card:hover .hwh-service-card__link{letter-spacing:.04em}

/* HWH Process */
.hwh-process{padding:7rem 0;background:#0F2440}
.hwh-process-steps{display:flex;align-items:flex-start;gap:0;margin-top:1rem}
.hwh-process-step{flex:1;display:flex;flex-direction:column;align-items:center;text-align:center;padding:0 1.5rem}
.hwh-process-step__num{font-family:'Montserrat',serif;font-size:4rem;font-weight:900;color:rgba(242,47,58,.35);line-height:1;margin-bottom:.25rem}
.hwh-process-step__icon{font-size:1.6rem;margin-bottom:1rem;position:relative;z-index:1;width:64px;height:64px;background:rgba(242,47,58,.15);border:1.5px solid rgba(242,47,58,.3);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff}
.hwh-process-step__title{font-family:'Montserrat',serif;font-size:1rem;font-weight:800;color:#fff;margin-bottom:.6rem}
.hwh-process-step__text{font-size:.84rem;color:rgba(255,255,255,.55);line-height:1.65}
.hwh-process-connector{flex-shrink:0;position:relative;top:80px;width:60px}
.hwh-process-connector::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,rgba(242,47,58,.5),rgba(242,47,58,.1))}

/* HWH Why */
.hwh-why{padding:7rem 0;background:#fff}
.hwh-why__grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.hwh-why__list{display:flex;flex-direction:column;gap:1.5rem;margin:2rem 0;list-style:none;padding:0}
.hwh-why__item{display:flex;gap:1rem;align-items:flex-start}
.hwh-why__check{width:28px;height:28px;background:#F22F3A;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:900;flex-shrink:0;margin-top:2px}
.hwh-why__item strong{display:block;font-size:.95rem;font-weight:800;color:#0F2440;margin-bottom:.2rem}
.hwh-why__item p{font-size:.85rem;color:#3D6491;line-height:1.6;margin:0}
.hwh-why__stats{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem}
.hwh-why__stat-card{background:#F8F9FB;border:1.5px solid #E5EBF5;border-radius:18px;padding:2rem 1.5rem;text-align:center;transition:all .3s ease}
.hwh-why__stat-card:hover{border-color:#F22F3A;transform:translateY(-3px)}
.hwh-why__stat-card--accent{background:#F22F3A;border-color:#F22F3A}
.hwh-why__stat-card--accent .hwh-why__stat-num,.hwh-why__stat-card--accent .hwh-why__stat-lbl{color:#fff}
.hwh-why__stat-num{display:block;font-family:'Montserrat',serif;font-size:clamp(2rem,1.5rem + 1.5vw,2.8rem);font-weight:900;color:#0F2440;line-height:1;margin-bottom:.4rem}
.hwh-why__stat-lbl{font-size:.72rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:#3D6491}

/* HWH Reviews */
.hwh-reviews{padding:7rem 0;background:linear-gradient(135deg,#0A1628 0%,#0F2440 40%,#12213D 70%,#1a1020 100%)}
.hwh-reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:1rem}
.hwh-review-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:18px;padding:2rem;display:flex;flex-direction:column;gap:1rem;transition:all .3s ease}
.hwh-review-card:hover{background:rgba(255,255,255,.08);border-color:rgba(242,47,58,.4);transform:translateY(-4px)}
.hwh-review-card__stars{color:#F5C542;font-size:1.1rem;letter-spacing:.1em}
.hwh-review-card__text{font-size:.9rem;color:rgba(255,255,255,.75);line-height:1.75;flex:1;font-style:italic}
.hwh-review-card__author strong{display:block;font-size:.85rem;font-weight:700;color:#fff}
.hwh-review-card__author span{font-size:.72rem;color:rgba(255,255,255,.4)}
.hwh-google-badge{display:inline-flex;align-items:center;gap:.75rem;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);border-radius:9999px;padding:.7rem 1.8rem;color:rgba(255,255,255,.7);font-size:.82rem;font-weight:600}

/* HWH Areas */
.hwh-areas{padding:7rem 0;background:#F8F9FB}
.hwh-areas__grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.hwh-areas__cities{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;margin:2rem 0}
.hwh-areas__city{font-size:.88rem;font-weight:600;color:#18375D;padding:.6rem 1rem;background:#fff;border:1.5px solid #E5EBF5;border-radius:10px;transition:all .25s ease;display:block}
.hwh-areas__city:hover{border-color:#F22F3A;color:#F22F3A}
.hwh-areas__visual{position:relative}
.hwh-areas__map{width:100%;border-radius:20px;box-shadow:0 20px 60px rgba(0,0,0,.1)}
.hwh-areas__badge{position:absolute;bottom:-1rem;right:-1rem;background:#F22F3A;color:#fff;border-radius:14px;padding:.9rem 1.4rem;font-size:.82rem;font-weight:700;display:flex;align-items:center;gap:.5rem;box-shadow:0 8px 24px rgba(242,47,58,.4)}

/* HWH CTA */
.hwh-cta{padding:7rem 0;background:#F22F3A;position:relative;overflow:hidden}
.hwh-cta::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 80% at 80% 50%,rgba(0,0,0,.15) 0%,transparent 60%),radial-gradient(ellipse 40% 60% at 10% 30%,rgba(255,255,255,.08) 0%,transparent 50%);pointer-events:none}
.hwh-cta__inner{position:relative;z-index:1;max-width:1100px;margin:0 auto;padding:0 clamp(1.25rem,1rem + 2vw,3rem);display:flex;align-items:center;justify-content:space-between;gap:3rem;flex-wrap:wrap}

/* ==========================================================================
   HWH FOOTER v3 — Clean dark navy, no emergency bar
   ========================================================================== */
.hwh-foot { background: #0A1628; color: rgba(255,255,255,0.7); font-family: 'Inter', sans-serif; }

/* Main body */
.hwh-foot__main { padding: 5rem 0 4rem; }
.hwh-foot__inner { max-width:1280px; margin:0 auto; padding:0 clamp(1.25rem,1rem + 2vw,3rem); display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:3.5rem; }

/* Brand col */
.hwh-foot__logo img { height:auto; width:auto; margin-bottom:1.25rem; }
.hwh-foot__brand-text { font-size:.85rem; line-height:1.75; color:rgba(255,255,255,.55); margin-bottom:1.5rem; }
.hwh-foot__social { display:flex; gap:.6rem; margin-bottom:1.25rem; }
.hwh-foot__social-link { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.55); transition:all .25s ease; }
.hwh-foot__social-link:hover { background:#F22F3A; border-color:#F22F3A; color:#fff; transform:translateY(-2px); }
.hwh-foot__rating { display:flex; align-items:center; gap:.6rem; font-size:.78rem; color:rgba(255,255,255,.5); }
.hwh-foot__stars { color:#F5C542; letter-spacing:.05em; font-size:.9rem; }

/* Nav cols */
.hwh-foot__heading { font-family:'Montserrat',serif; font-size:.65rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:#F22F3A; margin-bottom:1.25rem; }
.hwh-foot__links { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.6rem; }
.hwh-foot__links a { font-size:.85rem; color:rgba(255,255,255,.55); text-decoration:none; transition:all .2s ease; display:inline-flex; align-items:center; gap:.35rem; }
.hwh-foot__links a:hover { color:#fff; transform:translateX(3px); }

/* Contact col */
.hwh-foot__contact { display:flex; flex-direction:column; gap:.9rem; }
.hwh-foot__contact-item { display:flex; align-items:center; gap:.75rem; font-size:.84rem; color:rgba(255,255,255,.55); }
.hwh-foot__contact-item svg { flex-shrink:0; color:#F22F3A; opacity:.8; }
.hwh-foot__contact-item a { color:rgba(255,255,255,.75); text-decoration:none; transition:color .2s ease; font-weight:600; }
.hwh-foot__contact-item a:hover { color:#fff; }

/* Bottom bar */
.hwh-foot__bottom { border-top:1px solid rgba(255,255,255,.06); padding:1.5rem 0; }
.hwh-foot__bottom-inner { max-width:1280px; margin:0 auto; padding:0 clamp(1.25rem,1rem + 2vw,3rem); display:flex; align-items:center; justify-content:space-between; gap:1.5rem; flex-wrap:wrap; }
.hwh-foot__copyright { font-size:.75rem; color:rgba(255,255,255,.3); margin:0; }
.hwh-foot__legal { display:flex; gap:1.5rem; flex-wrap:wrap; }
.hwh-foot__legal a { font-size:.75rem; color:rgba(255,255,255,.3); text-decoration:none; transition:color .2s ease; }
.hwh-foot__legal a:hover { color:rgba(255,255,255,.7); }

/* Responsive */
@media(max-width:1024px) { .hwh-foot__inner { grid-template-columns:1fr 1fr; gap:2.5rem; } }
@media(max-width:640px) {
  .hwh-foot__inner { grid-template-columns:1fr; gap:2rem; }
  .hwh-foot__bottom-inner { flex-direction:column; text-align:center; }
  .hwh-foot__legal { justify-content:center; }
}
.hwh-cta__title{font-family:'Montserrat',serif;font-size:clamp(2rem,1.5rem + 2.5vw,3.5rem);font-weight:900;color:#fff;line-height:1.05;margin-bottom:1rem;letter-spacing:-.02em}
.hwh-cta__text{font-size:1rem;color:rgba(255,255,255,.8);line-height:1.65;max-width:420px}
.hwh-cta__actions{display:flex;flex-direction:column;gap:1rem;flex-shrink:0}

/* HWH Responsive */
@media(max-width:1024px){
  .hwh-hero__inner{grid-template-columns:1fr;text-align:center}
  .hwh-hero__visual{display:none}
  .hwh-hero__trust,.hwh-hero__actions{justify-content:center}
  .hwh-hero__sub{margin-left:auto;margin-right:auto}
  .hwh-services-grid{grid-template-columns:repeat(2,1fr)}
  .hwh-process-steps{flex-direction:column;align-items:center;gap:2.5rem}
  .hwh-process-connector{display:none}
  .hwh-why__grid,.hwh-areas__grid{grid-template-columns:1fr;gap:3rem}
  .hwh-reviews-grid{grid-template-columns:repeat(2,1fr)}
  .hwh-cta__inner{flex-direction:column;text-align:center}
  .hwh-cta__actions{flex-direction:row;justify-content:center}
  .hwh-cta__text{margin:0 auto}
}
@media(max-width:640px){
  .hwh-services-grid,.hwh-reviews-grid{grid-template-columns:1fr}
  .hwh-stats__inner{flex-direction:column;gap:1.5rem}
  .hwh-stat-item__div{display:none}
  .hwh-areas__cities{grid-template-columns:1fr}
  .hwh-why__stats{grid-template-columns:1fr 1fr}
  .hwh-cta__actions{flex-direction:column;align-items:center}
}

/* ==========================================================================
   HWH FOOTER v2
   ========================================================================== */
.hwh-footer { background: #0A1628; color: rgba(255,255,255,0.7); font-family: 'Inter', sans-serif; margin-top: 0; padding-top: 0; position: relative; z-index: 1; border-top: none; }

/* Emergency bar */
.hwh-footer__emergency { background: #F22F3A; padding: .9rem 0; }
.hwh-footer__emergency-inner { max-width:1280px; margin:0 auto; padding:0 clamp(1.25rem,1rem + 2vw,3rem); display:flex; align-items:center; gap:1rem; flex-wrap:wrap; font-size:.82rem; font-weight:600; color:#fff; }
.hwh-footer__emergency-dot { width:8px; height:8px; background:#fff; border-radius:50%; animation:hwh-pulse 1.8s ease infinite; flex-shrink:0; }
.hwh-footer__emergency-sep { opacity:.5; }
.hwh-footer__emergency-btn { margin-left:auto; background:#fff; color:#F22F3A; padding:.45rem 1.2rem; border-radius:9999px; font-size:.78rem; font-weight:800; text-decoration:none; transition:all .25s ease; white-space:nowrap; }
.hwh-footer__emergency-btn:hover { background:#f0f0f0; transform:translateY(-1px); color:#AF2D37; }

/* Main body */
.hwh-footer__main { padding:5rem 0 4rem; }
.hwh-footer__inner { max-width:1280px; margin:0 auto; padding:0 clamp(1.25rem,1rem + 2vw,3rem); display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:3.5rem; }

/* Brand col */
.hwh-footer__logo img { height:auto; width:auto; margin-bottom:1.25rem; }
.hwh-footer__brand-text { font-size:.85rem; line-height:1.75; color:rgba(255,255,255,.55); margin-bottom:1.5rem; }
.hwh-footer__social { display:flex; gap:.6rem; margin-bottom:1.25rem; }
.hwh-footer__social-link { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.55); transition:all .25s ease; }
.hwh-footer__social-link:hover { background:#F22F3A; border-color:#F22F3A; color:#fff; transform:translateY(-2px); }
.hwh-footer__rating { display:flex; align-items:center; gap:.6rem; font-size:.78rem; color:rgba(255,255,255,.5); }
.hwh-footer__stars { color:#F5C542; letter-spacing:.05em; font-size:.9rem; }

/* Nav cols */
.hwh-footer__heading { font-family:'Montserrat',serif; font-size:.65rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:#F22F3A; margin-bottom:1.25rem; }
.hwh-footer__links { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:.6rem; }
.hwh-footer__links a { font-size:.85rem; color:rgba(255,255,255,.55); text-decoration:none; transition:all .2s ease; display:inline-flex; align-items:center; gap:.35rem; }
.hwh-footer__links a:hover { color:#fff; transform:translateX(3px); }

/* Contact col */
.hwh-footer__contact { display:flex; flex-direction:column; gap:.9rem; }
.hwh-footer__contact-item { display:flex; align-items:center; gap:.75rem; font-size:.84rem; color:rgba(255,255,255,.55); }
.hwh-footer__contact-item svg { flex-shrink:0; color:#F22F3A; opacity:.8; }
.hwh-footer__contact-item a { color:rgba(255,255,255,.75); text-decoration:none; transition:color .2s ease; font-weight:600; }
.hwh-footer__contact-item a:hover { color:#fff; }

/* Bottom bar */
.hwh-footer__bottom { border-top:1px solid rgba(255,255,255,.06); padding:1.5rem 0; }
.hwh-footer__bottom-inner { max-width:1280px; margin:0 auto; padding:0 clamp(1.25rem,1rem + 2vw,3rem); display:flex; align-items:center; justify-content:space-between; gap:1.5rem; flex-wrap:wrap; }
.hwh-footer__copyright { font-size:.75rem; color:rgba(255,255,255,.3); margin:0; }
.hwh-footer__legal { display:flex; gap:1.5rem; flex-wrap:wrap; }
.hwh-footer__legal a { font-size:.75rem; color:rgba(255,255,255,.3); text-decoration:none; transition:color .2s ease; }
.hwh-footer__legal a:hover { color:rgba(255,255,255,.7); }

/* Responsive */
@media(max-width:1024px) { .hwh-footer__inner { grid-template-columns:1fr 1fr; gap:2.5rem; } }
@media(max-width:640px) {
  .hwh-footer__inner { grid-template-columns:1fr; gap:2rem; }
  .hwh-footer__emergency-btn { margin-left:0; }
  .hwh-footer__bottom-inner { flex-direction:column; text-align:center; }
  .hwh-footer__legal { justify-content:center; }
}

/* ==========================================================================
   HWH HEADER v2 — Two-Layer Design
   ========================================================================== */

/* ── Top bar ─────────────────────────────────────────────────────── */
.hwh-topbar { background: #0F2440; height: 40px; overflow: hidden; transition: height .3s ease, opacity .3s ease; }
/* topbar always visible */
.hwh-topbar__inner { max-width:1280px; margin:0 auto; padding:0 clamp(1.25rem,1rem + 2vw,3rem); display:flex; align-items:center; justify-content:space-between; height:100%; gap:1.5rem; }
.hwh-topbar__left { display:flex; align-items:center; gap:.75rem; flex-shrink:0; }
.hwh-topbar__right { display:flex; align-items:center; gap:.6rem; flex-shrink:0; }
.hwh-topbar__item { display:flex; align-items:center; gap:.4rem; font-family:'Inter',sans-serif; font-size:.7rem; font-weight:500; color:rgba(255,255,255,.65); white-space:nowrap; text-decoration:none; transition:color .2s ease; }
.hwh-topbar__item--phone { color:#fff; font-weight:700; }
.hwh-topbar__item--phone:hover { color:#F22F3A; }
.hwh-topbar__item--live { color:rgba(255,255,255,.7); }
.hwh-topbar__sep { color:rgba(255,255,255,.2); font-size:.75rem; }
.hwh-topbar__dot { width:6px; height:6px; background:#4ade80; border-radius:50%; animation:hwh-pulse 2s ease infinite; display:inline-block; }

/* Search form */
.hwh-topbar__search { display:flex; align-items:center; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); border-radius:9999px; overflow:hidden; transition:all .25s ease; }
.hwh-topbar__search:focus-within { background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.25); }
.hwh-topbar__search-input { background:transparent; border:none; outline:none; padding:.25rem .75rem; font-family:'Inter',sans-serif; font-size:.7rem; color:#fff; width:160px; }
.hwh-topbar__search-input::placeholder { color:rgba(255,255,255,.4); }
.hwh-topbar__search-btn { background:transparent; border:none; cursor:pointer; padding:.25rem .6rem .25rem 0; color:rgba(255,255,255,.5); display:flex; align-items:center; transition:color .2s ease; }
.hwh-topbar__search-btn:hover { color:#F22F3A; }
.hwh-topbar__social { color:rgba(255,255,255,.5); transition:color .2s ease; display:flex; align-items:center; padding:.2rem; }
.hwh-topbar__social:hover { color:#F22F3A; }

/* ── Nav bar ─────────────────────────────────────────────────────── */
.hwh-nav-bar { background:rgba(255,255,255,.97); backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px); box-shadow:0 2px 20px rgba(0,0,0,.07); padding:.85rem 0; transition:padding .3s ease, box-shadow .3s ease; }
.hwh-header.is-scrolled .hwh-nav-bar { padding:.6rem 0; box-shadow:0 4px 30px rgba(0,0,0,.1); }
.hwh-nav-bar__inner { max-width:1280px; margin:0 auto; padding:0 clamp(1.25rem,1rem + 2vw,3rem); display:flex; align-items:center; justify-content:space-between; gap:2rem; }

/* Logo */
.hwh-nav__logo { display:flex; align-items:center; flex-shrink:0; text-decoration:none; }
.hwh-nav__logo-img { height:65px; width:auto; transition:filter .3s ease; }
.hwh-nav__logo:hover .hwh-nav__logo-img { filter:drop-shadow(0 0 10px rgba(242,47,58,.3)); }

/* Nav links */
.hwh-nav { flex:1; display:flex; justify-content:center; }
.hwh-nav__links { display:flex; align-items:center; justify-content:center; gap:.1rem; list-style:none; padding:0; margin:0; }
.hwh-nav__item { position:static; }
.hwh-nav__link { display:flex; align-items:center; gap:4px; padding:.5rem 1rem; font-family:'Inter',sans-serif; font-size:.83rem; font-weight:500; color:#0F2440; text-decoration:none; border-radius:9999px; transition:all .25s ease; white-space:nowrap; position:relative; }
.hwh-nav__link:hover { color:#F22F3A; background:rgba(242,47,58,.06); }
.hwh-nav__item--active > .hwh-nav__link { color:#F22F3A; }
.hwh-nav__item--active > .hwh-nav__link::after { content:''; position:absolute; bottom:2px; left:50%; transform:translateX(-50%); width:4px; height:4px; border-radius:50%; background:#F22F3A; }
.hwh-nav__arrow { font-size:.55rem; opacity:.5; transition:transform .25s ease; }
.hwh-nav__item--has-drop:hover .hwh-nav__arrow { transform:rotate(180deg); opacity:1; }

/* Bridge hover gap */
.hwh-nav__item--has-drop > .hwh-nav__link::before { content:''; position:absolute; bottom:-20px; left:0; right:0; height:20px; }

/* Actions */
.hwh-nav__actions { display:flex; align-items:center; gap:.6rem; flex-shrink:0; }
.hwh-nav__call { width:36px; height:36px; border-radius:50%; background:rgba(242,47,58,.08); color:#F22F3A; display:flex; align-items:center; justify-content:center; transition:all .25s ease; flex-shrink:0; }
.hwh-nav__call:hover { background:#F22F3A; color:#fff; transform:scale(1.08); }
.hwh-btn--sm { padding:.6rem 1.3rem; font-size:.75rem; }
.hwh-nav__hamburger { display:none; background:none; border:none; cursor:pointer; padding:.25rem; }

/* ── Dropdown mega menu ──────────────────────────────────────────── */
.hwh-drop { position:absolute; top:100%; left:0; right:0; background:#fff; border-top:2px solid #F22F3A; box-shadow:0 20px 60px rgba(0,0,0,.1); opacity:0; visibility:hidden; pointer-events:none; transform:translateY(-8px); transition:opacity .3s ease, transform .3s cubic-bezier(.16,1,.3,1), visibility .3s; z-index:100; padding-top:.5rem; margin-top:0; }
.hwh-nav__item--has-drop:hover .hwh-drop { opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0); }
.hwh-drop__inner { max-width:1280px; margin:0 auto; padding:2.5rem 2rem; display:grid; grid-template-columns:1fr 1fr 280px; gap:2rem; }
.hwh-drop__heading { font-family:'Inter',sans-serif; font-size:.6rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:#F22F3A; display:block; margin-bottom:1rem; padding-bottom:.6rem; border-bottom:1px solid #f0f0f4; }
.hwh-drop__item { display:flex; align-items:center; gap:.9rem; padding:.6rem .8rem; border-radius:10px; text-decoration:none; transition:all .2s ease; }
.hwh-drop__item:hover { background:#F8F9FB; transform:translateX(4px); }
.hwh-drop__icon { font-size:1.3rem; width:38px; height:38px; background:#F8F9FB; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:transform .25s ease; }
.hwh-drop__item:hover .hwh-drop__icon { transform:scale(1.12); }
.hwh-drop__item strong { display:block; font-size:.83rem; font-weight:700; color:#0F2440; line-height:1.2; }
.hwh-drop__item em { font-style:normal; font-size:.7rem; color:#7A9CC0; display:block; margin-top:1px; }

/* Promo panel */
.hwh-drop__promo { background:#0F2440; border-radius:14px; padding:1.75rem; display:flex; flex-direction:column; justify-content:space-between; }
.hwh-drop__promo-label { font-size:.6rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:#F22F3A; display:block; margin-bottom:.6rem; }
.hwh-drop__promo-title { font-family:'Montserrat',serif; font-size:1.25rem; font-weight:800; color:#fff; line-height:1.2; margin:0 0 .6rem; }
.hwh-drop__promo-text { font-size:.78rem; color:rgba(255,255,255,.6); line-height:1.6; margin:0 0 1.25rem; flex:1; }
.hwh-drop__promo-btn { display:inline-flex; align-items:center; background:#F22F3A; color:#fff; padding:.6rem 1.2rem; border-radius:9999px; font-size:.75rem; font-weight:700; text-decoration:none; transition:all .25s ease; align-self:flex-start; }
.hwh-drop__promo-btn:hover { background:#AF2D37; transform:translateY(-1px); color:#fff; }

/* Dropdown footer bar */
.hwh-drop__footer { background:#F8F9FB; border-top:1px solid #eee; padding:1rem 2rem; max-width:100%; display:flex; align-items:center; gap:2rem; }
.hwh-drop__footer-link { font-size:.78rem; font-weight:600; color:#3D6491; text-decoration:none; transition:color .2s ease; }
.hwh-drop__footer-link:hover { color:#F22F3A; }
.hwh-drop__footer-cta { margin-left:auto; font-size:.78rem; font-weight:800; color:#F22F3A; text-decoration:none; transition:letter-spacing .2s ease; }
.hwh-drop__footer-cta:hover { letter-spacing:.03em; }

/* ── Mobile nav ──────────────────────────────────────────────────── */
.hwh-mobile-search { display:flex; align-items:center; margin:.75rem 1.5rem 0; background:#F8F9FB; border:1.5px solid #E5EBF5; border-radius:9999px; overflow:hidden; }
.hwh-mobile-search input { flex:1; background:transparent; border:none; outline:none; padding:.65rem 1rem; font-size:.85rem; color:#0F2440; }
.hwh-mobile-search input::placeholder { color:#9DB8D6; }
.hwh-mobile-search button { background:transparent; border:none; cursor:pointer; padding:.65rem 1rem .65rem 0; color:#3D6491; display:flex; align-items:center; }
.hwh-mobile-search button:hover { color:#F22F3A; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media(max-width:1024px) {
  .hwh-nav { display:none; }
  .hwh-nav__hamburger { display:flex; }
  .hwh-topbar__item:not(.hwh-topbar__item--phone):not(.hwh-topbar__item--live) { display:none; }
  .hwh-topbar__sep { display:none; }
  .hwh-topbar__search-input { width:120px; }
  .site-main { padding-top:100px; }
}
@media(max-width:640px) {
  .hwh-topbar__search { display:none; }
  .hwh-topbar__social { display:none; }
  .hwh-topbar__right { gap:.4rem; }
  .hwh-nav__call { display:none; }
  .site-main { padding-top:90px; }
}

/* ==========================================================================
   HWH REVIEWS — Split Layout (mascot left, stacked cards right)
   ========================================================================== */
.hwh-reviews-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

/* Left: mascot image with red square bg */
.hwh-reviews-split__visual { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.hwh-reviews-split__img-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}
/* red square removed — image has one built in */
.hwh-reviews-split__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
}
.hwh-reviews-split__badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9999px;
  padding: .7rem 1.8rem;
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 600;
  align-self: flex-start;
  margin-left: 1rem;
}
.hwh-reviews-split__badge-stars { color: #F5C542; font-size: 1rem; letter-spacing: .05em; }

/* Right: header + stacked cards */
.hwh-reviews-split__header { margin-bottom: 1.75rem; }
.hwh-reviews-split__cards { display: flex; flex-direction: column; gap: 1.25rem; }

/* Stacked card variant */
.hwh-review-card--stacked {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: all .3s ease;
  border-left: 3px solid #F22F3A;
}
.hwh-review-card--stacked:hover {
  background: rgba(255,255,255,.09);
  transform: translateX(4px);
  border-left-color: #F22F3A;
}
.hwh-review-card--stacked .hwh-review-card__text {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}
.hwh-review-card--stacked .hwh-review-card__stars { color: #F5C542; font-size: .95rem; letter-spacing: .08em; }
.hwh-review-card--stacked .hwh-review-card__author { display: flex; align-items: center; gap: .6rem; margin-top: .25rem; }
.hwh-review-card--stacked .hwh-review-card__author strong { font-size: .85rem; font-weight: 700; color: #fff; }
.hwh-review-card--stacked .hwh-review-card__author span { font-size: .72rem; color: rgba(255,255,255,.4); }

@media(max-width:1024px) {
  .hwh-reviews-split { grid-template-columns: 1fr; gap: 3rem; }
  .hwh-reviews-split__visual { align-items: center; }
  .hwh-reviews-split__img-wrap { max-width: 340px; }
  .hwh-reviews-split__badge { align-self: center; margin-left: 0; }
}

/* HWH Reviews Carousel Controls */
.hwh-rev-carousel__track { display: flex; flex-direction: column; gap: 1.25rem; }
.hwh-rev-carousel__controls { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.hwh-rev-carousel__btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .25s ease; flex-shrink: 0; }
.hwh-rev-carousel__btn:hover { background: #F22F3A; border-color: #F22F3A; color: #fff; transform: scale(1.08); }
.hwh-rev-carousel__dots { display: flex; gap: .5rem; }
.hwh-rev-carousel__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); border: none; cursor: pointer; transition: all .25s ease; padding: 0; }
.hwh-rev-carousel__dot.is-active { background: #F22F3A; width: 22px; border-radius: 4px; }

/* HWH Reviews — faint sleek gradient background */
.hwh-reviews {
  background: linear-gradient(
    135deg,
    #0A1628 0%,
    #0F2440 45%,
    #131825 75%,
    #0e1520 100%
  ) !important;
  position: relative;
}
.hwh-reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(242,47,58,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 85% 30%, rgba(24,55,93,0.18) 0%, transparent 55%);
  pointer-events: none;
}

/* HWH Hero — Van image */
.hwh-hero__van-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}
.hwh-hero__van {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5));
}

/* HWH Hero — van height fix + H1 size reduction */
.hwh-hero__title {
  font-size: clamp(2rem, 1.5rem + 2.8vw, 3.8rem) !important;
}
.hwh-hero__visual {
  display: flex;
  align-items: stretch;
}
.hwh-hero__van-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hwh-hero__van {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.45));
}

/* HWH Hero — truly fixed height, no growth on zoom */
.hwh-hero {
  height: 700px !important;
  min-height: 0 !important;
  max-height: 700px !important;
  overflow: hidden !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.hwh-hero__inner {
  height: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* ==========================================================================
   404 PAGE  (e404 block)
   Plumbing theme: broken pipe SVG, animated drops, dark navy + brand-red.
   ========================================================================== */

/* ── Section wrapper ─────────────────────────────────────────────── */
.e404 {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(
    145deg,
    var(--brand-navy-dark) 0%,
    var(--brand-navy)      55%,
    #0d2d52                100%
  );
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

/* ── Floating bubble background ──────────────────────────────────── */
.e404__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.e404__bubble {
  position: absolute;
  left: var(--x);
  bottom: -10%;
  width:  var(--size);
  height: var(--size);
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(242, 47, 58, 0.12) 0%,
    rgba(24, 55, 93, 0.06) 60%,
    transparent 100%
  );
  border: 1px solid rgba(242, 47, 58, 0.08);
  animation: e404-rise var(--dur) var(--delay) ease-in-out infinite;
  backdrop-filter: blur(2px);
}
@keyframes e404-rise {
  0%   { transform: translateY(0)     scale(1);    opacity: 0;   }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) scale(1.1); opacity: 0;   }
}

/* ── Grid layout ─────────────────────────────────────────────────── */
.e404__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Art / SVG panel ─────────────────────────────────────────────── */
.e404__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.e404__pipe {
  width: min(280px, 55vw);
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.55));
  animation: e404-wobble 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes e404-wobble {
  0%, 100% { transform: rotate(-1.5deg) translateY(0);    }
  50%       { transform: rotate( 1.5deg) translateY(-8px); }
}

/* Water drop drip — each drop gets its own keyframe so they scatter */
.e404__drop--1 { animation: e404-drip-1 2s   0s     ease-in infinite; }
.e404__drop--2 { animation: e404-drip-2 2s   0.65s  ease-in infinite; }
.e404__drop--3 { animation: e404-drip-3 1.9s 1.3s   ease-in infinite; }

@keyframes e404-drip-1 {
  0%   { transform: translate(0,  0);    opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: translate(-10px, 42px); opacity: 0; }
}
@keyframes e404-drip-2 {
  0%   { transform: translate(0,  0);    opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: translate(8px, 40px);  opacity: 0; }
}
@keyframes e404-drip-3 {
  0%   { transform: translate(0,  0);    opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: translate(-5px, 38px); opacity: 0; }
}

/* Ghost "404" — visible on dark navy via gradient fill + stroke */
.e404__number {
  position: absolute;
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(7rem, 12vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  /* Gradient text — brand-red fading to navy so it reads on dark bg */
  background: linear-gradient(
    145deg,
    rgba(242, 47, 58, 0.55) 0%,
    rgba(242, 47, 58, 0.20) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(242, 47, 58, 0.35);
  user-select: none;
  z-index: 1;
  line-height: 1;
  text-shadow: none; /* text-shadow doesn't apply to clip text, kept for fallback */
}

/* ── Text content panel ──────────────────────────────────────────── */
.e404__content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* Badge */
.e404__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  background: rgba(242, 47, 58, 0.15);
  border: 1px solid rgba(242, 47, 58, 0.35);
  color: #FF6B74;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
}

/* Headline */
.e404__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(2rem, 1.4rem + 2.8vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
}
.e404__title strong {
  color: var(--brand);
  font-weight: 700;
}

/* Subtext */
.e404__sub {
  font-size: clamp(0.9rem, 0.82rem + 0.3vw, 1rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 44ch;
}

/* ── Action buttons ──────────────────────────────────────────────── */
.e404__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Override outline button for dark background */
.e404 .btn--outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.e404 .btn--outline:hover {
  border-color: var(--brand);
  color: #fff;
  background: rgba(242, 47, 58, 0.15);
}

/* ── Quick-link cards ────────────────────────────────────────────── */
.e404__links-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

.e404__links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.e404__link-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.e404__link-card:hover {
  background: rgba(242, 47, 58, 0.12);
  border-color: rgba(242, 47, 58, 0.35);
  transform: translateX(4px);
  color: #fff;
}

.e404__link-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.e404__link-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* ── Search bar ──────────────────────────────────────────────────── */
.e404__search-form {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 0.35rem 0.35rem 0.35rem 1.25rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.e404__search-form:focus-within {
  border-color: rgba(242, 47, 58, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.e404__search-icon {
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.e404__search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  min-width: 0;
}
.e404__search-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.e404__search-btn {
  flex-shrink: 0;
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .e404__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .e404__art    { order: -1; }
  .e404__badge  { margin: 0 auto; }
  .e404__sub    { max-width: 100%; }
  .e404__actions { justify-content: center; }
  .e404__links-grid { grid-template-columns: repeat(4, 1fr); }
  .e404__link-card {
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
    padding: 0.9rem;
  }
  .e404__link-card:hover { transform: translateY(-3px); }
  .e404__search-form { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .e404__links-grid { grid-template-columns: repeat(2, 1fr); }
  .e404__actions { flex-direction: column; width: 100%; }
  .e404__actions .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   SERVICES ARCHIVE PAGE  (svc-* block)
   New plumbing-brand redesign — dark hero, pill filters, premium cards.
   ========================================================================== */

/* ── Hero ─────────────────────────────────────────────────────────── */
.svc-hero {
  position: relative;
  background: linear-gradient(
    150deg,
    #070e1a   0%,
    var(--brand-navy-dark) 25%,
    var(--brand-navy)      70%,
    #102c50                100%
  );
  padding: clamp(6rem, 5rem + 4vw, 9rem) 0 clamp(3.5rem, 2rem + 3vw, 5rem);
  overflow: hidden;
}

/* Subtle noise texture overlay */
.svc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── Background effects ────────────────────────────────────────── */
.svc-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Diagonal red accent stripe */
.svc-hero__stripe {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 350px;
  height: 160%;
  background: linear-gradient(
    180deg,
    transparent        0%,
    rgba(242, 47, 58, 0.06) 30%,
    rgba(242, 47, 58, 0.1)  50%,
    rgba(242, 47, 58, 0.06) 70%,
    transparent        100%
  );
  transform: rotate(-25deg);
  filter: blur(40px);
}

/* Floating ambient water drops */
.svc-hero__drop {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: #4DA8FF;
  animation: svcHeroPulse var(--dur) var(--d) ease-in-out infinite;
  box-shadow: 0 0 calc(var(--s) * 3) rgba(77, 168, 255, 0.4);
}
@keyframes svcHeroPulse {
  0%, 100% { transform: scale(1);   opacity: 0.15; }
  50%      { transform: scale(1.8); opacity: 0.5;  }
}

/* ── Two-column layout ─────────────────────────────────────────── */
.svc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* ── Left: text column ─────────────────────────────────────────── */
.svc-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Live badge */
.svc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  background: rgba(242, 47, 58, 0.12);
  border: 1px solid rgba(242, 47, 58, 0.3);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF8A90;
  width: fit-content;
  backdrop-filter: blur(8px);
}
.svc-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: svcHeroDotPulse 2s ease-in-out infinite;
}
@keyframes svcHeroDotPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);   }
}

.svc-hero__label {
  color: rgba(255, 255, 255, 0.5) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.svc-hero__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(2.8rem, 2rem + 3.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
}
.svc-hero__title em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand) 0%, #FF6B74 60%, #FFA07A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-hero__desc {
  font-size: clamp(0.92rem, 0.82rem + 0.35vw, 1.02rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 48ch;
}

.svc-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Outline button override for dark bg */
.svc-hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}
.svc-hero .btn--outline:hover {
  border-color: var(--brand);
  background: rgba(242, 47, 58, 0.12);
  color: #fff;
}

/* Trust chips */
.svc-hero__chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.svc-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.svc-hero__chip:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── Right: visual column ──────────────────────────────────────── */
.svc-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

/* Heaty mascot image */
.svc-hero__mascot {
  position: relative;
  z-index: 2;
  width: min(380px, 75%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.55));
}

/* Radial glow behind Heaty */
.svc-hero__mascot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(242, 47, 58, 0.2) 0%,
    rgba(242, 47, 58, 0.08) 40%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
  animation: svcGlowPulse 4s ease-in-out infinite;
}

@keyframes svcMascotFloat {
  0%, 100% { transform: translateY(0);     }
  50%      { transform: translateY(-14px); }
}

@keyframes svcGlowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 1;   }
  50%      { transform: translate(-50%, -50%) scale(1.08); opacity: 0.7; }
}

/* ── Floating glassmorphic stat cards ──────────────────────────── */
.svc-hero__float {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  z-index: 3;
  animation: svcFloat 5s ease-in-out infinite;
}
.svc-hero__float strong {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.svc-hero__float span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.15rem;
}

/* Positions and stagger */
.svc-hero__float--1 {
  top: 8%;
  right: 5%;
  animation-delay: 0s;
}
.svc-hero__float--2 {
  bottom: 12%;
  left: 2%;
  animation-delay: 1.5s;
}
.svc-hero__float--3 {
  bottom: 25%;
  right: 0%;
  animation-delay: 3s;
}

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


/* ── Filter Bar ───────────────────────────────────────────────────── */
.svc-filter {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 72px;
  z-index: 50;
  padding: 0.7rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.svc-filter__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
  overflow-x: auto;
  scrollbar-width: none;
}
.svc-filter__inner::-webkit-scrollbar { display: none; }

.svc-filter__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.svc-filter__btn {
  padding: 0.45rem 1.15rem;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 9999px;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
              box-shadow 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-filter__btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.svc-filter__btn.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(242, 47, 58, 0.3);
}

/* ── Services Archive Section ─────────────────────────────────────── */
.svc-archive {
  padding: clamp(3.5rem, 2.5rem + 3vw, 6rem) 0;
  background: var(--bg-cream);
}

/* ── Service Cards Grid ───────────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid var(--border-soft);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
  border-color: rgba(242, 47, 58, 0.25);
}

/* Red bar sweeps across top on hover */
.svc-card__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #FF6B74);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}
.svc-card:hover .svc-card__bar {
  transform: scaleX(1);
}

/* Thumbnail */
.svc-card__thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.svc-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
}
.svc-card:hover .svc-card__thumb img {
  transform: scale(1.06);
}
.svc-card__thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 36, 64, 0.35) 0%, transparent 60%);
  pointer-events: none;
}

/* Icon fallback */
.svc-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.3s ease;
}
.svc-card:hover .svc-card__icon-wrap {
  background: var(--bg-warm);
}
.svc-card__icon {
  font-size: 2.8rem;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.35s ease;
}
.svc-card:hover .svc-card__icon {
  transform: scale(1.15) rotate(-5deg);
}

/* Body */
.svc-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.75rem 1.75rem;
}

.svc-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.svc-card__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.svc-card__text {
  font-size: 0.85rem;
  color: var(--text-subtle);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* Meta row (price + duration) */
.svc-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}

.svc-card__price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
}

.svc-card__duration {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--text-subtle);
  font-weight: 500;
}

/* CTA row */
.svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.03em;
  transition: gap 0.3s ease;
  margin-top: auto;
}
.svc-card:hover .svc-card__cta {
  gap: 0.6rem;
}
.svc-card__cta svg {
  transition: transform 0.3s ease;
}
.svc-card:hover .svc-card__cta svg {
  transform: translateX(3px);
}

/* No-results / Empty states */
.svc-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 5rem 0;
  color: var(--text-subtle);
  text-align: center;
}
.svc-no-results svg {
  opacity: 0.35;
}
.svc-no-results p {
  font-size: 0.95rem;
}

.svc-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 6rem 0;
  text-align: center;
}
.svc-empty__icon  { font-size: 3rem; }
.svc-empty__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-dark);
}
.svc-empty__text {
  font-size: 0.95rem;
  color: var(--text-subtle);
  max-width: 38ch;
}

/* ── Stats Strip ──────────────────────────────────────────────────── */
.svc-stats {
  background: var(--brand-navy);
  padding: 3rem 0;
}

.svc-stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.svc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 3rem;
  text-align: center;
}

.svc-stat__num {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.svc-stat__num span {
  color: var(--brand);
}

.svc-stat__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.svc-stat__divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ── Archive Section Header ───────────────────────────────────────── */
.svc-archive__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.svc-archive__count {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 16px;
  background: rgba(242, 47, 58, 0.06);
  border: 1.5px solid rgba(242, 47, 58, 0.15);
  flex-shrink: 0;
}
.svc-archive__count strong {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}
.svc-archive__count span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 0.2rem;
}

/* ── How It Works / Process Steps ─────────────────────────────────── */
.svc-process {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: var(--bg-alt);
}

.svc-process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
}

.svc-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 260px;
  padding: 0 1rem;
  position: relative;
}

.svc-process__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(242, 47, 58, 0.3);
}

.svc-process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #fff;
  border: 1.5px solid var(--border-soft);
  color: var(--brand);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.svc-process__step:hover .svc-process__icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: var(--brand);
  color: #fff;
}

.svc-process__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(0.9rem, 0.8rem + 0.35vw, 1.05rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.svc-process__text {
  font-size: 0.82rem;
  color: var(--text-subtle);
  line-height: 1.65;
  max-width: 22ch;
}

/* Connector line between steps */
.svc-process__connector {
  flex: 0 0 auto;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-soft), var(--brand), var(--border-soft));
  margin-top: 52px;
  border-radius: 2px;
  opacity: 0.5;
}

/* ── Emergency CTA ────────────────────────────────────────────────── */
.svc-cta {
  background: linear-gradient(
    140deg,
    var(--brand-navy-dark) 0%,
    var(--brand-navy)      100%
  );
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.svc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(242, 47, 58, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Pulsing ring behind the CTA */
.svc-cta__pulse {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 300px;
  height: 300px;
  transform: translate(50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(242, 47, 58, 0.2);
  animation: svcCtaPulse 3s ease-out infinite;
  pointer-events: none;
}
@keyframes svcCtaPulse {
  0%   { transform: translate(50%, -50%) scale(0.8); opacity: 0.6; }
  100% { transform: translate(50%, -50%) scale(1.5); opacity: 0;   }
}

.svc-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}

.svc-cta__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.svc-cta__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(2rem, 1.4rem + 3vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}
.svc-cta__title em {
  font-style: normal;
  font-weight: 700;
  color: var(--brand);
}

.svc-cta__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 50ch;
}

/* Right column: Heaty + buttons */
.svc-cta__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.svc-cta__heaty {
  width: 140px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.4));
}

.svc-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
}

.svc-cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  text-align: center;
}
.svc-cta .btn--outline:hover {
  border-color: var(--brand);
  background: rgba(242, 47, 58, 0.12);
  color: #fff;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .svc-process__steps { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
  .svc-process__connector { display: none; }
  .svc-process__step { max-width: 220px; }
}

@media (max-width: 900px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-stat { padding: 0.75rem 1.5rem; }
  .svc-stat__divider { height: 36px; }
  .svc-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .svc-hero__text { align-items: center; }
  .svc-hero__badge { margin: 0 auto; }
  .svc-hero__desc { max-width: 100%; }
  .svc-hero__actions { justify-content: center; }
  .svc-hero__chips { justify-content: center; }
  .svc-hero__visual { min-height: 320px; }
  .svc-hero__float--1 { top: 2%; right: 8%; }
  .svc-hero__float--2 { bottom: 5%; left: 5%; }
  .svc-hero__float--3 { bottom: 15%; right: 3%; }
  .svc-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .svc-cta__right { flex-direction: row; align-items: center; justify-content: center; }
  .svc-cta__heaty { width: 100px; }
  .svc-cta__actions {
    flex-direction: row;
    justify-content: center;
  }
  .svc-cta__desc { max-width: 100%; }
}

@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-stats__inner { flex-direction: column; gap: 0; }
  .svc-stat__divider { width: 60px; height: 1px; }
  .svc-hero__actions { flex-direction: column; }
  .svc-hero__actions .btn { width: 100%; justify-content: center; }
  .svc-hero__visual { min-height: 260px; }
  .svc-hero__mascot { width: min(280px, 90%); }
  .svc-hero__float { padding: 0.6rem 0.9rem; }
  .svc-hero__float strong { font-size: 0.95rem; }
  .svc-hero__float span { font-size: 0.55rem; }
  .svc-cta__right { flex-direction: column; }
  .svc-cta__actions { flex-direction: column; width: 100%; }
  .svc-cta__actions .btn { width: 100%; justify-content: center; }
  .svc-process__step { max-width: 100%; }
  .svc-archive__header { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

/* ── Hero (reuses svc-hero patterns) ──────────────────────────────── */
.about-hero {
  position: relative;
  background: linear-gradient(
    150deg,
    #070e1a   0%,
    var(--brand-navy-dark) 25%,
    var(--brand-navy)      70%,
    #102c50                100%
  );
  padding: clamp(6rem, 5rem + 4vw, 9rem) 0 clamp(3.5rem, 2rem + 3vw, 5rem);
  overflow: hidden;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.about-hero__stripe {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 350px;
  height: 160%;
  background: linear-gradient(180deg, transparent 0%, rgba(242,47,58,0.06) 30%, rgba(242,47,58,0.1) 50%, rgba(242,47,58,0.06) 70%, transparent 100%);
  transform: rotate(-25deg);
  filter: blur(40px);
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 1rem + 2vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-hero__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(2.8rem, 2rem + 3.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
}
.about-hero__title em {
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand) 0%, #FF6B74 60%, #FFA07A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero__desc {
  font-size: clamp(0.92rem, 0.82rem + 0.35vw, 1.02rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 48ch;
}

.about-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.about-hero .btn--outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}
.about-hero .btn--outline:hover {
  border-color: var(--brand);
  background: rgba(242, 47, 58, 0.12);
  color: #fff;
}

/* Visual column */
.about-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.about-hero__mascot {
  position: relative;
  z-index: 2;
  width: min(340px, 70%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.55));
}
.about-hero__mascot-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,47,58,0.2) 0%, rgba(242,47,58,0.08) 40%, transparent 70%);
  z-index: 1;
  pointer-events: none;
  animation: svcGlowPulse 4s ease-in-out infinite;
}

/* ── Story Timeline ──────────────────────────────────────────────── */
.about-story {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: #fff;
}

.about-story__content {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
/* Vertical timeline line */
.about-story__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 42px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand), rgba(242,47,58,0.15));
  border-radius: 2px;
}

.about-story__block {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.about-story__year {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--brand-navy);
  border: 3px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(242,47,58,0.2);
}

.about-story__detail h3 {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(1.1rem, 0.9rem + 0.5vw, 1.3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.about-story__detail p {
  font-size: 0.9rem;
  color: var(--text-subtle);
  line-height: 1.75;
}

/* ── Values Grid ─────────────────────────────────────────────────── */
.about-values {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: var(--bg-alt);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-val {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}
.about-val::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #FF6B74);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.about-val:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
  border-color: rgba(242,47,58,0.2);
}
.about-val:hover::after {
  transform: scaleX(1);
}

.about-val__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(242,47,58,0.08);
  color: var(--brand);
  margin-bottom: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}
.about-val:hover .about-val__icon {
  background: var(--brand);
  color: #fff;
  transform: scale(1.08);
}

.about-val__num {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(242,47,58,0.2);
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.about-val__title {
  font-family: 'Montserrat', Georgia, serif;
  font-size: clamp(0.95rem, 0.85rem + 0.35vw, 1.1rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.about-val__text {
  font-size: 0.85rem;
  color: var(--text-subtle);
  line-height: 1.7;
}

/* ── About Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-hero__text { align-items: center; }
  .about-hero__desc { max-width: 100%; }
  .about-hero__actions { justify-content: center; }
  .about-hero__visual { min-height: 300px; }
  .about-hero__mascot { width: min(260px, 80%); }
}

@media (max-width: 640px) {
  .about-values__grid { grid-template-columns: 1fr; }
  .about-hero__actions { flex-direction: column; }
  .about-hero__actions .btn { width: 100%; justify-content: center; }
  .about-story__content::before { left: 28px; }
  .about-story__year { width: 56px; height: 56px; font-size: 0.72rem; }
  .about-story__block { gap: 1.25rem; }
  .about-family__grid { grid-template-columns: 1fr; }
}

/* ── Family of Companies ──────────────────────────────────────────── */
.about-family {
  padding: clamp(4rem, 3rem + 4vw, 7rem) 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg-cream) 100%);
}

.about-family__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.about-family__card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.about-family__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(var(--ink-rgb), 0.1);
  border-color: rgba(var(--brand-rgb), 0.15);
}

.about-family__icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: rgba(var(--brand-rgb), 0.08);
  color: var(--brand);
  transition: background 0.3s ease, transform 0.3s ease;
}
.about-family__card:hover .about-family__icon {
  background: var(--brand);
  color: #fff;
  transform: scale(1.08);
}

.about-family__name {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.about-family__desc {
  font-size: 0.88rem;
  color: var(--text-subtle);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-family__tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(var(--brand-rgb), 0.08);
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

@media (max-width: 900px) {
  .about-family__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

