/* ========================================
   Believe Chiropractic — Blue & White
   Clean, professional healthcare aesthetic
   DM Sans
   ======================================== */

/* --- Design Tokens --- */
:root {
  /* Palette */
  --midnight: #0B1D2E;
  --banner-blue: #174866;
  --forest: #1A5276;
  --forest-light: #2471A3;
  --forest-glow: rgba(26,82,118,0.12);
  --gold: #C9A84C;
  --gold-soft: #E8D5A0;
  --gold-glow: rgba(201,168,76,0.12);
  --cream: #FFFFFF;
  --sand: #F4F7FA;
  --stone: #D5DBE1;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-mid: #4A5568;
  --text-muted: #718096;
  --danger: #C0392B;

  /* Typography */
  --font-display: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;
  --text-hero: clamp(2.8rem, 4.5vw, 3.8rem);

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

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  /* Shadows */
  --sh-subtle: 0 1px 2px rgba(0,0,0,0.04);
  --sh-sm: 0 2px 8px rgba(0,0,0,0.06);
  --sh-md: 0 4px 20px rgba(0,0,0,0.08);
  --sh-lg: 0 8px 40px rgba(0,0,0,0.1);
  --sh-glow: 0 0 60px rgba(26,82,118,0.18);

  /* Timing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.4s;
  --duration-fast: 0.2s;

  --container: 1200px;
  --container-wide: 1400px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Clean design — no grain texture */

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }

p { margin-bottom: var(--sp-4); }
p:last-child { margin-bottom: 0; }

.display { font-family: var(--font-display); font-weight: 700; }
.display-light { font-family: var(--font-display); font-weight: 400; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

.container--wide {
  max-width: var(--container-wide);
}

/* --- Label / Eyebrow --- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* --- Section --- */
.sec {
  padding: var(--sp-24) 0;
  position: relative;
}

.sec--tight { padding: var(--sp-16) 0; }

.sec--dark {
  background: var(--midnight);
  color: rgba(255,255,255,0.85);
}
.sec--dark h2, .sec--dark h3, .sec--dark h4, .sec--dark .eyebrow { color: var(--white); }
.sec--dark .eyebrow { color: var(--gold); }
.sec--dark .sec-header p { color: rgba(255,255,255,0.7); }

.sec--sand { background: var(--sand); }

.sec--blob-1, .sec--blob-2 { overflow: hidden; }

/* Decorative blobs */
.sec--blob-1::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--forest-glow);
  filter: blur(100px);
  pointer-events: none;
}

.sec--blob-2::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--gold-glow);
  filter: blur(80px);
  pointer-events: none;
}

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--pill {
  padding: 14px 28px;
  border-radius: var(--r-full);
}

.btn--rect {
  padding: 16px 36px;
  border-radius: var(--r-md);
}

.btn--forest {
  background: var(--forest);
  color: var(--white);
}
.btn--forest:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: var(--sh-md), var(--sh-glow);
}

.btn--gold {
  background: var(--forest);
  color: var(--white);
}
.btn--gold:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
  box-shadow: var(--sh-sm);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid currentColor;
  color: var(--white);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--midnight);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost-dark {
  background: transparent;
  border: 1.5px solid var(--forest);
  color: var(--forest);
}
.btn--ghost-dark:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn--whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn--sm { padding: 10px 24px; font-size: var(--text-xs); }
.btn--lg { padding: 20px 48px; font-size: var(--text-base); }
.btn--full { width: 100%; }

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

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--sp-10);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--text);
}

.header__logo img {
  width: 168px;
  height: 60px;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 0;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.header__nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: var(--sp-2) 0;
  transition: color var(--duration);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--forest);
  transition: width var(--duration) var(--ease-out);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--forest);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

/* Nav dropdown */
.nav-dropdown { position: relative; }

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

.nav-dropdown__trigger svg {
  width: 12px; height: 12px;
  transition: transform var(--duration);
}

.nav-dropdown:hover .nav-dropdown__trigger svg { transform: rotate(180deg); }

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: var(--sp-3) 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease-out);
  border: 1px solid rgba(0,0,0,0.04);
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--text-sm);
  font-weight: 450;
  color: var(--text-mid);
  transition: all var(--duration-fast);
}

