/* ============================================================
   VALET VET — Premium Redesign 2026
   Fonts: BioRhyme 800 (headings) + Inter (body)
   Brand: Navy #002A3A | Blue #326295 | Red #CB3338 | Gold #C6893F | Cream #F5EFE6
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=BioRhyme:wght@800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- Typography Helpers ---- */
.bio-rhyme { font-family: 'BioRhyme', Georgia, serif; font-weight: 800; }
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #326295;
  margin-bottom: 16px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-logo img { height: 54px; width: auto; }
.nav-links {
  display: flex;
  gap: 36px;
  margin: 0 auto;
  list-style: none;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: #002A3A;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: #326295; }
.nav-cta {
  display: inline-block;
  background: #CB3338;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 24px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: #a82528; transform: translateY(-1px); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #002A3A;
  transition: all 0.3s;
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #002A3A;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-overlay.active { display: flex; }
.nav-overlay a {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.nav-overlay .nav-cta { font-size: 1rem; margin-top: 8px; }
.nav-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   HERO — Split Screen
   ============================================================ */
.hero {
  display: flex;
  min-height: 100dvh;
  position: relative;
}
.hero-left {
  width: 58%;
  background: #002A3A;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 80px;
  position: relative;
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C6893F;
  margin-bottom: 24px;
}
.hero-h1 {
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1.0;
  color: #fff;
  margin-bottom: 28px;
}
.hero-h1 .underline-word {
  position: relative;
  display: inline-block;
}
.hero-h1 .underline-word::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 5px;
  background: #CB3338;
  border-radius: 2px;
}
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  display: inline-block;
  background: #CB3338;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.925rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #a82528; transform: translateY(-1px); }
.btn-ghost-white {
  display: inline-block;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.925rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.hero-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 48px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(198,137,63,0.18);
  border: 1px solid rgba(198,137,63,0.4);
  color: #C6893F;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
}
.hero-right {
  width: 42%;
  background: #F5EFE6;
  position: relative;
  overflow: hidden;
}
.hero-right-photo {
  position: absolute;
  inset: 0;
  background-image: url('../img/photos/hero.jpg');
  background-size: cover;
  background-position: center;
}
.hero-right-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #F5EFE6 0%, transparent 100%);
  z-index: 1;
}
.hero-logo-overlay {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  height: 120px;
  width: auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.15));
}

/* ============================================================
   MARQUEE BAR
   ============================================================ */
.marquee-bar {
  background: #002A3A;
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-content {
  color: #C6893F;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 2px;
  padding-right: 60px;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  display: flex;
  align-items: stretch;
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}
.intro-photo {
  width: 45%;
  flex-shrink: 0;
  min-height: 560px;
  background-image: url('../img/photos/woman-cat.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 0 24px 24px 0;
}
.intro-content {
  width: 55%;
  padding: 60px 80px 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-h2 {
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: #002A3A;
  line-height: 1.1;
  margin-bottom: 28px;
}
.intro-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 8px;
}
.intro-body + .intro-body { margin-top: 16px; }
.intro-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #e8e0d5;
}
.stat-item {}
.stat-number {
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: 3rem;
  color: #002A3A;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #888;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: #F5EFE6;
  padding: 100px 0;
}
.services-header {
  text-align: center;
  margin-bottom: 72px;
  padding: 0 48px;
}
.services-h2 {
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: #002A3A;
  margin-top: 8px;
}
.services-inner {
  display: flex;
  gap: 0;
  padding: 0 80px;
  max-width: 1320px;
  margin: 0 auto;
}
.services-sticky {
  width: 40%;
  padding-right: 80px;
  position: relative;
}
.services-sticky-inner {
  position: sticky;
  top: 120px;
}
.services-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 32px;
}
.services-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #326295;
  border-bottom: 2px solid #326295;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.services-link:hover { color: #002A3A; border-color: #002A3A; }
