/* ==========================================================
   Direct Care Consulting — base stylesheet
   Recreated from WordPress/Elementor source screenshots.
   Colors/fonts approximated from screenshots — adjust in
   :root below once brand guide / real assets are supplied.
========================================================== */

:root {
  --navy: #0b1c6b;
  --navy-dark: #081550;
  --green: #8bc63f;
  --green-dark: #74ab2e;
  --text: #333333;
  --text-muted: #555555;
  --white: #ffffff;
  --off-white: #f7f8fb;
  --max-width: 1200px;
  --header-height: 90px;

  --font-heading: 'Baloo 2', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}

p { margin: 0 0 16px; }

a { color: inherit; text-decoration: none; }

.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 6px;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.btn-green {
  background: var(--green);
  color: var(--navy-dark);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(11, 28, 107, .35);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }

/* ==========================================================
   HEADER
========================================================== */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  color: var(--white);
}

.site-logo {
  height: 48px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-heading);
}
.main-nav a:hover { color: var(--green); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

/* ==========================================================
   PHOTO BANNERS (static hero + the "Life is better" banner —
   both share this treatment, no slider)
========================================================== */
.photo-banner {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background-color: var(--navy-dark);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 100%;
}

.hero-content--center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-content--center h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 32px;
}

.hero-content--right { display: flex; justify-content: flex-end; }
.hero-content-box { max-width: 560px; text-align: left; }
.hero-content-box h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.hero-content-box p {
  font-size: 1.1rem;
  margin: 20px 0 28px;
}

.accent-rule {
  display: block;
  width: 90px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 12px;
}

/* ==========================================================
   ABOUT SECTION
========================================================== */
.about-section {
  padding: 96px 0;
  background: var(--white);
}

.about-inner {
  max-width: 900px;
  text-align: center;
}

.eyebrow {
  color: var(--green);
  font-weight: 700;
  text-transform: none;
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.about-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 32px;
}

.about-inner p {
  color: var(--text);
  font-size: 1.05rem;
}

/* ==========================================================
   WHAT WE PROVIDE
========================================================== */
.provide-section {
  padding: 96px 0;
  background: var(--off-white);
}

.provide-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}

.provide-copy h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.provide-intro {
  max-width: 520px;
  color: var(--text);
  margin-bottom: 40px;
}

.provide-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.provide-cta {
  display: inline-block;
  margin-top: 32px;
}

.provide-item {
  position: relative;
  display: flex;
  gap: 20px;
  padding-bottom: 44px;
  padding-left: 4px;
}

.provide-item:last-child { padding-bottom: 0; }

/* connecting vertical line between check icons */
.provide-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -4px;
  width: 2px;
  background: var(--green);
}

.provide-check {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  position: relative;
  z-index: 1;
}
.provide-check svg { width: 20px; height: 20px; }

.provide-text h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
}
.provide-text p {
  color: var(--text-muted);
  font-size: .98rem;
  margin: 0;
}

.provide-media img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

/* ==========================================================
   OUR CEO
========================================================== */
.ceo-section {
  padding: 96px 0;
  background: var(--white);
}

.ceo-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.ceo-media img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
}

.ceo-copy h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 28px;
}

.ceo-copy p {
  color: var(--text);
  font-size: 1.02rem;
}

.ceo-signature {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  margin-top: 8px;
}

/* ==========================================================
   TESTIMONIALS
========================================================== */
.testimonials-section {
  padding: 96px 0;
  background: var(--off-white);
}

.testimonials-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
  max-width: 700px;
}

.testimonial-summary {
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 36px;
}
.testimonial-summary a {
  color: var(--navy);
}
.testimonial-summary a:hover {
  color: var(--green-dark);
}

.testimonial-carousel {
  position: relative;
}

.testimonial-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 2px 2px 12px;
}
.testimonial-grid::-webkit-scrollbar { display: none; }

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(11, 28, 107, .18);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-arrow--prev { left: -20px; }
.testimonial-arrow--next { right: -20px; }
.testimonial-arrow:hover { background: var(--green); color: var(--navy-dark); }

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  flex: 0 0 auto;
  width: min(360px, 82vw);
  scroll-snap-align: start;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(11, 28, 107, .08);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name { font-weight: 700; margin: 0; font-size: .98rem; }