.nav-dropdown__menu a:hover {
  color: var(--forest);
  background: var(--sand);
  padding-left: var(--sp-8);
}

.nav-dropdown__menu a::after { display: none; }

.header__cta { margin-left: var(--sp-4); }

.header__socials {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-left: var(--sp-4);
}

.header__social-link {
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  border: 1px solid rgba(26,82,118,0.16);
  background: var(--white);
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-fast), border-color var(--duration-fast), color var(--duration-fast), transform var(--duration-fast), box-shadow var(--duration-fast);
}

.header__social-link svg {
  width: 19px;
  height: 19px;
}

.header__social-link:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--sh-sm);
}

.header__social-link--whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--sp-2);
  background: none;
  border: none;
  width: 32px;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: all var(--duration) var(--ease-out);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 99;
  padding: var(--sp-8) var(--sp-8) var(--sp-20);
  overflow-y: auto;
}

.mobile-menu.active { display: flex; flex-direction: column; }

.mobile-menu a {
  display: block;
  padding: var(--sp-5) 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xl);
  color: var(--text);
  border-bottom: 1px solid var(--stone);
  transition: color var(--duration);
}

.mobile-menu a:hover { color: var(--forest); }

.mobile-menu .btn {
  margin-top: auto;
  width: 100%;
  color: var(--white);
  text-align: center;
  border-bottom: none;
}

.mobile-menu__socials {
  display: flex;
  gap: var(--sp-3);
  margin-top: auto;
  padding-top: var(--sp-6);
}

.mobile-menu__socials a {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--stone);
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  background: var(--white);
}

.mobile-menu__socials svg {
  width: 22px;
  height: 22px;
}

/* --- HERO --- */
.hero {
  position: relative;
  height: min(calc(100vh - var(--header-h)), 620px);
  margin-top: var(--header-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--banner-blue);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.52;
  filter: saturate(0.78);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(23,72,102,0.42) 0%, transparent 40%),
    linear-gradient(135deg, rgba(23,72,102,0.88) 0%, rgba(36,113,163,0.26) 60%, transparent 100%),
    linear-gradient(0deg, rgba(23,72,102,0.62) 0%, transparent 30%);
}

/* Decorative gold line */
.hero__accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 5;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: var(--sp-10) 0;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  font-size: var(--text-hero);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
  font-weight: 600;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-soft);
  font-weight: 400;
}

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: var(--sp-6);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  display: none;
  position: absolute;
  bottom: var(--sp-10);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- MARQUEE TRUST BAR --- */
.marquee {
  background: var(--midnight);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-5) 0;
  overflow: hidden;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: var(--sp-12);
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee__item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.marquee__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.7;
}

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

/* --- SECTION HEADER --- */
.sec-header {
  margin-bottom: var(--sp-16);
}

.sec-header--center { text-align: center; }

.sec-header--center .eyebrow { justify-content: center; }
.sec-header--center .eyebrow::before { display: none; }

.sec-header h2 {
  margin-bottom: var(--sp-4);
}

.sec-header p {
  color: var(--text-muted);
  font-size: var(--text-lg);
  max-width: 560px;
  line-height: 1.7;
}

.sec-header--center p { margin: 0 auto; }

/* --- BENTO CONDITIONS GRID --- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: var(--sp-6);
}

.bento-card {
  background: transparent;
  border-radius: 0;
  padding: var(--sp-6) 0 var(--sp-6) var(--sp-6);
  border-left: 3px solid var(--stone);
  transition: all var(--duration) var(--ease-out);
  border: 1px solid var(--stone);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--forest);
  opacity: 0;
  transition: opacity var(--duration);
}

.bento-card:hover {
  border-left-color: var(--forest);
}

.bento-card:hover::before { opacity: 0; }

.bento-card__icon {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  background: var(--forest-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  transition: background var(--duration), transform var(--duration);
}

.bento-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--forest);
  stroke-width: 1.5;
}

.bento-card:hover .bento-card__icon {
  background: var(--forest);
  transform: scale(1.05);
}

.bento-card:hover .bento-card__icon svg {
  color: var(--white);
}

.bento-card h4 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.bento-card p {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.6;
}

.bento-card--wide { grid-column: span 1; }

.bento-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--forest);
  margin-top: var(--sp-4);
  transition: gap var(--duration);
}

.bento-card:hover .bento-card__arrow { gap: var(--sp-3); color: var(--forest); }

.bento-card__arrow svg { width: 14px; height: 14px; }

/* --- APPROACH / PHILOSOPHY --- */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}

