/* =========================================================
   LiveWell4Life Inc. — Advanced Premium Theme Stylesheet
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --teal-950: #031c19;
  --teal-900: #062e2a;
  --teal-800: #0b3d38;
  --teal-700: #0e5a50;
  --teal-600: #0e7a6b;
  --teal-500: #12a08b;
  --teal-400: #17c3a6;
  --teal-300: #4ee0c9;
  --mint-100: #d9f5ee;
  --mint-50:  #f0fbf7;

  --coral:      #ff6b4a;
  --coral-dark: #f04e28;
  --amber:      #ffb347;
  --sun-gold:   #ffa62b;

  --ink:   #0d2b27;
  --slate: #41565a;
  --muted: #6b8184;
  --line:  #e2ede9;

  --white:  #ffffff;
  --bg:     #ffffff;
  --bg-alt: #f3faf7;

  --grad-brand:  linear-gradient(135deg, #17c3a6 0%, #0e7a6b 100%);
  --grad-sun:    linear-gradient(135deg, #ff8a5b 0%, #ff5e3a 100%);
  --grad-dark:   linear-gradient(160deg, #0b3d38 0%, #031c19 100%);

  --shadow-sm:   0 4px 14px rgba(6, 46, 42, 0.05);
  --shadow-md:   0 12px 32px rgba(6, 46, 42, 0.09);
  --shadow-lg:   0 24px 60px rgba(6, 46, 42, 0.15);
  --shadow-glow: 0 14px 40px rgba(23, 195, 166, 0.35);

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  /* Increased canvas width as requested by user */
  --container: 1480px;
  --ease:     cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --font-body:    "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
}

/* ---------- Utilities ---------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  position: relative;
}
.section--alt {
  background: var(--bg-alt);
}
.section--tight {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-600);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}
.section-head {
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
  text-align: center;
}
.section-head .eyebrow {
  justify-content: center;
}
.section-head .eyebrow::before {
  display: none;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin: .65rem 0 1rem;
}
.section-sub {
  color: var(--slate);
  font-size: 1.12rem;
  max-width: 66ch;
  margin-inline: auto;
}
.highlight {
  color: var(--teal-500);
}
.text-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 2000;
  background: var(--teal-800);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: 0 0 10px 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Status Pulse ---------- */
.status-live {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(23, 195, 166, 0.15);
  border: 1px solid rgba(23, 195, 166, 0.3);
  color: var(--mint-100);
  padding: .35rem .85rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  white-space: nowrap;
}
.dot-pulse {
  width: 8px;
  height: 8px;
  background: var(--teal-400);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(23, 195, 166, 0.6);
  animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(23, 195, 166, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(23, 195, 166, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(23, 195, 166, 0); }
}

/* ---------- Buttons (PREVENT DISTORTION/TEXT WRAP) ---------- */
.btn {
  --pad: .95rem 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: var(--pad);
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), color .3s, background .3s;
  will-change: transform;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity .35s;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn:active {
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--primary::after {
  background: linear-gradient(135deg, #0e7a6b, #12a08b);
}
.btn--primary:hover::after {
  opacity: 1;
}
.btn--sun {
  background: var(--grad-sun);
  color: #fff;
  box-shadow: 0 14px 35px rgba(255, 94, 58, 0.35);
}
.btn--ghost {
  border: 2px solid rgba(14, 122, 107, 0.3);
  color: var(--teal-700);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--teal-500);
  color: var(--teal-600);
  background: rgba(255, 255, 255, 0.95);
}
.hero-ghost-btn {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}
.hero-ghost-btn:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: #fff !important;
}
.btn--light {
  background: #fff;
  color: var(--teal-800);
  box-shadow: var(--shadow-md);
}
.btn--ghostlight {
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn--ghostlight:hover {
  background: rgba(255, 255, 255, 0.15);
}
.btn--sm {
  --pad: .65rem 1.4rem;
  font-size: .9rem;
}
.btn--lg {
  --pad: 1.15rem 2.25rem;
  font-size: 1.05rem;
}
.btn--block {
  width: 100%;
}

/* ---------- Top Announcement Bar ---------- */
.topbar {
  background: var(--grad-dark);
  color: #cdefe6;
  font-size: .84rem;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.topbar__track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  padding: .6rem 0;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.topbar:hover .topbar__track {
  animation-play-state: paused;
}
.topbar .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-400);
  display: inline-block;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Header & Navigation (FIXED BUTTON SQUEEZING & SPACIOUS LAYOUT) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(229, 239, 236, 0.8);
  transition: box-shadow .35s, border-color .35s, background .35s;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .85rem 0;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: 38px;
  width: auto;
  transition: transform .3s;
}
.brand:hover img {
  transform: scale(1.03);
}

.main-nav {
  margin-left: auto;
  flex-shrink: 1;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: .3rem;
  flex-wrap: nowrap;
}
.nav-item {
  position: relative;
  flex-shrink: 0;
}

/* Nav Link Styling */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem .85rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  transition: color .25s, background .25s;
  position: relative;
  white-space: nowrap;
}
.nav-link .caret {
  transition: transform .25s;
  opacity: .7;
}
.nav-link:hover {
  color: var(--teal-600);
  background: rgba(217, 245, 238, 0.45);
}
.nav-item.has-menu:hover .caret {
  transform: rotate(180deg);
  opacity: 1;
}

