/* ============================================================
   Trinity Pediatrics PCPA — style.css
   Color palette derived from Dr. Grundy & team photography:
     - Magenta/Hot Pink  → scrubs (#C4306A, #D9558E, #F2C4D8)
     - Deep Burgundy     → photo shadows (#3D0A1E, #6B1535)
     - Warm Taupe/Tan    → skin tones & walls (#B09070, #D4C0A8, #F5EFE6)
     - White             → lab coat (#FFFFFF, #FDFAF7)
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

/* ── DESIGN TOKENS ── */
:root {
  /* Primary — Magenta Pink (scrubs) */
  --pink-deep:    #6B1535;   /* darkest — headlines on light */
  --pink-dark:    #A02356;   /* dark — hover states */
  --pink:         #C4306A;   /* primary brand accent */
  --pink-mid:     #D9558E;   /* buttons, links */
  --pink-light:   #F2C4D8;   /* tints, borders */
  --pink-pale:    #FDF0F5;   /* pale backgrounds */

  /* Neutral Warm — taupe/tan (walls & skin tones) */
  --taupe-dark:   #6B5A4A;   /* body text secondary */
  --taupe:        #B09070;   /* decorative elements */
  --taupe-light:  #D4C0A8;   /* borders, dividers */
  --taupe-pale:   #F5EFE6;   /* section backgrounds */
  --cream:        #FDFAF7;   /* page base */
  --white:        #FFFFFF;

  /* Accent — Burgundy (deep photo shadows) */
  --burgundy:     #3D0A1E;   /* footer, dark sections */
  --burgundy-mid: #6B1535;   /* headings in dark sections */

  /* Text */
  --text:         #2A1A20;   /* near-black, warm-tinted */
  --text-muted:   #7A5E68;   /* secondary text */
  --text-light:   #B09098;   /* placeholders, hints */

  /* Semantic */
  --border:       #E8D8E0;   /* default borders */
  --border-strong:#D9558E;   /* active/focus borders */

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

  /* Radii */
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-pill:  999px;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(100, 20, 50, 0.08);
  --shadow-md:    0 8px 32px rgba(100, 20, 50, 0.14);
  --shadow-lg:    0 20px 60px rgba(100, 20, 50, 0.18);
}

/* ── BODY ── */
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.07;
  color: var(--pink-deep);
  font-weight: 400;
  margin-bottom: 20px;
}

h1 em {
  font-style: italic;
  color: var(--pink);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--pink-deep);
  font-weight: 400;
  line-height: 1.13;
  margin-bottom: 16px;
}

h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--pink-deep);
  font-weight: 400;
  margin-bottom: 10px;
}

p { line-height: 1.65; }

a { color: var(--pink); text-decoration: none; }
a:hover { color: var(--pink-dark); text-decoration: underline; }

/* ── SECTION UTILITIES ── */
section { padding: 96px 5vw; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-mid);
  margin-bottom: 12px;
}

.section-intro {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 56px;
}

.section-bg-warm  { background: var(--taupe-pale); }
.section-bg-cream { background: var(--cream); }
.section-bg-dark  { background: var(--burgundy); color: #fff; }
.section-bg-pink  { background: var(--pink-pale); }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 250, 247, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--text);
}

.nav-logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-mark svg {
  width: 20px; height: 20px;
  fill: none; stroke: #fff; stroke-width: 2;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.1;
  color: var(--pink-deep);
}

.nav-brand-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--pink-deep); }

.nav-cta {
  background: var(--pink) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
  text-decoration: none !important;
}

.nav-cta:hover {
  background: var(--pink-dark) !important;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 18px rgba(196, 48, 106, 0.35);
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--pink-deep);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--pink);
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: var(--pink-pale);
  text-decoration: none;
  color: var(--pink-dark);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: background 0.2s;
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  padding: 68px 5vw 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-pale) 0%, transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--taupe-pale) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--pink-pale);
  color: var(--pink-dark);
  padding: 6px 15px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid var(--pink-light);
}

.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--pink-deep);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero image panel */
.hero-visual {
  position: relative;
  height: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-visual-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(253,250,247,0.96);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  max-width: 270px;
  border: 1px solid var(--border);
}

.hvb-top  { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.hvb-main { font-family: var(--font-display); font-size: 17px; color: var(--pink-deep); }
.hvb-sub  { font-size: 13px; color: var(--pink-mid); margin-top: 2px; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--burgundy);
  color: #fff;
  padding: 18px 5vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
}