.philosophy__side {
  padding: var(--sp-10) var(--sp-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--r-xl);
}

.philosophy__side--chiro {
  background: var(--forest);
  color: var(--white);
}

.philosophy__side--chiro h3 { color: var(--white); }
.philosophy__side--chiro p { color: rgba(255,255,255,0.8); }
.philosophy__side--chiro .eyebrow { color: var(--gold-soft); }
.philosophy__side--chiro .eyebrow::before { background: var(--gold-soft); }

.philosophy__side--tcm {
  background: var(--midnight);
  color: var(--white);
}

.philosophy__side--tcm h3 { color: var(--white); }
.philosophy__side--tcm p { color: rgba(255,255,255,0.78); }
.philosophy__side--tcm .eyebrow { color: var(--gold); }

.philosophy__badge {
  display: none;
}

/* --- TEAM (Editorial Zig-Zag) --- */
.team-list {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 7vw, 6.5rem);
  max-width: 1120px;
  margin: 0 auto;
}

.team-feature {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.team-feature--reverse .team-feature__media { order: 2; }

.team-feature__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--sand);
  isolation: isolate;
  box-shadow:
    0 1px 2px rgba(11,29,46,0.04),
    0 40px 80px -32px rgba(11,29,46,0.28);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.team-feature__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
  pointer-events: none;
  z-index: 2;
}

.team-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-feature:hover .team-feature__media {
  transform: translateY(-6px);
}

.team-feature:hover .team-feature__media img {
  transform: scale(1.04);
}

.team-feature__index {
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-5);
  z-index: 3;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11,29,46,0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}

.team-feature__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-5);
}

.team-feature__role {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.team-feature__role::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.team-feature__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.875rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--text);
  margin: 0;
}

.team-feature__bio {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 52ch;
  margin: 0;
}

.team-feature__tags {
  list-style: none;
  padding: 0;
  margin: var(--sp-2) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.team-feature__tags li {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(11,29,46,0.08);
}

/* --- STEPS / FIRST VISIT --- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-1);
}

.step {
  background: rgba(255,255,255,0.06);
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
  position: relative;
  transition: background var(--duration);
  border: 1px solid rgba(255,255,255,0.08);
}

.step:first-child { border-radius: var(--r-xl) 0 0 var(--r-xl); }
.step:last-child { border-radius: 0 var(--r-xl) var(--r-xl) 0; }

.step:hover { background: rgba(255,255,255,0.1); }

.step__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: var(--sp-4);
  transition: color var(--duration);
}

.step:hover .step__num { color: var(--gold); opacity: 0.4; }

.step h4 {
  color: var(--white);
  font-size: var(--text-base);
  margin-bottom: var(--sp-3);
}

.step p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* --- TESTIMONIALS --- */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 var(--sp-4);
}

@media (min-width: 768px) { .testimonial-slide { flex: 0 0 50%; } }
@media (min-width: 1024px) { .testimonial-slide { flex: 0 0 33.333%; } }

.testimonial-card {
  background: var(--sand);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--stone);
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--forest-glow);
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-6);
}

.testimonial__stars {
  color: var(--gold);
  font-size: var(--text-sm);
  letter-spacing: 2px;
  margin-bottom: var(--sp-6);
}

.testimonial__text {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-base);
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--sp-6);
}

.testimonial__author {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--stone);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration);
}

.carousel-btn:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.carousel-btn svg { width: 18px; height: 18px; }