.services-list {
  width: 60%;
  list-style: none;
}
.service-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,42,58,0.1);
  cursor: default;
  transition: all 0.2s;
  padding-left: 16px;
  border-left: 4px solid transparent;
}
.service-item:hover {
  border-left-color: #CB3338;
  padding-left: 20px;
}
.service-item:hover .service-name { color: #326295; }
.service-num {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  color: #C6893F;
  letter-spacing: 2px;
  min-width: 28px;
}
.service-name {
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #002A3A;
  transition: color 0.2s;
}
.service-item-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #777;
  margin-top: 4px;
  line-height: 1.5;
}
.services-photos {
  display: flex;
  height: 280px;
  margin-top: 72px;
  overflow: hidden;
}
.services-photos img {
  width: 33.333%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.services-photos img:hover { transform: scale(1.03); }

/* ============================================================
   PHOTO MOMENT
   ============================================================ */
.photo-moment {
  height: 500px;
  background-image: url('../img/photos/vet-dog.jpg');
  background-size: cover;
  background-position: center 35%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.photo-moment-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,42,58,0.6);
}
.photo-moment-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}
.photo-moment-h2 {
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.photo-moment-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: #fff;
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.testimonials-h2 {
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #002A3A;
  margin-bottom: 56px;
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 32px rgba(0,42,58,0.07);
  position: relative;
  overflow: hidden;
}
.testimonial-quote-deco {
  position: absolute;
  top: -12px;
  left: 20px;
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: 8rem;
  color: #F5EFE6;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.testimonial-stars {
  color: #C6893F;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.testimonial-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  color: #444;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #002A3A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #002A3A;
}
.author-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: #326295;
  background: rgba(50,98,149,0.1);
  padding: 2px 8px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

/* ============================================================
   WELLNESS
   ============================================================ */
.wellness-section {
  background: #002A3A;
  padding: 100px 80px;
}
.wellness-inner {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.wellness-left {
  flex: 1;
  padding-right: 20px;
}
.wellness-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C6893F;
  margin-bottom: 20px;
}
.wellness-h2 {
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.wellness-body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 32px;
}
.wellness-checks {
  list-style: none;
  margin-bottom: 40px;
}
.wellness-checks li {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}
.wellness-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C6893F;
  font-weight: 700;
}
.wellness-right {
  flex: 1;
}
.wellness-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  border-top: 4px solid #C6893F;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.wellness-card-price {
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: #002A3A;
  line-height: 1;
  margin-bottom: 4px;
}
.wellness-card-price span {
  font-size: 1.2rem;
  color: #888;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.wellness-card-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 28px;
}
.wellness-card-features {
  list-style: none;
  border-top: 1px solid #eee;
  padding-top: 24px;
}
.wellness-card-features li {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #444;
  padding: 9px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}
.wellness-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #326295;
  font-weight: 700;
}
.wellness-card-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 24px;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-section {
  background: #F5EFE6;
  padding: 100px 80px;
}
.team-h2 {
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #002A3A;
  text-align: center;
  margin-bottom: 36px;
}
.team-banner {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 56px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.doctor-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,42,58,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,42,58,0.12);
}
.doctor-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #002A3A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin: 0 auto 16px;
}
.doctor-card.founder .doctor-avatar {
  background: linear-gradient(135deg, #002A3A, #C6893F);
}
.founder-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C6893F, #e8a84e);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.doctor-name {
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #002A3A;
  line-height: 1.2;
  margin-bottom: 6px;
}
.doctor-role {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  color: #326295;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.doctor-bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #777;
  line-height: 1.6;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-section {
  background: #fff;
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.blog-h2 {
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #002A3A;
  margin-bottom: 48px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,42,58,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,42,58,0.1);
}
.blog-card.featured { grid-row: 1 / 3; }
.blog-card-img {
  width: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
.blog-card.featured .blog-card-img { height: 260px; }
.blog-card:not(.featured) .blog-card-img { height: 160px; }
.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-category {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #326295;
  margin-bottom: 10px;
}
.blog-title {
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #002A3A;
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-card.featured .blog-title { font-size: 1.4rem; }
.blog-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  flex: 1;
}
.blog-read-more {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: #326295;
  margin-top: 16px;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: #CB3338;
  padding: 64px 80px;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1240px;
  margin: 0 auto;
}
.cta-strip-h2 {
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.cta-strip-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}
.cta-strip-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  flex-shrink: 0;
}
.btn-outline-white {
  display: inline-block;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.925rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid #fff;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.cta-phone {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #002A3A;
  padding: 72px 80px 32px;
  color: rgba(255,255,255,0.72);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-logo {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-brand-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: #C6893F; color: #C6893F; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover, .footer-col ul li:hover { color: #C6893F; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-badges {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

/* ============================================================
   INNER PAGE STYLES
   ============================================================ */
.page-hero {
  background: #002A3A;
  padding: 100px 80px 80px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'BioRhyme', Georgia, serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.page-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 80px;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { flex-direction: column; min-height: auto; }
  .hero-left {
    width: 100%;
    padding: 60px 32px 48px;
  }
  .hero-right {
    width: 100%;
    height: 320px;
  }
  .hero-logo-overlay { height: 80px; }

  .intro-strip { flex-direction: column; }
  .intro-photo { width: 100%; min-height: 300px; border-radius: 0; }
  .intro-content { width: 100%; padding: 48px 32px; }
  .intro-stats { gap: 24px; }

  .services-inner { flex-direction: column; padding: 0 32px; }
  .services-sticky, .services-list { width: 100%; }
  .services-sticky { padding-right: 0; margin-bottom: 32px; }
  .services-sticky-inner { position: static; }
  .services-photos { flex-direction: column; height: auto; }
  .services-photos img { width: 100%; height: 200px; }

  .testimonials-section { padding: 60px 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .wellness-section { padding: 72px 32px; }
  .wellness-inner { flex-direction: column; gap: 48px; }

  .team-section { padding: 72px 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .blog-section { padding: 72px 32px; }
  .blog-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .blog-card.featured { grid-row: auto; }

  .cta-strip { padding: 48px 32px; }
  .cta-strip-inner { flex-direction: column; gap: 32px; }

  .footer { padding: 56px 32px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

  .page-hero { padding: 72px 32px 60px; }
  .page-content { padding: 48px 32px; }
}

@media (max-width: 480px) {
  .hero-left { padding: 48px 24px 40px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .services-header { padding: 0 24px; }
}