.trust-item svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: var(--pink-light);
  stroke-width: 2;
  flex-shrink: 0;
}

/* ── WHY US CARDS ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-light);
}

.why-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: var(--pink);
  stroke-width: 1.8;
}

.why-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--pink-deep);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── SERVICES ── */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.services-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.services-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.services-img-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--pink-deep);
  border: 1px solid var(--border);
}

.services-list {
  list-style: none;
  display: grid;
  gap: 6px;
}

.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--taupe-pale);
  border-radius: var(--radius);
  padding: 18px 20px;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}

.services-list li:hover {
  border-color: var(--pink-light);
  background: var(--pink-pale);
}

.svc-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-icon svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: var(--pink);
  stroke-width: 2;
}

.svc-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--pink-deep);
}

.svc-text span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── DOCTOR SECTION ── */
#doctor {
  background: var(--burgundy);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

#doctor .section-label { color: var(--pink-light); }
#doctor h2 { color: #fff; }
#doctor .section-intro { color: rgba(255,255,255,0.72); }

.doctor-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(242, 196, 216, 0.25);
}

.doctor-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.doctor-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.cred-pill {
  background: rgba(242,196,216,0.15);
  border: 1px solid rgba(242,196,216,0.3);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 7px;
}

.cred-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink-light);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--pink-light);
  line-height: 1;
}

.t-stars {
  color: var(--pink);
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.t-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.t-author { display: flex; align-items: center; gap: 12px; }

.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--pink-dark);
  font-size: 13px;
  flex-shrink: 0;
  border: 2px solid var(--pink-light);
}

.t-name  { font-size: 14px; font-weight: 600; color: var(--pink-deep); }
.t-meta  { font-size: 12px; color: var(--text-muted); }

/* ── HOURS & LOCATION ── */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.info-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--pink-deep);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card-title svg {
  width: 20px; height: 20px;
  fill: none;
  stroke: var(--pink);
  stroke-width: 2;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--pink-deep);
  font-weight: 600;
}

.hours-table tr:last-child td { border-bottom: none; }

/* ── MAP ── */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.9);
}

.address-line {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.address-line svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: var(--pink);
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FAQ ── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.faq-list { display: grid; gap: 10px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open { border-color: var(--pink-light); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--pink-deep);
  text-align: left;
  gap: 12px;
}

.faq-q svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: var(--pink);
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-q svg { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }

/* ── APPOINTMENT FORM ── */
#appointment { background: var(--burgundy); }
#appointment .section-label { color: var(--pink-light); }
#appointment h2 { color: #fff; }
#appointment .section-intro { color: rgba(255,255,255,0.7); margin-bottom: 40px; }

.appt-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.appt-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.appt-form h3 {
  color: var(--pink-deep);
  margin-bottom: 24px;
  font-size: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

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

.form-consent {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 18px rgba(196, 48, 106, 0.35);
}

.form-submit:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success-icon { font-size: 52px; margin-bottom: 16px; }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--pink-deep);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Appointment aside */
.appt-aside { color: rgba(255,255,255,0.85); }

.aside-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.aside-item:last-child { border-bottom: none; }

.aside-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(242,196,216,0.15);
  border: 1px solid rgba(242,196,216,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aside-icon svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: var(--pink-light);
  stroke-width: 2;
}

.aside-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}

.aside-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

.aside-desc a {
  color: var(--pink-light);
  text-decoration: none;
}

.aside-desc a:hover {
  text-decoration: underline;
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 52px 5vw 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 9px;
  line-height: 1.5;
}

.footer-col a:hover { color: var(--pink-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--pink-light); }

/* ── PHOTO PLACEMENT GUIDE (comments for devs) ──
   images/ folder should contain:
     images/dr-grundy.png         → hero of #doctor section
     images/team.png              → hero section + services section
     images/[kids-1].jpg         → hero section alt or gallery
     images/[kids-2].jpg         → services section
   All <img> tags use relative paths: src="images/filename.png"
   ── */

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  #hero,
  .services-layout,
  .location-layout,
  .appt-layout,
  #doctor,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #hero { padding-top: 100px; }
  .hero-visual { height: 360px; }
  .doctor-img  { height: 340px; }

  .nav-links { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .form-row { grid-template-columns: 1fr; }

  section { padding: 64px 5vw; }
}

@media (max-width: 480px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .hero-actions { flex-direction: column; }
  .hero-stats   { gap: 20px; }
  .appt-form    { padding: 24px; }
}