/* --- SERVICES --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.service-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--sand);
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,29,46,0.85) 0%, rgba(11,29,46,0.2) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-6);
  transition: background var(--duration);
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(26,82,118,0.9) 0%, rgba(26,82,118,0.3) 50%, transparent 100%);
}

.service-card__overlay h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  margin-bottom: var(--sp-2);
}

.service-card__overlay p {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity var(--duration);
  opacity: 0;
}

.service-card:hover .service-card__overlay p {
  max-height: 80px;
  opacity: 1;
}

/* --- CONTACT --- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-12);
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  align-items: flex-start;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--forest-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg { width: 18px; height: 18px; color: var(--forest); }

.contact-info__text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info__text span,
.contact-info__text a {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.contact-info__text a {
  color: var(--forest);
  font-weight: 500;
  transition: color var(--duration-fast);
}

.contact-info__text a:hover { color: var(--forest-light); text-decoration: underline; }

/* Hours */
.hours-table {
  width: 100%;
  margin-top: var(--sp-6);
}

.hours-table tr {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--stone);
  font-size: var(--text-sm);
}

.hours-table td:first-child { font-weight: 600; }
.hours-table .closed { color: var(--danger); font-weight: 600; }

/* Map */
.contact-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 440px;
  background: var(--sand);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: none;
}

.contact-social-panel {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  border: 1px solid var(--stone);
  box-shadow: var(--sh-sm);
}

.contact-social-panel h3 {
  margin-bottom: var(--sp-4);
}

.contact-social-panel p {
  color: var(--text-mid);
  margin-bottom: var(--sp-8);
}

.contact-social-list {
  display: grid;
  gap: var(--sp-4);
}

.contact-social-card {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4);
  border: 1px solid rgba(26,82,118,0.12);
  border-radius: var(--r-lg);
  background: var(--sand);
  transition: background var(--duration-fast), border-color var(--duration-fast), transform var(--duration-fast), box-shadow var(--duration-fast);
}

.contact-social-card:hover {
  background: var(--white);
  border-color: rgba(26,82,118,0.28);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}

.contact-social-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-full);
  background: var(--forest);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-social-card__icon svg {
  width: 21px;
  height: 21px;
}

.contact-social-card--whatsapp .contact-social-card__icon {
  background: #25D366;
}

.contact-social-card__text strong,
.contact-social-card__text small {
  display: block;
}

.contact-social-card__text strong {
  font-size: var(--text-base);
  color: var(--text);
}

.contact-social-card__text small {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* --- FORM --- */
.contact-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  border: 1px solid var(--stone);
  box-shadow: var(--sh-sm);
}

.form-group { margin-bottom: var(--sp-5); }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--sp-2);
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--stone);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--sand);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px var(--forest-glow);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--stone);
  overflow: hidden;
}

.faq-item:first-child { border-top: 1px solid var(--stone); }

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--text);
  text-align: left;
  transition: color var(--duration);
}

.faq-item__question:hover { color: var(--forest); }

.faq-item__question svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--duration) var(--ease-out);
}

.faq-item.active .faq-item__question svg { transform: rotate(180deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item.active .faq-item__answer { max-height: 500px; }

.faq-item__answer-inner {
  padding: 0 0 var(--sp-6);
  color: var(--text-muted);
  line-height: 1.8;
  font-size: var(--text-base);
}

/* --- CTA BANNER --- */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--midnight);
  border-radius: var(--r-2xl);
  padding: var(--sp-16) var(--sp-12);
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--forest-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner p {
  color: rgba(255,255,255,0.78);
  font-size: var(--text-lg);
  max-width: 500px;
  margin: var(--sp-4) auto var(--sp-8);
  position: relative;
}

.cta-banner .btn-group {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* --- PAGE BANNER (inner pages) --- */
.page-banner {
  background: var(--banner-blue);
  padding: var(--sp-24) 0 var(--sp-16);
  margin-top: var(--header-h);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--forest-glow) 0%, transparent 70%);
}

.page-banner h1 {
  color: var(--white);
  font-size: var(--text-4xl);
  margin-bottom: var(--sp-4);
}

