/* ============================================================
   Peter W. Mohn Jr., DDS, PC — Production stylesheet
   Audia Design | Platte County, MO
   ============================================================ */

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

:root {
  --navy:    #1a2e44;
  --teal:    #2a8a9f;
  --teal-lt: #5bbfd4;
  --teal-dk: #1d6a7a;
  --sky:     #3ba8c5;
  --cream:   #f8f5f0;
  --warm:    #f2ece2;
  --gold:    #c8974a;
  --text:    #2d2d2d;
  --muted:   #6b7280;
  --white:   #ffffff;
  --shadow:  0 4px 24px rgba(26,46,68,.10);
  --shadow-lg: 0 12px 48px rgba(26,46,68,.16);
  --radius:  12px;
  --font-head: 'Lora', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--navy);
}

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: block;
}
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 20px; }
.section-sub  { font-size: 1.05rem; color: var(--muted); max-width: 580px; margin-bottom: 48px; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
  border: none;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 4px 18px rgba(42,138,159,.35); }
.btn-primary:hover { background: var(--sky); box-shadow: 0 6px 24px rgba(42,138,159,.45); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: 0 4px 18px rgba(200,151,74,.35); }
.btn-gold:hover { background: #b8863b; }
.btn-white { background: var(--white); color: var(--teal); font-weight: 700; box-shadow: 0 4px 18px rgba(0,0,0,.15); }
.btn-white:hover { background: #eef8fa; transform: translateY(-2px); }

/* === NAV === */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(26,46,68,.08);
  box-shadow: 0 2px 12px rgba(26,46,68,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }
.nav-logo-sub { font-family: var(--font-body); font-size: .72rem; font-weight: 500; color: var(--teal); letter-spacing: .04em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: .875rem !important;
  transition: background .18s, transform .18s !important;
}
.nav-cta:hover { background: var(--sky) !important; transform: translateY(-1px); }
.nav-phone-link { font-weight: 600 !important; color: var(--navy) !important; font-size: .875rem !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mobile-nav a:last-child { border-bottom: none; }

/* === HERO (homepage) === */
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2e44 0%, #1d4a5c 45%, #2a7f9f 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,191,212,.2) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 100px 0 80px;
}
.hero-eyebrow {
  font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-lt);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: #9fd6d6; }
.hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 20px; margin-top: 44px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.65); font-size: .85rem; }
.hero-badge-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.hero-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 40px;
  display: flex; flex-direction: column;
  gap: 20px;
}
.hero-card-title { font-family: var(--font-head); font-size: 1.35rem; color: var(--white); margin-bottom: 4px; }
.hero-hours-grid { display: grid; gap: 10px; }
.hero-hours-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .9rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero-day { color: rgba(255,255,255,.65); }
.hero-time { color: var(--white); font-weight: 500; }
.closed { color: rgba(255,255,255,.35) !important; }
.hero-contact-row {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: rgba(255,255,255,.75);
}
.hero-contact-row a { color: #9fd6d6; font-weight: 600; transition: color .15s; }
.hero-contact-row a:hover { color: var(--white); }
.contact-icon {
  width: 28px; height: 28px;
  background: rgba(91,191,212,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0;
}

/* === PAGE HEADER (interior pages) === */
.page-header {
  background: linear-gradient(135deg, #1a2e44 0%, #1d4a5c 60%, #2a7f9f 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  top: -200px; right: -100px;
  pointer-events: none;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.page-header p {
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.page-header .breadcrumbs {
  position: relative; z-index: 1;
  margin-bottom: 18px;
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--teal-lt);
  text-transform: uppercase;
}
.page-header .breadcrumbs a { color: var(--teal-lt); }
.page-header .breadcrumbs a:hover { color: var(--white); }
.page-header .breadcrumbs span { color: rgba(255,255,255,.4); margin: 0 8px; }

/* === TRUST BAR === */
.trust-bar { padding: 28px 0; background: var(--navy); border-bottom: 3px solid var(--teal); }
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.75); font-size: .9rem; }
.trust-item strong { color: var(--white); }
.trust-divider { width: 1px; height: 28px; background: rgba(255,255,255,.15); }

/* === ABOUT === */
.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #c9d8e4;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  max-width: 140px;
}
.about-badge strong { display: block; font-size: 1.4rem; font-family: var(--font-head); }
.about-text h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); margin-bottom: 20px; }
.about-text p { color: #444; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.about-highlight { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text); }
.ah-icon {
  width: 26px; height: 26px;
  background: rgba(42,138,159,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0;
  margin-top: 2px; color: var(--teal);
}

/* === SERVICES GRID === */
.services-section { background: var(--white); }
.services-header { text-align: center; max-width: 600px; margin: 0 auto 52px; }
.services-header .section-sub { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; margin: 0; }
.service-card a {
  display: inline-block;
  margin-top: 12px;
  font-size: .85rem;
  color: var(--teal);
  font-weight: 600;
}
.service-card a:hover { color: var(--sky); }

/* === DEEP SERVICES (services.html) === */
.service-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  align-items: start;
}
.service-detail:last-child { border-bottom: none; }
.service-detail-icon {
  font-size: 2.4rem;
  background: var(--cream);
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-detail h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-family: var(--font-head);
}
.service-detail p { color: #444; }

/* === NEW PATIENTS === */
.np-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1d4a5c 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.np-section::before {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
  top: -200px; left: -100px;
}
.np-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.np-left h2 { color: var(--white); font-size: clamp(1.7rem, 2.8vw, 2.2rem); margin-bottom: 18px; }
.np-left p { color: rgba(255,255,255,.78); }
.np-steps { display: flex; flex-direction: column; gap: 20px; margin: 28px 0 32px; }
.np-step { display: flex; gap: 16px; align-items: flex-start; }
.np-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
  flex-shrink: 0;
}
.np-step-text h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.np-step-text p { color: rgba(255,255,255,.65); font-size: .875rem; margin: 0; }
.np-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 36px;
}
.np-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 20px; }
.np-insurance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.np-insurance-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .875rem; color: rgba(255,255,255,.78);
}
.np-insurance-item::before { content: '✓'; color: var(--teal-lt); font-weight: 700; flex-shrink: 0; }
.np-carecredit {
  background: rgba(91,191,212,.2);
  border: 1px solid rgba(91,191,212,.4);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: .875rem;
  color: rgba(255,255,255,.85);
  margin-top: 20px;
  line-height: 1.5;
}
.np-carecredit strong { color: var(--teal-lt); }

