/* ============================================================
   ESCONDIDO HILLS ANIMAL HOSPITAL
   Main Stylesheet — Warm & Welcoming Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700;900&display=swap');

/* --- CSS Variables --- */
:root {
  --forest-dark:   #1A3D0A;
  --forest:        #2C5A18;
  --sage:          #4D7E32;
  --sage-mid:      #6A9E50;
  --sage-light:    #8FBD72;
  --mint:          #C2D9B2;
  --cream:         #FAF7F1;
  --parchment:     #F2EBD9;
  --warm-white:    #FFFFFF;
  --tan:           #C9AA7C;
  --warm-brown:    #7A5C38;
  --charcoal:      #2A2A2A;
  --mid-gray:      #6B7280;
  --light-gray:    #9CA3AF;
  --border:        #E3D9C8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;

  --max-width: 1200px;
  --gutter:    2rem;
  --nav-h:     76px;

  --radius:    10px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow:    0 4px 24px rgba(0,0,0,0.09);
  --shadow-md: 0 8px 36px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.16);
  --t:         all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--charcoal); line-height: 1.7; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.25; font-weight: 600; color: var(--charcoal); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.05rem; }
p  { margin-bottom: 1rem; color: var(--mid-gray); }
p:last-child { margin-bottom: 0; }
strong { color: var(--charcoal); font-weight: 700; }

/* --- Utilities --- */
.container    { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.section-pad  { padding: 6rem 0; }
.section-pad-sm { padding: 3.5rem 0; }
.text-center  { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}
.section-title   { margin-bottom: 1rem; }
.section-sub     { font-size: 1.05rem; color: var(--mid-gray); max-width: 600px; }
.section-sub.center { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.02em; cursor: pointer; border: 2px solid transparent;
  transition: var(--t); white-space: nowrap;
}
.btn-primary  { background: var(--forest);  color: #fff; border-color: var(--forest); }
.btn-primary:hover  { background: var(--forest-dark); border-color: var(--forest-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(44,90,24,0.4); }
.btn-outline  { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover  { background: var(--forest); color: #fff; transform: translateY(-2px); }
.btn-white    { background: #fff; color: var(--forest); border-color: #fff; }
.btn-white:hover    { background: var(--parchment); transform: translateY(-2px); }
.btn-outline-white  { background: transparent; color: #fff; border-color: rgba(255,255,255,0.65); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-h);
  background: rgba(250,247,241,0.93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter);
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-main { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--forest); }
.nav-logo-sub  { font-size: 0.6rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-mid); margin-top: 2px; }
.nav-paw       { font-size: 1.4rem; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.88rem; font-weight: 700; color: var(--charcoal);
  transition: var(--t); position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--sage); transform: scaleX(0);
  transition: var(--t); transform-origin: center;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--forest); }

.nav-cta {
  background: var(--forest) !important; color: #fff !important;
  padding: 0.5rem 1.3rem; border-radius: 50px;
  font-size: 0.83rem !important;
}
.nav-cta:hover { background: var(--forest-dark) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--t); }

.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 1.5rem var(--gutter); flex-direction: column; gap: 0; z-index: 998;
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-weight: 700; font-size: 1rem; color: var(--charcoal);
  padding: 0.85rem 0; border-bottom: 1px solid var(--border);
  transition: var(--t);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--forest); padding-left: 0.5rem; }

/* ============================================================
   HOME HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(26,61,10,0.84) 0%, rgba(44,90,24,0.6) 55%, rgba(0,0,0,0.2) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px); padding: 0.4rem 1rem; border-radius: 50px;
  color: rgba(255,255,255,0.9); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage-light); }
.hero-title { color: #fff; font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.25rem; }
.hero-title em { font-style: normal; color: var(--sage-light); }
.hero-sub { color: rgba(255,255,255,0.88); font-size: 1.08rem; max-width: 520px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-note { margin-top: 2rem; display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 700; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { background: var(--forest); }
.stats-grid  { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: 1.75rem var(--gutter); text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-value { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--sage-light); display: block; line-height: 1.1; }
.stat-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 0.25rem; display: block; }

/* ============================================================
   ABOUT TEASER (HOME)
   ============================================================ */
.about-teaser       { background: var(--warm-white); }
.about-teaser-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-teaser-img   { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.about-teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--forest); color: #fff; padding: 0.75rem 1.25rem;
  border-radius: var(--radius); font-size: 0.82rem; font-weight: 700;
  box-shadow: var(--shadow);
}
.about-img-badge strong { display: block; font-size: 1.5rem; color: var(--sage-light); line-height: 1.1; }
.feature-list { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.93rem; color: var(--mid-gray); }
.feature-check { width: 20px; height: 20px; background: var(--mint); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; font-size: 0.65rem; color: var(--forest); font-weight: 900; }

/* ============================================================
   SERVICES CARDS (HOME GRID)
   ============================================================ */
