:root {
  --cream: #f4f0e8;
  --paper: #fffdf9;
  --ink: #15231c;
  --muted: #657069;
  --green: #0c6544;
  --green-dark: #073d2a;
  --amber: #eda728;
  --line: #d9dfda;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header,
.prose,
footer {
  width: min(1080px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--green-dark);
}

.wordmark { font-size: .8rem; font-weight: 900; letter-spacing: .15em; text-decoration: none; }
.site-header span { color: var(--muted); font-size: .78rem; font-weight: 700; }

.hero {
  min-height: 55vh;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green-dark);
}

.hero-inner {
  width: min(1080px, calc(100% - 44px));
  padding: 58px 0 64px;
}

h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-size: clamp(2.5rem, 6.7vw, 6.5rem);
  font-weight: 820;
  line-height: .98;
  letter-spacing: -.055em;
}

h1 span:nth-child(2) { color: #b8d8c7; }
h1 strong { margin-top: .08em; color: var(--amber); }

.phone {
  width: fit-content;
  margin-top: 36px;
  display: block;
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.035em;
  text-decoration-thickness: 4px;
  text-underline-offset: 9px;
}

.phone:hover { color: var(--amber); }

.hours { margin: 21px 0 0; color: #b8d8c7; font-size: .9rem; }
.hours i { width: 8px; height: 8px; margin-right: 7px; display: inline-block; background: #62d698; border-radius: 50%; }

.prose { max-width: 860px; padding: 92px 0 80px; }
.prose p { margin: 0 0 24px; color: #425048; font-size: 1.06rem; }
.prose .intro { margin-bottom: 54px; color: var(--ink); font-size: clamp(1.25rem, 2.4vw, 1.65rem); font-weight: 650; line-height: 1.48; }

h2 {
  margin: 58px 0 18px;
  color: var(--green-dark);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.prose a { color: var(--green); font-weight: 800; text-underline-offset: 4px; }

.final-call {
  margin-top: 65px;
  padding: 36px;
  color: #fff;
  background: var(--green);
  border-radius: 18px 18px 18px 5px;
}

.final-call p { margin: 0 0 8px; color: #d5eadf; font-size: 1rem; }
.final-call a { color: #fff; font-size: clamp(1.9rem, 5vw, 3.4rem); font-weight: 900; }

footer {
  padding: 28px 0 90px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .72rem;
  line-height: 1.5;
}

footer p { margin: 0 0 8px; }
footer nav { display: flex; gap: 18px; margin-bottom: 8px; }
footer a { text-underline-offset: 3px; }
.mobile-call { display: none; }

a:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }

@media (max-width: 650px) {
  .site-header, .hero-inner, .prose, footer { width: min(100% - 28px, 1080px); }
  .site-header { min-height: 58px; }
  .site-header span { display: none; }
  .hero { min-height: calc(68vh - 58px); }
  .hero-inner { padding: 45px 0 52px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.5rem); }
  .phone { margin-top: 32px; font-size: clamp(2rem, 10vw, 3.4rem); }
  .hours { max-width: 280px; font-size: .8rem; }
  .prose { padding: 65px 0 58px; }
  .prose p { font-size: 1rem; }
  h2 { margin-top: 48px; }
  .final-call { padding: 27px 22px; }
  footer { padding-bottom: 88px; }
  .mobile-call {
    position: fixed;
    z-index: 20;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: block;
    padding: 14px 18px;
    color: var(--green-dark);
    background: var(--amber);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(7,61,42,.3);
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }
}

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