.testimonial-date { margin: 0; font-size: .85rem; color: var(--text-muted); }

.google-icon { width: 20px; height: 20px; margin-left: auto; flex: 0 0 auto; }

.testimonial-stars {
  color: #fbbc04;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-size: 1rem;
}

.testimonial-text {
  color: var(--text);
  font-size: .95rem;
  margin-bottom: 8px;
}

.testimonial-more {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 700;
}
.testimonial-more:hover { color: var(--navy); }

/* ==========================================================
   FAQ
========================================================== */
.faq-section {
  background: var(--navy);
  padding: 96px 0;
}

.faq-section h2 {
  color: var(--white);
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 48px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  text-align: left;
  cursor: pointer;
}

.faq-chevron {
  transition: transform .2s ease;
  font-size: 1.3rem;
  flex: 0 0 auto;
}
.faq-item.is-open .faq-chevron { transform: rotate(90deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 24px;
}
.faq-item.is-open .faq-answer { max-height: 320px; padding-bottom: 20px; }

.faq-answer p {
  color: rgba(255,255,255,.85);
  margin: 0;
  font-size: .95rem;
}

/* ==========================================================
   SERVICES PAGE — page intro
========================================================== */
.page-intro {
  padding: 88px 0 64px;
  background: var(--white);
}

.page-intro-inner {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.page-intro h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 24px;
}

.page-intro-inner > p {
  color: var(--text);
  font-size: 1.05rem;
}

/* ==========================================================
   SERVICES PAGE — service blocks
========================================================== */
.service-block {
  padding: 64px 0;
  background: var(--white);
}

.service-block--alt {
  background: var(--off-white);
}

.service-block-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.service-icon svg { width: 30px; height: 30px; }

.service-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 12px;
}

.service-content > p {
  color: var(--text);
  max-width: 640px;
  margin-bottom: 20px;
}

.service-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tags li {
  background: var(--off-white);
  border: 1px solid #dbe6d4;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
}

.service-block--alt .service-tags li {
  background: var(--white);
}

/* ==========================================================
   SERVICES PAGE — Book a Consultation CTA
========================================================== */
.services-cta-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.services-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.services-cta-section h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  margin-bottom: 16px;
}

.services-cta-section p {
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
}

/* ==========================================================
   CONTACT PAGE
========================================================== */
.contact-section {
  padding: 24px 0 96px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-info {
  background: var(--off-white);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--text);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.contact-info-icon svg { width: 20px; height: 20px; }

.contact-info-label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

.contact-info-value {
  display: block;
  color: var(--text-muted);
  line-height: 1.5;
}

a.contact-info-item:hover .contact-info-value { color: var(--green-dark); }

.contact-info-social {
  display: flex;
  gap: 12px;
  padding-top: 4px;
}

.contact-form-wrap { padding-top: 8px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form label {
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-heading);
  margin-top: 14px;
}
.contact-form label:first-child { margin-top: 0; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #d7dbe6;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
  border-color: var(--green);
}

.contact-form-submit {
  align-self: flex-start;
  margin-top: 20px;
}

.contact-form-status {
  margin: 4px 0 0;
  font-size: .9rem;
  color: var(--green-dark);
  min-height: 1.2em;
}

/* Shared error state for any form status message (newsletter, contact, appointment) */
.newsletter-status.is-error,
.contact-form-status.is-error,
.appointment-status.is-error {
  color: #c0392b;
}

/* ==========================================================
   BOOK AN APPOINTMENT PAGE
========================================================== */
.appointment-section {
  padding: 24px 0 96px;
  background: var(--white);
}

.appointment-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--off-white);
  border-radius: 16px;
  padding: 44px;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: .95rem;
}

.form-field input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #d7dbe6;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
}
.form-field input:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
  border-color: var(--green);
}

.payment-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}