.page-banner p {
  color: rgba(255,255,255,0.78);
  font-size: var(--text-lg);
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
  font-size: var(--text-sm);
}

.breadcrumb a { color: var(--gold); transition: opacity var(--duration-fast); }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* --- ABOUT --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-intro__image {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}

.about-intro__image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--r-xl);
  z-index: -1;
}

.about-intro__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.beliefs {
  max-width: 820px;
  margin: 0 auto;
}

.beliefs h2 {
  margin-bottom: var(--sp-10);
}

.beliefs__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10) var(--sp-12);
}

.beliefs__item h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-2);
  color: var(--forest);
}

.beliefs__item p {
  color: var(--text-mid);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* --- SERVICES DETAIL --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  padding: var(--sp-12) 0;
  border-bottom: 1px solid var(--stone);
}

.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }

.service-detail__image {
  border-radius: var(--r-xl);
  overflow: hidden;
}

.service-detail__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-detail:hover .service-detail__image img { transform: scale(1.03); }

.service-detail__content h3 { margin-bottom: var(--sp-4); }
.service-detail__content p { color: var(--text-muted); }

/* --- CONDITIONS PAGE --- */
.conditions-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.condition-page-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: all var(--duration) var(--ease-out);
  border: 1px solid var(--stone);
}

.condition-page-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: rgba(26,82,118,0.12);
}

.condition-page-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  background: var(--forest-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  transition: background var(--duration), transform var(--duration);
}

.condition-page-card:hover .condition-page-card__icon {
  background: var(--forest);
  transform: scale(1.05);
}

.condition-page-card:hover .condition-page-card__icon svg {
  stroke: var(--white);
}

.condition-page-card:hover .condition-page-card__icon svg circle[fill],
.condition-page-card:hover .condition-page-card__icon svg [fill="var(--forest)"] {
  fill: var(--white);
}
.condition-page-card h4 { margin-bottom: var(--sp-3); }
.condition-page-card p { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--sp-4); }
.condition-page-card a { color: var(--forest); font-weight: 600; font-size: var(--text-sm); }
.condition-page-card a:hover { text-decoration: underline; }

/* --- FOOTER --- */
.footer {
  background: var(--midnight);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-20) 0 var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

.footer__heading {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-6);
}

.footer__about p {
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
}

.footer__socials {
  display: flex;
  gap: var(--sp-3);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration);
}

.footer__social-link:hover { background: var(--forest); }
.footer__social-link svg { width: 18px; height: 18px; color: var(--white); }

.footer__links a {
  display: block;
  font-size: var(--text-sm);
  padding: 3px 0;
  transition: all var(--duration-fast);
}

.footer__links a:hover { color: var(--gold); padding-left: 4px; }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  font-size: var(--text-sm);
}

.footer__contact-item svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--sp-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}

.footer__bottom a { color: var(--gold); }
.footer__bottom a:hover { text-decoration: underline; }

/* --- MOBILE BOTTOM BAR --- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -1px 12px rgba(0,0,0,0.08);
  z-index: 98;
  padding: var(--sp-3) var(--sp-4);
}

.mobile-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
}

.mobile-bar .btn {
  padding: 12px;
  font-size: var(--text-xs);
  border-radius: var(--r-md);
}

/* --- WHATSAPP FLOAT --- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 97;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: #25D366;
  color: var(--white);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: var(--sh-lg);
  transition: all var(--duration) var(--ease-out);
  overflow: hidden;
}

.wa-float svg { width: 24px; height: 24px; flex-shrink: 0; }

.wa-float__label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.4s var(--ease-out), opacity var(--duration);
  opacity: 0;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg), 0 0 30px rgba(37,211,102,0.3);
}

.wa-float:hover .wa-float__label {
  max-width: 120px;
  opacity: 1;
}

/* --- Big Statement --- */
.big-statement {
  padding: var(--sp-12) 0;
  text-align: center;
}

.big-statement h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
  color: var(--text-mid);
}

