/* ===================================================================
   Dentist In The Park — Shared Styles
   Fresh modern redesign · natural, calm, trustworthy
   =================================================================== */

:root {
  /* Palette — Blue-Teal: calm clinical teal + warm terracotta accent */
  --forest: #3c6b74;      /* teal — primary */
  --forest-dark: #2e535a;
  --pine: #4f8b95;        /* mid teal for depth */
  --sage: #6f959c;        /* muted teal for secondary text */
  --mint: #d6e8ea;        /* soft teal tint */
  --mint-light: #eef6f7;  /* light teal highlight */
  --cream: #ffffff;       /* crisp white base */
  --cream-dark: #eef4f4;  /* faint teal-grey for alt sections */
  --leaf: #4f8b95;        /* teal */
  --leaf-deep: #2e535a;   /* deep teal */
  --gold: #cf8a4a;        /* warm gold (call buttons, footer accents) */
  --gold-dark: #c8401f;   /* vermilion accent — echoes the leaf logo (eyebrows, links) */
  --star: #e0a52e;        /* warm amber, review stars only */
  --ink: #25353a;         /* near-black teal-ink text */
  --ink-soft: #4c5f63;    /* secondary text */
  --white: #ffffff;
  --line: #e0eaeb;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(37,53,58,0.06);
  --shadow: 0 12px 32px rgba(37,53,58,0.10);
  --shadow-lg: 0 24px 60px rgba(37,53,58,0.16);
  --maxw: 1180px;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--forest); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.35rem; }
p { color: var(--ink-soft); }
a { color: var(--forest); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--sans); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 14px; display: inline-block;
}
.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  padding: 15px 30px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: all .22s ease; white-space: nowrap;
}
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--forest-dark); }
.btn-gold:hover { background: #a8702f; color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-ghost-light { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: var(--white); color: var(--forest); }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(60,107,116,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--sans); font-weight: 700; font-size: 1.22rem; letter-spacing: -0.01em; color: var(--white); }
.brand:hover { color: var(--white); }
.brand .logo-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); box-shadow: inset 0 0 0 1px var(--cream-dark);
  display: grid; place-items: center; flex-shrink: 0;
}
.brand .logo-mark svg { width: 30px; height: 30px; }
.brand .logo-leaves { height: 48px; width: auto; display: block; flex-shrink: 0; }
.brand .logo-lockup { height: 66px; width: auto; display: block; flex-shrink: 0; }
.footer-logo-link { display: inline-block; }
.footer-logo-link .logo-full { height: 92px; width: auto; display: block; }
.brand small { display: block; font-family: var(--sans); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a { font-weight: 500; font-size: 0.98rem; color: rgba(255,255,255,0.9); position: relative; }
.nav-links a:hover { color: var(--white); }
.nav-links a::after { content:''; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:var(--star); transition:width .25s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-weight: 600; color: var(--white); font-size: 0.98rem; }
.site-header .btn-primary { background: var(--white); color: var(--forest); }
.site-header .btn-primary:hover { background: var(--star); color: var(--forest-dark); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: .2s; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; background: var(--white); }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: 88px 0 96px; }
.hero h1 { margin-bottom: 22px; }
.hero p.lead { margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-badge { }
.hero-badge b { display: block; font-family: var(--serif); font-size: 1.8rem; color: var(--forest); }
.hero-badge span { font-size: 0.85rem; color: var(--ink-soft); }
.hero-visual { position: relative; }
.hero-visual .photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.4; background: var(--mint);
}
.hero-visual .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; bottom: 26px; left: -26px; background: var(--white);
  border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; max-width: 250px;
}
.hero-float .dot { width: 42px; height: 42px; border-radius: 50%; background: var(--mint); display: grid; place-items: center; flex-shrink: 0; color: var(--forest); }
.hero-float b { font-size: 0.95rem; color: var(--forest); font-family: var(--sans); }
.hero-float span { font-size: 0.8rem; color: var(--ink-soft); }

