:root {
  --bg: #fbfbf8;
  --panel: #f2ece1;
  --green: #2f5f55;
  --green-dark: #24493f;
  --text: #172a2a;
  --text-muted: #52655f;
  --border: #e4dfd3;
  --white: #ffffff;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: Arial, Helvetica, sans-serif;
  --container: 1180px;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
p { margin: 0 0 1em; color: var(--text-muted); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--green);
  color: var(--white);
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.link-arrow { font-weight: 700; font-size: 0.92rem; color: var(--text); }
.link-arrow .arrow { display: inline-block; margin-left: 6px; transition: transform 0.15s ease; }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 34px; height: 34px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.92rem;
  font-weight: 600;
}
.main-nav a:hover { color: var(--green); }
.header-schedule-btn { padding: 11px 22px; font-size: 0.9rem; white-space: nowrap; }
.nav-schedule-btn { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: transform 0.25s, opacity 0.25s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.hero-copy {
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
}
.hero-copy h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 22px; }
.hero-sub { font-size: 1.08rem; max-width: 440px; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin: 22px 0 26px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.88rem; color: var(--text-muted); }
.hero-media { position: relative; min-height: 320px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Patient shortcuts */
.shortcuts { border-bottom: 1px solid var(--border); }
.shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.shortcut-card {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
}
.shortcut-card:last-child { border-right: none; }
.shortcut-num { font-family: var(--font-serif); font-size: 1.3rem; color: var(--green); margin-bottom: 10px; }
.shortcut-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.shortcut-card p { font-size: 0.92rem; margin: 0; }

/* Section rhythm */
.section { padding: 90px 0; }
.section-narrow { max-width: 680px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* NUCCA / what we do */
.nucca-block h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.nucca-block p { font-size: 1.05rem; }

/* Steps (dark green) */
.steps-section { background: var(--green); color: var(--white); padding: 70px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.step-card { border-top: 2px solid rgba(255,255,255,0.35); padding-top: 20px; }
.step-num { font-family: var(--font-serif); font-size: 1.3rem; opacity: 0.8; margin-bottom: 10px; }
.step-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.step-card p { color: rgba(255,255,255,0.82); margin: 0; font-size: 0.94rem; }

/* Why patients visit / concerns */
.concerns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 40px;
}
.concern-item {
  background: var(--white);
  padding: 22px 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.concern-num { font-family: var(--font-serif); color: var(--green); font-size: 1rem; }
.concern-item span.label { font-weight: 600; font-size: 0.95rem; }

/* Testimonials carousel */
.section.alt { background: var(--panel); }
.testimonial-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 20px;
  margin-top: 30px;
}
.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 300px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--border);
}
.testimonial-card .cat { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.7rem; font-weight: 700; color: var(--green); margin-bottom: 12px; }
.testimonial-card blockquote { margin: 0 0 10px; font-family: var(--font-serif); font-size: 1.2rem; }
.testimonial-card p { font-size: 0.9rem; margin: 0; }

.featured-quote { text-align: center; max-width: 760px; margin: 0 auto; }
.featured-quote blockquote { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 16px; color: var(--text); text-wrap: balance; }
.featured-quote cite { font-style: normal; font-weight: 700; font-size: 0.9rem; color: var(--text-muted); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; background: var(--panel); }
.team-card .placeholder {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius); margin-bottom: 16px;
  background: var(--panel); display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem; font-weight: 600; border: 1px dashed var(--border);
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card p { font-size: 0.88rem; margin: 0; }

/* CTA / contact */
.cta-section { background: var(--green); color: var(--white); padding: 90px 0; }
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.4rem); }
.cta-section .eyebrow { color: rgba(255,255,255,0.75); }
.cta-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.cta-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 10px; }
.cta-info h4 { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; color: rgba(255,255,255,0.65); margin: 0 0 8px; font-weight: 700; }
.cta-info p, .cta-info a { color: rgba(255,255,255,0.92); margin: 0; font-size: 0.95rem; }
.cta-section .btn { background: var(--white); color: var(--green); }
.cta-section .btn:hover { background: var(--panel); }

/* Footer */
.site-footer { padding: 40px 0; text-align: center; }
.site-footer img { width: 30px; margin: 0 auto 10px; }
.site-footer .tag { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; }
.site-footer .copy { font-size: 0.78rem; color: var(--text-muted); opacity: 0.8; margin: 0; }

/* Mobile sticky call */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  z-index: 200;
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

/* New patient page specifics */
.np-hero { background: var(--panel); padding: 70px 0 60px; text-align: center; }
.np-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.np-hero p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.form-card h2 { font-size: 1.6rem; }
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 16px; }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
.plan-grid h4 { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; color: var(--green); margin: 0 0 10px; font-weight: 700; }
.plan-grid p { margin: 0; font-size: 0.95rem; }

/* Responsive */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 320px; order: -1; }
  .shortcuts-grid, .steps-grid, .team-grid, .concerns-grid, .plan-grid, .cta-grid, .cta-info { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(300px, 85vw);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    gap: 22px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
  }
  .main-nav.open { right: 0; }
  .hamburger { display: flex; }
  .header-schedule-btn { display: none; }
  .nav-schedule-btn { display: inline-block; margin-top: 4px; }
  .shortcuts-grid, .steps-grid, .team-grid, .concerns-grid, .plan-grid, .cta-info { grid-template-columns: 1fr; }
  .shortcut-card { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-copy { padding: 50px 24px; }
  .section { padding: 60px 0; }
  .mobile-call-btn { display: block; }
  body { padding-bottom: 70px; }
  .form-card { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