/* === HOURS & LOCATION === */
.location-section { background: var(--warm); }
.location-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.hours-card { background: var(--white); border-radius: 16px; padding: 36px; box-shadow: var(--shadow); }
.hours-card h3 { font-size: 1.2rem; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--teal); }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  font-size: .9rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day  { color: var(--muted); }
.hours-row .time { font-weight: 600; color: var(--navy); }
.hours-row .time.closed-txt { color: #d1452e; font-weight: 400; }

.contact-details {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 36px;
  box-shadow: var(--shadow);
  margin-top: 16px;
}
.contact-detail-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-size: .9rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.contact-detail-row:last-child { border-bottom: none; }
.cd-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; color: var(--teal); }
.cd-label { font-size: .78rem; color: var(--muted); display: block; margin-bottom: 2px; }
.cd-val { font-weight: 500; color: var(--navy); }
.cd-val a { color: var(--teal); transition: color .15s; }
.cd-val a:hover { color: var(--sky); }
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 440px;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  min-height: 440px;
  border: none;
  display: block;
}

/* === TESTIMONIALS === */
.testimonials-section { background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 4px solid var(--teal);
}
.t-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: .04em; }
.t-text {
  font-style: italic; color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
  font-family: var(--font-head);
  font-size: .975rem;
}
.t-author { font-size: .85rem; font-weight: 600; color: var(--navy); }
.t-note   { font-size: .78rem; color: var(--muted); margin-top: 4px; }
.t-source { font-size: .75rem; color: var(--teal); margin-top: 6px; font-weight: 500; }

/* === FAQ === */
.faq-section { background: var(--cream); }
.faq-header  { max-width: 600px; margin-bottom: 48px; }
.faq-list { max-width: 820px; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.07);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  color: var(--navy);
  font-size: .975rem;
}
.faq-q:hover { color: var(--teal); }
.faq-arrow { font-size: 1.2rem; color: var(--teal); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: .925rem;
  color: #444;
  line-height: 1.75;
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: 16px;
}

/* === CTA STRIP === */
.cta-strip { background: var(--teal); padding: 60px 0; text-align: center; }
.cta-strip h2 { color: var(--white); font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 12px; }
.cta-strip p  { color: rgba(255,255,255,.82); margin-bottom: 28px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btns .btn { min-width: 240px; }

/* === CONTACT FORM === */
.contact-section { background: var(--cream); padding: 80px 0; }
.contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: span 2; }
.field label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.field input,
.field select,
.field textarea {
  padding: 12px 16px;
  border: 1.5px solid #e0dbd2;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: border-color .15s;
  background: var(--white);
  color: var(--text);
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--teal); }
.field textarea { resize: vertical; min-height: 90px; }
.radio-row { display: flex; gap: 20px; padding: 4px 0; }
.radio-row label {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; cursor: pointer;
  font-weight: 400;
}
.radio-row input { accent-color: var(--teal); }

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}
.form-success.visible { display: block; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.form-success h3 { color: var(--teal); margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* === FOOTER === */
footer.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 28px;
}
.footer-brand h4 { font-family: var(--font-head); font-size: 1.05rem; color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 300px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-lt);
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-links a:hover { color: var(--white); }

.footer-social {
  margin-top: 18px;
  display: flex; gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  transition: background .15s, color .15s;
}
.footer-social a:hover { background: var(--teal); color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .15s; }
.footer-bottom a:hover { color: rgba(255,255,255,.75); }
.site-credit { color: rgba(255,255,255,.3); font-size: .78rem; }

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* === 404 PAGE === */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  text-align: center;
  padding: 80px 24px;
}
.error-page-content { max-width: 600px; }
.error-code {
  font-family: var(--font-head);
  font-size: clamp(5rem, 12vw, 8rem);
  color: var(--teal);
  line-height: 1;
  margin-bottom: 12px;
}
.error-page h1 { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 16px; }
.error-page p { color: var(--muted); margin-bottom: 32px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 72px 0 60px; }
  .hero-card { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 4/3; max-height: 380px; }
  .about-badge { bottom: -14px; right: 10px; }
  .np-inner { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 300px; }
  .map-wrap iframe { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) and (orientation: landscape), (max-width: 760px) {
  .nav-logo-name { font-size: .82rem; }
  .nav-logo-sub { display: none; }
  .nav-phone-link { display: none; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: .78rem; }
  .nav-cta { padding: 8px 14px !important; font-size: .78rem !important; }
}

@media (max-width: 700px) {
  .trust-bar { padding: 20px 0; }
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 8px;
    text-align: left;
  }
  .trust-divider { display: none; }
  .trust-item { font-size: .82rem; gap: 7px; }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .np-insurance-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 32px 20px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: span 1; }
  .service-detail { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 420px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
}