/* ---- Trust strip ---- */
.trust-strip { background: var(--forest); color: var(--white); }
.trust-strip .container { display: flex; justify-content: space-around; gap: 20px; flex-wrap: wrap; padding-top: 34px; padding-bottom: 34px; }
.trust-item { text-align: center; color: var(--white); }
.trust-item b { font-family: var(--serif); font-size: 2.2rem; display: block; }
.trust-item span { font-size: 0.85rem; opacity: 0.82; letter-spacing: 0.04em; }

/* ---- Section heading ---- */
.section-head { max-width: 680px; margin-bottom: 56px; }
.center .section-head, .section-head.center { margin-left: auto; margin-right: auto; }

/* ---- Cards / Services grid ---- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--mint); }
.card .icon {
  width: 58px; height: 58px; border-radius: 16px; background: var(--mint-light);
  display: grid; place-items: center; color: var(--forest); margin-bottom: 20px;
}
.card .icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.98rem; }
.card .more { font-weight: 600; font-size: 0.92rem; color: var(--gold-dark); margin-top: 16px; display: inline-flex; gap: 6px; align-items: center; }

/* ---- Feature / split rows ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; background: var(--mint); }
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.checklist { list-style: none; margin-top: 22px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--ink-soft); }
.checklist li svg { width: 22px; height: 22px; color: var(--forest); flex-shrink: 0; margin-top: 2px; }

/* ---- Welcome section ---- */
.welcome-visual { position: relative; }
.welcome-visual .media { aspect-ratio: 5/4; }
.stat-float {
  position: absolute; right: -20px; bottom: -20px;
  background: var(--forest); color: var(--white);
  border-radius: var(--radius); padding: 16px 26px; box-shadow: var(--shadow);
}
.stat-float b { font-family: var(--serif); font-size: 1.9rem; line-height: 1; display: block; color: var(--white); }
.stat-float span { font-size: 0.85rem; opacity: 0.85; }
#welcome .split { align-items: center; }
#welcome p { margin-bottom: 16px; }
@media (max-width: 720px){ .stat-float { right: 14px; bottom: 14px; padding: 12px 18px; } .stat-float b { font-size: 1.5rem; } }

/* ---- Alt background ---- */
.bg-mint { background: var(--mint-light); }
.bg-cream { background: var(--cream-dark); }
.bg-forest { background: var(--cream-dark); }
.bg-forest h2 { color: var(--forest); }
.bg-forest .eyebrow { color: var(--gold-dark); }
.bg-forest .lead, .bg-forest .section-head p { color: var(--ink-soft); }

/* ---- Testimonials ---- */
.quote-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.quote-card .stars { color: var(--star); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 14px; }
.quote-card p { color: var(--ink); font-size: 1.02rem; font-style: italic; margin-bottom: 18px; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.quote-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--forest); color: var(--white); display: grid; place-items: center; font-weight: 600; font-family: var(--sans); }
.quote-card .who b { color: var(--forest); font-family: var(--sans); font-size: 0.95rem; }
.quote-card .who span { display: block; font-size: 0.82rem; color: var(--ink-soft); }

/* ---- CTA band ---- */
.cta-band { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%); color: var(--white); border-radius: var(--radius-lg); padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 30px; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .btn { background: var(--white); color: var(--forest); border-color: var(--white); }
.cta-band .btn:hover { background: var(--mint); color: var(--forest-dark); border-color: var(--mint); }