.services-bg   { background: var(--parchment); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.service-card  { background: var(--warm-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--t); border: 1px solid var(--border); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--mint); }
.service-card-img  { position: relative; height: 190px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 1.5rem; }
.service-card-icon { font-size: 1.4rem; margin-bottom: 0.6rem; }
.service-card-body h3 { font-size: 1.1rem; color: var(--forest); margin-bottom: 0.4rem; }
.service-card-body p  { font-size: 0.86rem; line-height: 1.6; color: var(--mid-gray); margin: 0; }
.service-card-link { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.75rem; font-size: 0.82rem; font-weight: 700; color: var(--sage); }
.service-card-link:hover { color: var(--forest); }

/* ============================================================
   SERVICE ROWS (SERVICES PAGE)
   ============================================================ */
.service-row { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.service-row:last-of-type { border-bottom: none; }
.service-row.alt-bg { background: var(--parchment); }
.service-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.service-row-grid.reverse { direction: rtl; }
.service-row-grid.reverse > * { direction: ltr; }
.service-row-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.service-row-img img { width: 100%; height: 100%; object-fit: cover; }
.service-tag { display: inline-block; background: var(--mint); color: var(--forest); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 50px; margin-bottom: 0.6rem; }
.service-row-content h2 { color: var(--forest); margin-bottom: 0.75rem; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.bullet-list { margin: 1.25rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.bullet-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--mid-gray); }
.bullet-list li::before { content: ''; width: 7px; height: 7px; background: var(--sage); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-bg    { background: var(--forest-dark); }
.testimonials-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card   { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 2rem; transition: var(--t); }
.testimonial-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-4px); }
.stars              { color: #F5C542; font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text   { color: rgba(255,255,255,0.84); font-size: 0.94rem; font-style: italic; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--sage-mid); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.testimonial-name   { font-weight: 700; color: #fff; font-size: 0.88rem; }
.testimonial-pet    { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   PAYMENT STRIP
   ============================================================ */
.payment-strip  { background: var(--warm-white); padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.payment-inner  { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem 3rem; }
.payment-label  { font-size: 0.75rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-gray); }
.payment-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.payment-badge  { display: flex; align-items: center; gap: 0.4rem; background: var(--parchment); border: 1px solid var(--border); border-radius: 50px; padding: 0.45rem 1rem; font-size: 0.84rem; font-weight: 700; color: var(--charcoal); }

/* ============================================================
   HOURS STRIP (HOME)
   ============================================================ */
.hours-strip { background: var(--parchment); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hours-grid  { display: grid; grid-template-columns: repeat(3, 1fr); }
.hours-item  { padding: 2.5rem var(--gutter); text-align: center; border-right: 1px solid var(--border); }
.hours-item:last-child { border-right: none; }
.hours-icon  { font-size: 1.75rem; margin-bottom: 0.75rem; }
.hours-item h4 { font-family: var(--font-body); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.5rem; }
.hours-item p  { font-size: 0.9rem; font-weight: 700; color: var(--charcoal); margin: 0; }
.hours-item p span { display: block; font-weight: 400; color: var(--mid-gray); font-size: 0.82rem; margin-top: 0.2rem; }
.hours-row-table { width: 100%; text-align: left; }
.hours-row-table tr td { font-size: 0.83rem; padding: 0.15rem 0; }
.hours-row-table tr td:first-child { color: var(--mid-gray); width: 55%; }
.hours-row-table tr td:last-child  { font-weight: 700; color: var(--charcoal); }
.hours-row-table tr.closed td:last-child { color: var(--mid-gray); font-weight: 400; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner  { background: linear-gradient(135deg, var(--forest) 0%, var(--sage-mid) 100%); text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.82); max-width: 500px; margin: 0 auto 2rem; }
.cta-actions   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero { position: relative; height: 300px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; margin-top: var(--nav-h); }
.page-hero-bg      { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(26,61,10,0.78) 0%, rgba(44,90,24,0.65) 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 { color: #fff; margin-bottom: 0.6rem; }
.page-hero-content p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin: 0; }

/* ============================================================
   ABOUT PAGE — DOCTOR SECTION
   ============================================================ */
.doctor-section { background: var(--warm-white); }
.doctor-grid    { display: grid; grid-template-columns: 1fr 1.25fr; gap: 5rem; align-items: center; }
.doctor-img-wrap { position: relative; }
.doctor-img     { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-lg); }
.doctor-img img { width: 100%; height: 100%; object-fit: cover; }
.doctor-credential {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--forest); color: #fff; padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); text-align: center;
}
.doctor-credential strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--sage-light); line-height: 1.1; }
.doctor-credential span   { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.68); }
.credentials-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
.credential-tag   { background: var(--parchment); border: 1px solid var(--border); color: var(--forest); font-size: 0.78rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 50px; }

/* ============================================================
   PHILOSOPHY CARDS
   ============================================================ */