/* Sub-Menu Wrapper & Invisible Hover Bridge */
.sub-menu-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: .6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility .25s;
  z-index: 100;
}
.nav-item.has-menu:hover .sub-menu-wrapper,
.nav-item.has-menu:focus-within .sub-menu-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Glassmorphism Dropdown Menu */
.sub-menu {
  min-width: 275px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 45px rgba(6, 46, 42, 0.15);
  padding: .65rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.sub-menu li {
  list-style: none;
}
.sub-item {
  display: flex;
  flex-direction: column;
  padding: .7rem .9rem;
  border-radius: 10px;
  transition: background .2s, transform .2s;
}
.sub-item__title {
  font-size: .93rem;
  font-weight: 700;
  color: var(--ink);
  transition: color .2s;
}
.sub-item__desc {
  font-size: .78rem;
  color: var(--slate);
  margin-top: .15rem;
  font-weight: 500;
}
.sub-item:hover {
  background: var(--mint-50);
  transform: translateX(4px);
}
.sub-item:hover .sub-item__title {
  color: var(--teal-600);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}
.nav-cta {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  min-width: max-content;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--mint-50);
  border: 1px solid var(--mint-100);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background .25s;
  flex-shrink: 0;
}
.nav-toggle:hover {
  background: var(--mint-100);
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--teal-800);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Navigation Drawer */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(88%, 380px);
  background: #ffffff;
  z-index: 1200;
  padding: 1.8rem 1.6rem 2.5rem;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .4s var(--ease-out), visibility .4s;
  box-shadow: -10px 0 40px rgba(6, 46, 42, 0.18);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.mobile-nav__close {
  font-size: 2rem;
  line-height: 1;
  color: var(--slate);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-alt);
}
.mobile-list {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-item {
  border-bottom: 1px solid rgba(229, 239, 236, 0.6);
}
.mobile-link-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-link {
  display: block;
  padding: .9rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.mobile-sub-toggle {
  padding: .5rem;
  color: var(--teal-600);
  transition: transform .3s;
}
.mobile-item.is-expanded .mobile-sub-toggle {
  transform: rotate(180deg);
}
.mobile-sub {
  display: none;
  padding: 0 0 .8rem .8rem;
}
.mobile-item.is-expanded .mobile-sub {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.mobile-sub a {
  display: flex;
  flex-direction: column;
  padding: .4rem .6rem;
  border-radius: 8px;
  background: var(--bg-alt);
}
.m-sub-title {
  font-weight: 700;
  font-size: .9rem;
  color: var(--teal-700);
}
.m-sub-desc {
  font-size: .75rem;
  color: var(--slate);
}
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 28, 25, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1150;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ---------- HERO BACKGROUND SLIDER (MULTI-IMAGE CROSSFADE) ---------- */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 960px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* Hero Multi-Image Slider Container */
.hero__slider {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s var(--ease), transform 8s var(--ease-out);
  will-change: opacity, transform;
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(3, 28, 25, 0.94) 0%, rgba(11, 61, 56, 0.84) 42%, rgba(11, 61, 56, 0.48) 75%, rgba(3, 28, 25, 0.3) 100%);
}

.hero__badge-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.2rem;
}
.hero__slide-caption {
  font-size: .78rem;
  font-weight: 700;
  color: var(--amber);
  background: rgba(255, 179, 71, 0.15);
  border: 1px solid rgba(255, 179, 71, 0.3);
  padding: .35rem .85rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  transition: all .4s var(--ease-out);
}
.hero .eyebrow {
  color: var(--mint-100);
}
.hero .eyebrow::before {
  background: var(--amber);
}
.hero__inner {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  max-width: 880px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 6.8vw, 4.8rem);
  line-height: 1.04;
  margin-bottom: 1.35rem;
  font-weight: 600;
}
.hero h1 .accent {
  color: var(--amber);
  font-style: italic;
}
.hero__lead {
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  color: #e4f5f0;
  max-width: 66ch;
  margin-bottom: 2.4rem;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .83rem;
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}
.hero__pill .chk {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-400);
  display: grid;
  place-items: center;
  flex: none;
}
.hero__pill .chk svg {
  width: 11px;
  height: 11px;
  stroke: var(--teal-900);
}