/* ---- Footer ---- */
.site-footer { background: var(--forest-dark); color: rgba(255,255,255,0.8); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.site-footer h4 { color: var(--white); font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: var(--gold); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; font-size: 0.95rem; }
.footer-brand .brand { color: var(--white); margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 300px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.95rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ---- Page hero (inner pages) ---- */
.page-hero { background: linear-gradient(160deg, var(--mint-light), var(--cream)); padding: 72px 0 64px; text-align: center; border-bottom: 1px solid var(--line); }
.page-hero .breadcrumb { font-size: 0.85rem; color: var(--sage); margin-bottom: 14px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 620px; margin: 0 auto; font-size: 1.12rem; }

/* ---- Service detail blocks ---- */
.svc-block { border-top: 1px solid var(--line); padding: 56px 0; }
.svc-block:first-of-type { border-top: 0; }
.svc-head { display: flex; gap: 18px; align-items: center; margin-bottom: 22px; }
.svc-head .icon { width: 56px; height: 56px; border-radius: 16px; background: var(--mint-light); display: grid; place-items: center; color: var(--forest); flex-shrink: 0; }
.svc-head .icon svg { width: 30px; height: 30px; }
.svc-head h2 { margin: 0; font-size: 2rem; }
.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.pill { background: var(--mint-light); color: var(--forest); font-size: 0.82rem; font-weight: 600; padding: 7px 15px; border-radius: 999px; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--mint-light); color: var(--forest); display: grid; place-items: center; flex-shrink: 0; }
.info-row .ic svg { width: 22px; height: 22px; }
.info-row b { display: block; color: var(--forest); font-family: var(--sans); font-size: 1rem; }
.info-row span, .info-row a { font-size: 0.95rem; color: var(--ink-soft); }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--forest); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px var(--mint); background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 8px; }
.form-success { display: none; background: var(--mint-light); border: 1px solid var(--mint); border-radius: 12px; padding: 18px; color: var(--forest); font-weight: 500; margin-top: 16px; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin-top: 28px; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list li span:first-child { color: var(--ink); font-weight: 500; }
.hours-list li span:last-child { color: var(--ink-soft); }
.hours-list li.closed span:last-child { color: var(--gold-dark); }

/* ---- Values / about ---- */
.value-card { text-align: left; }
.value-card .num { font-family: var(--serif); font-size: 2.2rem; color: var(--mint); font-weight: 600; line-height: 1; margin-bottom: 12px; }

/* ---- FAQ ---- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--forest); border: 1px solid var(--forest-dark); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 22px 26px; font-weight: 600; color: var(--white); font-family: var(--serif); font-size: 1.1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--mint); font-family: var(--sans); }
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-body { padding: 0 26px 22px; color: rgba(255,255,255,0.85); font-size: 0.98rem; }
.faq-item .faq-body a { color: var(--mint); }

/* ---- Service article pages ---- */
.hero-copy .breadcrumb { font-size: 0.85rem; color: var(--sage); margin-bottom: 16px; }
.hero-copy .breadcrumb a { color: var(--sage); }
.hero-copy .breadcrumb a:hover { color: var(--forest); }
.hero-visual .photo.photo-wide { aspect-ratio: 3 / 2; }
.bg-forest .article h2, .bg-forest .article h3 { color: var(--forest); }
.bg-forest .article p, .bg-forest .article li { color: var(--ink-soft); }
.bg-forest .article strong { color: var(--forest); }
.bg-forest .article ul li::before { background: var(--sage); }
.bg-forest .article .callout { background: var(--mint-light); border-left-color: var(--sage); }
.bg-forest .article .callout p { color: var(--ink-soft); }
.svc-section .split { align-items: center; }
.svc-section .article { margin: 0; }
.svc-section .media { aspect-ratio: 3 / 2; }
.svc-section.center-copy .article { margin: 0 auto; text-align: center; max-width: 760px; }
.svc-section.center-copy .article ul { display: inline-block; text-align: left; }
.svc-card { background: var(--forest); color: var(--white); border-radius: var(--radius-lg); padding: 30px 28px; }
.svc-card .icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(255,255,255,0.12); color: var(--white); display: grid; place-items: center; margin-bottom: 18px; }
.svc-card .icon svg { width: 28px; height: 28px; }
.svc-card h3 { color: var(--white); font-family: var(--serif); font-size: 1.25rem; margin-bottom: 10px; }
.svc-card p { color: rgba(255,255,255,0.85); font-size: 0.98rem; }
.article { max-width: 820px; margin: 0 auto; }
.article > h2 { margin: 0 0 18px; }
.article > h2:first-child { margin-top: 0; }
.article h3 { font-size: 1.3rem; margin: 30px 0 10px; }
.article p { margin-bottom: 16px; }
.article ul { list-style: none; margin: 0 0 20px; padding: 0; }
.article ul li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--ink-soft); }
.article ul li::before { content: ''; position: absolute; left: 2px; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }
.article strong { color: var(--forest); font-weight: 600; }
.article .callout { background: var(--mint-light); border-left: 4px solid var(--sage); border-radius: 12px; padding: 22px 26px; margin: 26px 0; }
.article .callout p { margin-bottom: 10px; }
.article .callout p:last-child { margin-bottom: 0; }
.article .pill-row { margin: 4px 0 24px; }