.big-statement h2 em {
  font-style: normal;
  color: var(--forest);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card--wide { grid-column: span 1; }
  .philosophy { grid-template-columns: 1fr; gap: var(--sp-5); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
  .contact-split { grid-template-columns: 1fr; }
  .conditions-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Layout */
  .container { padding: 0 var(--sp-5); }
  body { padding-bottom: 68px; }

  /* Header */
  .header__nav, .header__cta, .header__socials { display: none; }
  .hamburger { display: flex; }
  .header__inner { padding: 0 var(--sp-5); }
  .header__logo { margin-left: calc(var(--sp-3) * -1); }
  .header__logo img { width: 144px; height: 52px; }

  /* Typography */
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }

  /* Hero */
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); line-height: 1.15; }
  .hero__content { padding: var(--sp-12) 0 var(--sp-10); }
  .hero__sub { font-size: var(--text-base); margin-bottom: var(--sp-8); }
  .hero__eyebrow { margin-bottom: var(--sp-5); }
  .hero__gradient {
    background:
      linear-gradient(180deg, rgba(23,72,102,0.34) 0%, transparent 30%),
      linear-gradient(0deg, rgba(23,72,102,0.78) 0%, transparent 40%),
      rgba(23,72,102,0.68);
  }
  .hero__actions { flex-direction: column; gap: var(--sp-3); }
  .hero__actions .btn { width: 100%; padding: 16px 32px; }
  .hero__scroll { display: none; }

  /* Marquee */
  .marquee__track { gap: var(--sp-8); }
  .marquee { padding: var(--sp-4) 0; }

  /* Sections */
  .sec { padding: var(--sp-12) 0; }
  .sec-header { margin-bottom: var(--sp-10); }

  /* Bento / Cards */
  .bento { grid-template-columns: 1fr; gap: var(--sp-4); }
  .bento-card { padding: var(--sp-4) 0 var(--sp-4) var(--sp-5); }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  .service-card { aspect-ratio: 1/1; }

  /* Team */
  .team-list { gap: var(--sp-16); }
  .team-feature,
  .team-feature--reverse {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }
  .team-feature--reverse .team-feature__media { order: 0; }
  .team-feature__media {
    aspect-ratio: 4/5;
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }
  .team-feature__name { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .team-feature__bio { font-size: var(--text-base); }

  /* Steps */
  .steps { grid-template-columns: 1fr; gap: var(--sp-2); }
  .step { border-radius: var(--r-lg) !important; padding: var(--sp-6) var(--sp-5); }
  .step__num { font-size: var(--text-3xl); }

  /* Philosophy */
  .philosophy__side { padding: var(--sp-8) var(--sp-6); }

  /* About intro */
  .about-intro__image::after { display: none; }

  /* Testimonials */
  .testimonial-card { padding: var(--sp-6); }

  /* CTA */
  .cta-banner { padding: var(--sp-10) var(--sp-6); border-radius: var(--r-xl); }
  .cta-banner h2 { font-size: var(--text-2xl); }

  /* Page banner */
  .page-banner { padding: var(--sp-16) 0 var(--sp-10); }
  .page-banner h1 { font-size: var(--text-3xl); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer { padding: var(--sp-12) 0 var(--sp-8); }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .contact-form, .contact-social-panel { padding: var(--sp-6); }

  /* Grids */
  .beliefs__list { grid-template-columns: 1fr; gap: var(--sp-8); }
  .conditions-page-grid { grid-template-columns: 1fr; gap: var(--sp-4); }

  /* Service detail pages */
  .service-detail { padding: var(--sp-8) 0; gap: var(--sp-6); }

  /* Mobile bottom bar */
  .mobile-bar { display: block; padding: var(--sp-2) var(--sp-3); }
  .mobile-bar__inner { gap: var(--sp-2); }
  .mobile-bar .btn { padding: 10px 8px; font-size: 0.7rem; gap: var(--sp-2); }

  /* WhatsApp float */
  .wa-float { bottom: 76px; right: 12px; padding: var(--sp-3) var(--sp-4); }
  .wa-float svg { width: 22px; height: 22px; }

  /* Big statement */
  .big-statement { padding: var(--sp-12) 0; }
  .big-statement h2 { font-size: var(--text-2xl); }
}
