/* ============================================================
   Rose Reilly Psychology — Stylesheet
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --sage:          #6B8F71;
  --sage-dark:     #4A6A50;
  --sage-mid:      #8DAA93;
  --sage-light:    #EBF1EC;
  --sage-pale:     #F2F6F3;
  --cream:         #F5F1EB;
  --cream-dark:    #EDE8DF;
  --warm-white:    #FDFCFA;
  --accent:        #B8906A;
  --accent-light:  #F5E9DC;
  --charcoal:      #2C3233;
  --charcoal-mid:  #4A5568;
  --grey:          #6B7280;
  --light-grey:    #D1CBC2;
  --border:        #E2DDD6;
  --white:         #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width:  1160px;
  --gap:        2rem;
  --radius:     6px;
  --radius-lg:  12px;

  --shadow-sm: 0 1px 3px rgba(44,50,51,0.06), 0 1px 2px rgba(44,50,51,0.04);
  --shadow:    0 4px 16px rgba(44,50,51,0.07), 0 2px 6px rgba(44,50,51,0.04);
  --shadow-lg: 0 8px 32px rgba(44,50,51,0.09), 0 4px 12px rgba(44,50,51,0.05);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
a:hover { color: var(--accent); }

ul { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 500; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-sans); letter-spacing: 0.01em; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

/* ── Utility ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }

.section-white  { background: var(--white); }
.section-cream  { background: var(--cream); }
.section-warm   { background: var(--warm-white); }
.section-sage   { background: var(--sage); }

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
  text-decoration: none;
}
.eyebrow-light { color: var(--sage-light); }

h2.light { color: var(--white); }

.section-intro {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 640px;
  margin-top: 0.75rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.section-intro-light { color: rgba(255,255,255,0.82); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-large  { padding: 1rem 2.4rem; font-size: 1rem; }
.btn-full   { display: block; text-align: center; width: 100%; }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.nav.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(253, 252, 250, 0.97);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
  flex-shrink: 0;
}
.nav-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.nav-credential {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: var(--charcoal); background: var(--sage-pale); }

.nav-links .nav-cta {
  background: var(--sage);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  margin-left: 0.5rem;
}
.nav-links .nav-cta:hover { background: var(--sage-dark); color: var(--white); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.4rem;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--cream) 0%, var(--sage-light) 60%, #ddeadf 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.is-active {
  opacity: 0.3;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
}
.hero-circle-1 {
  width: 680px;
  height: 680px;
  background: rgba(107, 143, 113, 0.10);
  top: -220px;
  right: -140px;
}
.hero-circle-2 {
  width: 420px;
  height: 420px;
  background: rgba(184, 144, 106, 0.07);
  bottom: -120px;
  left: -80px;
}
.hero-circle-3 {
  width: 260px;
  height: 260px;
  background: rgba(107, 143, 113, 0.07);
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.hero-content .eyebrow { margin-bottom: 1.25rem; }

.hero-content h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--charcoal-mid);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--sage-dark);
  margin-top: 0.25rem;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── About ─────────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.about-main h2 { margin-bottom: 0.5rem; }

.credentials {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.75rem;
}

.about-main p { color: var(--charcoal-mid); }

.approaches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}
.approaches span {
  background: var(--sage-light);
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  line-height: 1.4;
}

.about-testimonial {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal-mid);
  border-left: 3px solid var(--sage-mid);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}

.availability-note {
  margin-top: 1.75rem;
  padding: 1.1rem 1.4rem;
  background: var(--sage-light);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.about-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

.about-portrait-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.about-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.info-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
}
.info-card h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.9rem;
}
.info-card li {
  font-size: 0.88rem;
  color: var(--charcoal-mid);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.info-card li:last-child { border-bottom: none; }
.info-card li::before {
  content: '–';
  color: var(--sage-mid);
  margin-right: 0.5rem;
}

/* ── Areas of Practice ─────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.area-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 221, 214, 0.6);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.area-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.area-marker {
  width: 32px;
  height: 3px;
  background: var(--sage);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.area-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}

.area-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── Referrals, Fees & Rebates ─────────────────────────────── */
.referrals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.referral-block h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sage-light);
  margin-bottom: 1.75rem;
}