/* Hero Slider Dots Navigation */
.hero__dots {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  z-index: 10;
}
.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid transparent;
  transition: all .35s var(--ease-out);
  cursor: pointer;
}
.hero__dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}
.hero__dot.is-active {
  background: var(--teal-400);
  border-color: #fff;
  height: 26px;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(23, 195, 166, 0.6);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  color: #cdefe6;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
}
.hero__scroll .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  position: relative;
}
.hero__scroll .mouse::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  border-radius: 2px;
  background: #fff;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 10px); }
}

/* ---------- Trust Strip / Stats ---------- */
.stats {
  background: var(--grad-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 120%, rgba(23, 195, 166, 0.22), transparent 50%);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: clamp(2.4rem, 4vw, 3.6rem) 0;
  position: relative;
}
.stat {
  text-align: center;
  padding: 1.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  transition: transform .35s, border-color .35s;
}
.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 195, 166, 0.35);
}
.stat__icon {
  color: var(--teal-400);
  margin-bottom: .4rem;
  display: inline-grid;
  place-items: center;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  display: block;
  color: #fff;
}
.stat__label {
  font-size: .9rem;
  color: #c3e5dd;
  margin-top: .4rem;
  display: block;
}

/* ---------- Offer Cards ---------- */
.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.offer-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
  box-shadow: var(--shadow-sm);
}
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mint-100);
}
.offer-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.offer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.offer-card:hover .offer-card__image img {
  transform: scale(1.08);
}
.offer-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(3, 28, 25, 0.75) 100%);
}
.offer-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: var(--teal-800);
  font-weight: 700;
  font-size: .75rem;
  padding: .3rem .75rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  letter-spacing: .02em;
}
.offer-card__content {
  padding: 1.8rem 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.offer-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--mint-50);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  margin-top: -2.6rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  border: 2px solid #fff;
  transition: transform .35s, background .35s, color .35s;
}
.offer-card:hover .offer-card__icon {
  transform: rotate(-6deg) scale(1.08);
  background: var(--grad-brand);
  color: #fff;
}
.offer-card__icon svg {
  width: 26px;
  height: 26px;
}
.offer-card h3 {
  font-size: 1.35rem;
  margin-bottom: .6rem;
  font-family: var(--font-body);
  font-weight: 800;
}
.offer-card p {
  color: var(--slate);
  font-size: .96rem;
  margin-bottom: 1.4rem;
  flex: 1;
  line-height: 1.55;
}
.offer-card__link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  color: var(--teal-600);
  font-size: .95rem;
  margin-top: auto;
}
.offer-card__link svg {
  transition: transform .3s;
}
.offer-card:hover .offer-card__link svg {
  transform: translateX(6px);
}

/* ---------- Media + Text Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.split--rev .split__media {
  order: 2;
}
.split__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 1.1s var(--ease-out);
}
.split__media:hover img {
  transform: scale(1.06);
}
.badge-glass {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  padding: .9rem 1.3rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .85rem;
}
.badge-glass .bg-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--mint-100);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  flex: none;
}
.badge-glass b {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--teal-900);
  display: block;
  line-height: 1.1;
}
.badge-glass span {
  font-size: .82rem;
  color: var(--slate);
  display: block;
}
.split h2 {
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  margin: .5rem 0 1.1rem;
}
.split p.lead {
  color: var(--slate);
  margin-bottom: 1.4rem;
}

.feature-list {
  display: grid;
  gap: 1.2rem;
  margin: 1.6rem 0 2rem;
}
.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-list .fi {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 14px;
  background: var(--mint-100);
  color: var(--teal-700);
  display: grid;
  place-items: center;
}
.feature-list .fi svg {
  width: 22px;
  height: 22px;
}
.feature-list h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.06rem;
  margin-bottom: .2rem;
}
.feature-list p {
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.5;
}

/* ---------- Program Tiles ---------- */
.programs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.prog {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  box-shadow: var(--shadow-md);
}
.prog img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .9s var(--ease-out);
}
.prog::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(3, 28, 25, 0.05) 30%, rgba(3, 28, 25, 0.9) 100%);
}
.prog:hover img {
  transform: scale(1.1);
}
.prog__body {
  padding: 1.6rem 1.4rem;
}
.prog__tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
}
.prog h3 {
  color: #fff;
  font-size: 1.35rem;
  font-family: var(--font-body);
  font-weight: 800;
  margin: .35rem 0 .5rem;
}
.prog p {
  font-size: .9rem;
  color: #e2f2ee;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .4s, max-height .4s;
}
.prog:hover p {
  opacity: 1;
  max-height: 120px;
}
.prog__more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .86rem;
  margin-top: .6rem;
  color: var(--teal-400);
}