.philosophy-bg   { background: var(--parchment); }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.philosophy-card { background: var(--warm-white); border-radius: var(--radius-lg); padding: 2.25rem 2rem; border: 1px solid var(--border); text-align: center; transition: var(--t); }
.philosophy-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--mint); }
.philosophy-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.philosophy-card h3 { color: var(--forest); font-size: 1.2rem; margin-bottom: 0.75rem; }

/* ============================================================
   TIMELINE (ABOUT)
   ============================================================ */
.timeline-bg { background: var(--forest-dark); }
.timeline    { position: relative; max-width: 700px; margin: 3rem auto 0; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.15); }
.timeline-item { position: relative; margin-bottom: 2.5rem; padding-left: 1.5rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -3rem; top: 7px; width: 12px; height: 12px; border-radius: 50%; background: var(--sage-light); border: 3px solid var(--forest-dark); box-shadow: 0 0 0 2px var(--sage-light); }
.timeline-year   { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 0.25rem; }
.timeline-item h4 { color: #fff; font-size: 1.05rem; margin-bottom: 0.35rem; }
.timeline-item p  { color: rgba(255,255,255,0.62); font-size: 0.88rem; margin: 0; }

/* ============================================================
   WHY CHOOSE US (ABOUT)
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem; }
.why-card  { text-align: center; padding: 2rem 1.25rem; }
.why-icon  { font-size: 2.5rem; margin-bottom: 0.75rem; }
.why-card h4 { color: var(--forest); margin-bottom: 0.5rem; font-size: 1rem; }
.why-card p  { font-size: 0.85rem; margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.map-wrap     { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 460px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

.contact-form-card { background: var(--warm-white); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form-card h3 { color: var(--forest); margin-bottom: 0.4rem; }
.contact-form-card > p { font-size: 0.88rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem;
  color: var(--charcoal); background: var(--cream); transition: var(--t); outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--sage); background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(77,126,50,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success { display: none; background: var(--mint); color: var(--forest); padding: 1rem 1.25rem; border-radius: var(--radius); font-weight: 700; text-align: center; }

.contact-info-strip { background: var(--parchment); border-top: 1px solid var(--border); }
.contact-info-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.contact-info-card  { background: var(--warm-white); border-radius: var(--radius-lg); padding: 2rem; text-align: center; border: 1px solid var(--border); transition: var(--t); }
.contact-info-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-info-icon  { font-size: 2rem; margin-bottom: 0.75rem; }
.contact-info-card h4 { font-family: var(--font-body); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.5rem; }
.contact-info-card p  { font-size: 0.9rem; font-weight: 700; color: var(--charcoal); margin: 0; }
.contact-info-card p span { display: block; font-weight: 400; color: var(--mid-gray); font-size: 0.82rem; margin-top: 0.15rem; }
.contact-info-card a  { color: var(--forest); }
.contact-info-card a:hover { color: var(--sage); }

.appt-note { background: var(--forest); color: rgba(255,255,255,0.9); text-align: center; padding: 1.25rem var(--gutter); font-size: 0.9rem; }
.appt-note strong { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--charcoal); color: rgba(255,255,255,0.65); padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand h3 { font-family: var(--font-display); color: #fff; font-size: 1.3rem; margin-bottom: 0.25rem; }
.footer-brand .footer-tagline { font-size: 0.75rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-mid); margin: 0 0 1rem; }
.footer-brand p  { font-size: 0.84rem; max-width: 280px; line-height: 1.65; }
.footer-col h4   { font-family: var(--font-body); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
.footer-col ul   { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.86rem; color: rgba(255,255,255,0.62); transition: var(--t); }
.footer-col ul a:hover { color: var(--sage-light); padding-left: 4px; }
.footer-hours-list { display: flex; flex-direction: column; gap: 0.35rem; }
.fhr { display: flex; justify-content: space-between; font-size: 0.82rem; }
.fhr .day  { color: rgba(255,255,255,0.4); }
.fhr .time { color: rgba(255,255,255,0.65); font-weight: 700; }
.fhr.closed .time { color: rgba(255,255,255,0.3); font-weight: 400; }
.footer-bottom { padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; font-size: 0.76rem; color: rgba(255,255,255,0.28); flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--sage-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-teaser-grid,
  .doctor-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-teaser-img { max-width: 560px; }
  .doctor-img-wrap  { max-width: 480px; }
  .doctor-credential { right: 1rem; }

  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid      { grid-template-columns: repeat(2, 1fr); }
  .why-grid             { grid-template-columns: repeat(2, 1fr); }
  .service-row-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-row-grid.reverse { direction: ltr; }
  .contact-grid         { grid-template-columns: 1fr; }
  .map-wrap             { height: 350px; }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --gutter: 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding: 120px 0 5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .testimonials-grid,
  .services-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr 1fr; }
  .hours-grid      { grid-template-columns: 1fr; }
  .hours-item      { border-right: none; border-bottom: 1px solid var(--border); }
  .hours-item:last-child { border-bottom: none; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .page-hero         { height: 240px; }
  .hero-actions      { flex-direction: column; align-items: flex-start; }
  .section-pad       { padding: 4rem 0; }
}