/* ---- Latest Dental Insights ---- */
.insight-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; }
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--mint); }
.insight-thumb { aspect-ratio: 16/10; background: var(--mint); overflow: hidden; }
.insight-thumb img { width: 100%; height: 100%; object-fit: cover; }
.insight-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.insight-body h3 { font-size: 1.05rem; line-height: 1.3; margin-bottom: 8px; color: var(--forest); font-family: var(--serif); }
.insight-date { font-size: 0.8rem; color: var(--sage); margin-bottom: 12px; }
.insight-excerpt { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 18px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.insight-more { display: inline-flex; align-items: center; gap: 6px; background: var(--forest); color: var(--white); font-weight: 600; font-size: 0.85rem; padding: 9px 18px; border-radius: 999px; margin-top: auto; align-self: flex-start; transition: background .2s; }
.insight-card:hover .insight-more { background: var(--forest-dark); }
.insights-soon { max-width: 640px; margin: 0 auto; text-align: center; }
.insights-soon ul { list-style: none; margin-top: 24px; text-align: left; display: inline-block; }
.insights-soon li { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-family: var(--serif); font-size: 1.05rem; }
.insights-soon li:last-child { border-bottom: 0; }
.article-list { max-width: 880px; margin: 0 auto; }
.article-row { display: flex; justify-content: space-between; gap: 24px; align-items: baseline; padding: 22px 4px; border-bottom: 1px solid var(--line); transition: background .15s; }
.article-row:hover { background: var(--mint-light); }
.article-row .a-title { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; color: var(--forest); }
.article-row .a-meta { font-size: 0.8rem; color: var(--sage); white-space: nowrap; letter-spacing: 0.03em; }
.article-note { max-width: 720px; margin: 0 auto 8px; text-align: center; }

/* ---- Responsive ---- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 64px; }
  .hero-visual { max-width: 460px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .media { order: -1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-menu-open .nav-links {
    display: flex; position: absolute; top: 88px; left: 0; right: 0; flex-direction: column;
    background: var(--forest-dark); padding: 20px 24px; gap: 18px; border-bottom: 1px solid rgba(255,255,255,0.12); box-shadow: var(--shadow);
  }
  .nav-toggle { display: block; }
  .grid-3, .grid-4, .grid-2, .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-float { left: 8px; }
}

/* ---------- Article pages ---------- */
.article-hero { text-align: left; }
.article-hero .container { max-width: 860px; }
.article-hero .breadcrumb { margin-bottom: 14px; }
.article-hero h1 { margin: 6px 0 14px; }
.article-hero p, .article-byline { margin: 0; color: var(--ink-soft); font-size: 1rem; }
.article-full { font-size: 1.05rem; }
.article-full h2 { font-size: 1.6rem; margin: 40px 0 14px; }
.article-full h2:first-child { margin-top: 0; }
.article-full h3 { margin-top: 28px; }
.article-full ol { margin: 0 0 20px; padding-left: 24px; }
.article-full ol li { margin-bottom: 10px; color: var(--ink-soft); padding-left: 6px; }
.article-full ol li::marker { color: var(--pine); font-weight: 600; }
.back-articles { max-width: 820px; margin: 0 auto 36px; }

/* ---------- Payment / affordability ---------- */
.pay-band { display:flex; gap:22px; align-items:center; background:var(--mint-light); border:1px solid var(--line); border-radius:var(--radius-lg); padding:26px 32px; max-width:940px; margin:0 auto; }
.pay-band .pay-icon { flex:none; width:54px; height:54px; border-radius:14px; background:var(--forest); color:#fff; display:flex; align-items:center; justify-content:center; }
.pay-band .pay-icon svg { width:27px; height:27px; }
.pay-band h3 { color:var(--forest); font-family:var(--serif); font-size:1.22rem; margin:0 0 5px; }
.pay-band p { margin:0; color:var(--ink-soft); font-size:0.98rem; }
@media (max-width:600px){ .pay-band { flex-direction:column; text-align:center; padding:26px 22px; } }
.pay-card { background:var(--white); border:1px solid var(--line); border-radius:var(--radius-lg); padding:32px 26px; text-align:center; }
.pay-card .icon { display:inline-flex; width:54px; height:54px; border-radius:14px; background:var(--mint); color:var(--forest); align-items:center; justify-content:center; margin-bottom:15px; }
.pay-card .icon svg { width:27px; height:27px; }
.pay-card h3 { color:var(--forest); font-family:var(--serif); font-size:1.16rem; margin-bottom:9px; }
.pay-card p { color:var(--ink-soft); font-size:0.95rem; margin:0; }

/* ---------- Services dropdown ---------- */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.dropdown-caret { width: 13px; height: 13px; opacity: .8; transition: transform .2s; }
.nav-links .has-dropdown:hover .dropdown-caret { transform: rotate(180deg); }
.nav-links .has-dropdown::after { content: ''; position: absolute; left: -12px; right: -12px; top: 100%; height: 18px; }
.nav-links .dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%);
  min-width: 242px; background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-lg); padding: 10px; list-style: none;
  opacity: 0; visibility: hidden; transition: opacity .18s ease, top .18s ease; z-index: 200;
}
.nav-links .has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; top: calc(100% + 12px); }
.nav-links .dropdown-menu li { margin: 0; }
.nav-links .dropdown-menu a { display: block; padding: 9px 14px; border-radius: 9px; color: var(--ink); font-weight: 500; font-size: 0.94rem; white-space: nowrap; }
.nav-links .dropdown-menu a::after { display: none; }
.nav-links .dropdown-menu a:hover { background: var(--mint-light); color: var(--forest); }
@media (max-width: 720px) {
  .nav-links .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; top: auto; box-shadow: none; border: 0; background: transparent; padding: 4px 0 2px 12px; min-width: 0; }
  .nav-links .dropdown-menu a { color: rgba(255,255,255,0.82); padding: 7px 0; }
  .nav-links .dropdown-menu a:hover { background: transparent; color: #fff; }
  .nav-links .has-dropdown::after { display: none; }
  .dropdown-caret { display: none; }
}

/* Form error state (Netlify submit failure) */
.form-success.form-error { background: #fdecec; border-color: #f3c3c3; color: #b0301f; }

/* ---------- Footer social links ---------- */
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.10); color: #fff; transition: background .2s ease, transform .2s ease; }
.footer-social a:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }

/* ---------- Areas we serve ---------- */
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 720px; margin: 0 auto; }
.area-tags span { background: var(--mint-light); border: 1px solid var(--line); color: var(--forest); border-radius: 999px; padding: 9px 18px; font-size: 0.96rem; font-weight: 500; }
.area-tags .area-primary { background: var(--forest); border-color: var(--forest); color: #fff; }
.find-note { margin-top: 16px; color: rgba(255,255,255,0.78); font-size: 0.95rem; max-width: 540px; }