.payment-fieldset legend {
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: .95rem;
  padding: 0;
  margin-bottom: 10px;
}

.payment-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid #d7dbe6;
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  flex: 1 1 200px;
}
.payment-option:has(input:checked) {
  border-color: var(--green);
  background: #eef8e3;
  color: var(--navy);
}
.payment-option input { width: auto; margin: 0; accent-color: var(--green); }

.insurance-fields {
  border-top: 1px dashed #d7dbe6;
  padding-top: 20px;
}

.appointment-submit {
  align-self: flex-start;
  margin-top: 16px;
}

.appointment-status {
  margin: 12px 0 0;
  font-size: .9rem;
  color: var(--green-dark);
  min-height: 1.2em;
}

/* ==========================================================
   NOW ACCEPTING INSURANCE
========================================================== */
.insurance-section {
  padding: 96px 0;
  background: var(--white);
}

.insurance-card {
  background: #e7f8f3;
  border-radius: 16px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.insurance-card-text { flex: 1 1 420px; }

.insurance-card h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.insurance-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.insurance-card-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* ==========================================================
   NEWSLETTER
========================================================== */
.newsletter-section {
  padding: 96px 0;
  background: var(--white);
}

.newsletter-inner {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.newsletter-inner h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 20px;
}

.newsletter-inner > p {
  color: var(--text-muted);
  margin-bottom: 40px;
}

.newsletter-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.newsletter-form input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #d7dbe6;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
}
.newsletter-form input:focus {
  outline: 2px solid var(--green);
  outline-offset: 1px;
  border-color: var(--green);
}

.newsletter-submit {
  align-self: stretch;
  text-align: center;
}

.newsletter-status {
  margin: 0;
  font-size: .9rem;
  color: var(--green-dark);
  min-height: 1.2em;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================
   FOOTER
========================================================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .site-logo { height: 44px; }

.footer-contact { margin: 0 0 10px; }
.footer-contact a { color: rgba(255,255,255,.85); }
.footer-contact a:hover { color: var(--green); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { background: var(--green-dark); }

.footer-grid h3 {
  color: var(--green);
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a { color: rgba(255,255,255,.85); }
.footer-links a:hover { color: var(--green); }

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.9);
}

.footer-hours-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--green);
}

.footer-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-hours-list li {
  padding-left: 14px;
  border-left: 2px solid var(--green);
  color: rgba(255,255,255,.85);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
}

/* ==========================================================
   BACK TO TOP
========================================================== */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  z-index: 50;
}
.back-to-top.is-visible { display: flex; }
.back-to-top:hover { background: var(--green); color: var(--navy-dark); }

/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 900px) {
  .provide-inner { grid-template-columns: 1fr; }
  .provide-media { order: -1; }
  .ceo-inner { grid-template-columns: 1fr; }
  .testimonial-arrow--prev { left: 4px; }
  .testimonial-arrow--next { right: 4px; }
}

@media (max-width: 620px) {
  /* Touch devices swipe the carousel natively — arrows just get in the way. */
  .testimonial-arrow { display: none; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .newsletter-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .insurance-card { padding: 32px; }
  .insurance-card-btn { width: 100%; text-align: center; }
  .appointment-wrap { padding: 28px; }
}

@media (max-width: 780px) {
  .main-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--navy);
    display: none;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 24px;
  }
  .main-nav li { border-top: 1px solid rgba(255,255,255,.1); }
  .main-nav a { display: block; padding: 14px 0; }
  .nav-toggle { display: flex; }

  .service-block-inner { grid-template-columns: 1fr; }
  .service-icon { margin-bottom: 4px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row--2 { grid-template-columns: 1fr; }

  .photo-banner { min-height: 480px; }
  .hero-content--right { justify-content: flex-start; }
  .hero-content-box { text-align: center; max-width: 100%; }
  .hero-content--right .hero-content-box { margin: 0 auto; }
}

@media (max-width: 520px) {
  .photo-banner { min-height: 420px; }
  .about-section, .provide-section { padding: 64px 0; }
}