/* ---------- Membership Feature Band ---------- */
.membership {
  position: relative;
  overflow: hidden;
  background: var(--grad-dark);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.8rem;
  align-items: center;
}
.membership::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 195, 166, 0.3), transparent 70%);
  filter: blur(10px);
}
.membership h2 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin: .5rem 0 1rem;
  position: relative;
}
.membership p {
  color: #cfe8e1;
  position: relative;
  margin-bottom: 1.6rem;
}
.ticks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem 1.6rem;
  position: relative;
  margin-bottom: 1.8rem;
}
.ticks li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .95rem;
  color: #eafaf5;
}
.ticks svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--teal-400);
  margin-top: 2px;
}
.membership__card {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  backdrop-filter: blur(12px);
}
.membership__card h3 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.grade9 {
  background: var(--grad-sun);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.4rem;
}
.grade9 b {
  font-family: var(--font-display);
  font-size: 1.6rem;
  display: block;
  line-height: 1.1;
  color: #fff;
  margin-bottom: .25rem;
}
.grade9 span {
  font-size: .88rem;
  color: #fff;
}
.membership__card ul li {
  padding: .6rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
  font-size: .92rem;
  color: #dcefe9;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.membership__card ul li:last-child {
  border: none;
}
.membership__card ul li b {
  color: var(--teal-400);
}

/* ---------- Freezer Meals Menu ---------- */
.menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.menu-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
  transition: .35s var(--ease-out);
}
.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.menu-item .mi-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: .8rem;
}
.menu-item h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
}
.menu-item .tag {
  font-size: .72rem;
  font-weight: 700;
  color: var(--coral-dark);
  background: rgba(255, 107, 74, 0.12);
  padding: .25rem .65rem;
  border-radius: 999px;
  white-space: nowrap;
}
.prices {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.price-chip {
  font-size: .84rem;
  font-weight: 600;
  color: var(--teal-800);
  background: var(--mint-50);
  border: 1px solid var(--mint-100);
  padding: .35rem .7rem;
  border-radius: 8px;
}
.price-chip b {
  color: var(--teal-600);
}

/* ---------- Gallery Showcase ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.gallery-filter {
  padding: .6rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--slate);
  transition: all .25s;
}
.gallery-filter:hover, .gallery-filter.is-active {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.gallery-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.gallery-card:hover .gallery-card__img img {
  transform: scale(1.08);
}
.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 28, 25, 0.4);
  opacity: 0;
  display: grid;
  place-items: center;
  transition: opacity .3s;
}
.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
}
.gallery-card__zoom {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-800);
  display: grid;
  place-items: center;
  transform: scale(0.8);
  transition: transform .3s var(--ease-out);
}
.gallery-card:hover .gallery-card__zoom {
  transform: scale(1);
}
.gallery-card__cap {
  padding: 1.2rem 1.4rem;
}
.gallery-card__cap h4 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 800;
  margin-bottom: .25rem;
}
.gallery-card__cap p {
  font-size: .88rem;
  color: var(--muted);
}

/* ---------- Team ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.member {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  transition: transform .4s var(--ease-out), box-shadow .4s;
  box-shadow: var(--shadow-sm);
}
.member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.member__pic {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}
.member__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.member:hover .member__pic img {
  transform: scale(1.08);
}
.member__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(3, 28, 25, 0.4) 100%);
}
.member__body {
  padding: 1.4rem 1.4rem 1.6rem;
}
.member h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: .2rem;
}
.member__role {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .6rem;
}
.member__bio {
  font-size: .88rem;
  color: var(--slate);
  line-height: 1.5;
}

/* ---------- Reviews & Testimonials ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .35s, box-shadow .35s;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}
.review-text {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.4rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.review-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mint-100);
}
.review-author h5 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .95rem;
}
.review-author span {
  font-size: .8rem;
  color: var(--muted);
}

/* ---------- Quote ---------- */
.quote {
  background: var(--bg-alt);
}
.quote__card {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 7.5rem;
  line-height: .5;
  color: var(--teal-400);
  opacity: .25;
  height: .4em;
}
.quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.35rem);
  font-weight: 500;
  color: var(--teal-900);
  line-height: 1.35;
  font-style: italic;
}
.quote figcaption {
  margin-top: 1.6rem;
  font-weight: 700;
  color: var(--slate);
}
.quote figcaption span {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--teal-600);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: .2rem;
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
}
.contact__info {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.info-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: .35s;
}
.info-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.info-card .ic {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 14px;
  background: var(--grad-brand);
  color: #fff;
  display: grid;
  place-items: center;
}
.info-card .ic svg {
  width: 24px;
  height: 24px;
}
.info-card h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .2rem;
}
.info-card a, .info-card p {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
}
.info-card a:hover {
  color: var(--teal-600);
}
.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.contact__form h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.field {
  margin-bottom: 1.1rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .45rem;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: .98rem;
  color: var(--ink);
  background: var(--bg-alt);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal-400);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(23, 195, 166, 0.14);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-size: .85rem;
  color: var(--muted);
  margin-top: .4rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--grad-dark);
  color: #cfe8e1;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -5%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 195, 166, 0.22), transparent 70%);
}
.footer-cta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  margin: clamp(2rem, 5vw, 3.5rem) 0 3.5rem;
  backdrop-filter: blur(10px);
}
.footer-cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  max-width: 18ch;
}
.footer-cta p {
  color: #a9cdc5;
  margin-top: .4rem;
}
.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: .95;
}
.footer-tag {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: .6rem;
}
.footer-desc {
  font-size: .92rem;
  color: #9ec4bc;
  max-width: 34ch;
}
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul li {
  margin-bottom: .65rem;
}
.footer-col ul a {
  color: #bcdcd4;
  font-size: .95rem;
  transition: color .25s, padding-left .25s;
}
.footer-col ul a:hover {
  color: #fff;
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  color: #bcdcd4;
  font-size: .95rem;
}
.footer-contact svg {
  color: var(--teal-400);
  flex: none;
  margin-top: 3px;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: .85rem;
  color: #8fb8b0;
}
.footer-bottom a:hover {
  color: #fff;
}