.referral-item {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.referral-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.referral-item h4 {
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.referral-item p { font-size: 0.92rem; color: var(--charcoal-mid); }

.detail-list {
  margin-top: 0.6rem;
}
.detail-list li {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  padding: 0.2rem 0;
}
.detail-list li::before {
  content: '→';
  color: var(--sage);
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.availability-banner {
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  font-size: 0.92rem;
  color: var(--charcoal);
  border-left: 3px solid var(--accent);
}

/* ── Telehealth ────────────────────────────────────────────── */
.section-sage .eyebrow-light { color: rgba(255,255,255,0.7); }
.section-sage h2 { color: var(--white); margin-bottom: 0.5rem; }

.telehealth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.telehealth-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(4px);
  transition: background 0.22s ease;
}
.telehealth-card:hover { background: rgba(255,255,255,0.18); }

.telehealth-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.telehealth-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.telehealth-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.booking-via {
  text-align: center;
  font-size: 0.76rem;
  color: var(--grey);
  margin-top: 0.6rem;
  margin-bottom: 0;
}
.coreplus-link {
  color: var(--sage-dark);
  font-weight: 500;
  text-decoration: none;
}
.coreplus-link:hover { color: var(--accent); text-decoration: underline; }

.form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.75rem 0;
  color: var(--grey);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }

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

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.required { color: var(--accent); }

.form-group input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--light-grey); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,143,113,0.12);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-consent .checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.6;
  font-weight: 400;
}
.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--sage);
  cursor: pointer;
  border-radius: 3px;
}

/* Contact sidebar */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-detail-block {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.contact-detail-block:last-of-type { border-bottom: none; }

.contact-detail-block h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.9rem;
}
.contact-detail-block p {
  font-size: 0.9rem;
  color: var(--charcoal-mid);
  margin-bottom: 0.75rem;
}

.small-note {
  font-size: 0.8rem;
  color: var(--grey);
}

.crisis-box {
  background: #FEF3F0;
  border: 1px solid #FDDDD6;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
}
.crisis-box h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C0392B;
  margin-bottom: 0.6rem;
}
.crisis-box p {
  font-size: 0.84rem;
  color: var(--charcoal-mid);
  margin-bottom: 0.5rem;
}
.crisis-box ul { margin-top: 0.3rem; }
.crisis-box li {
  font-size: 0.84rem;
  color: var(--charcoal-mid);
  padding: 0.2rem 0;
  line-height: 1.5;
}

.policy-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.policy-links a {
  font-size: 0.8rem;
  font-weight: 500;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.footer-brand { flex: 1; min-width: 180px; }
.footer-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}
.footer-credential {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--white); }

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.75); }

.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.crisis-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}
.copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-layout   { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-sidebar  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

  .referrals-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .crisis-box     { grid-column: 1 / -1; }
  .policy-links   { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem; }

  .section { padding: 3.5rem 0; }

  /* Nav mobile */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.65rem 0.75rem; font-size: 0.95rem; }
  .nav-links .nav-cta { margin-left: 0; text-align: center; margin-top: 0.5rem; }

  /* Hero */
  .hero-circle-1 { width: 400px; height: 400px; top: -120px; right: -120px; }
  .hero-circle-2 { display: none; }

  /* Areas */
  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  /* Telehealth */
  .telehealth-grid { grid-template-columns: 1fr 1fr; }

  /* About sidebar */
  .about-sidebar { grid-template-columns: 1fr; }

  /* Contact */
  .contact-info { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
  .footer-legal-links { flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .areas-grid       { grid-template-columns: 1fr; }
  .telehealth-grid  { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