/* ---------- Back to Top ---------- */
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--grad-brand);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.9);
  transition: .4s var(--ease-out);
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.to-top:hover {
  transform: translateY(-4px);
}

/* ---------- Scroll Reveal Animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-reveal="left"] {
  transform: translateX(-40px);
}
[data-reveal="right"] {
  transform: translateX(40px);
}
[data-reveal="zoom"] {
  transform: scale(.92);
}
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

/* ---------- RESPONSIVE BREAKPOINTS (SMOOTH TRANSITION TO TABLET AT 1140PX) ---------- */
@media (max-width: 1320px) {
  .nav-link { font-size: .92rem; padding: .55rem .7rem; }
  .team { grid-template-columns: repeat(4, 1fr); }
  .hero__dots { right: 1.2rem; }
}

@media (max-width: 1140px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .offers { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(2, 1fr); }
  .programs { grid-template-columns: repeat(2, 1fr); }
  .hero__dots { display: none; }
}

@media (max-width: 960px) {
  .split, .membership, .contact { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .membership { gap: 2rem; }
  .contact__form { order: 2; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Prevent horizontal translateX reveal overflow on touch screens */
  [data-reveal="left"], [data-reveal="right"] {
    transform: translateY(24px);
  }
}

@media (max-width: 640px) {
  .offers, .programs, .team, .menu, .ticks, .field-row, .gallery-grid, .reviews-grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 100%; }
  .footer-cta { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .quote__mark { font-size: 5rem; }
  .container { width: min(100% - 1.5rem, var(--container)); }
  .nav-wrap { gap: .5rem; }
  .badge-glass { left: 1rem; bottom: 1rem; padding: .65rem 1rem; }
}

@media (max-width: 420px) {
  .stat__num { font-size: 2rem; }
  .hero__pill { font-size: .78rem; width: 100%; }
  .brand img { height: 32px; }
  .badge-glass { position: relative; left: auto; bottom: auto; margin: .8rem .8rem 0; width: calc(100% - 1.6rem); }
}

/* ---------- Reduced Motion Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .topbar__track {
    animation: none;
  }
  .hero__slide {
    transition: none !important;
  }
}
