:root {
  --ground: #FBF6EE;
  --ground-raised: #FFFFFF;
  --haze: #F3DDBE;
  --ink: #34495C;
  --ink-soft: #5F7183;
  --accent: #C9781F;
  --accent-ink: #FFFFFF;
  --band: #3A4F63;
  --band-ink: #F2EDE2;
  --band-ink-soft: #BCC9D6;
  --sage: #9DB694;
  --line: #E8DCC8;
  --card-shadow: 0 1px 2px rgba(52, 73, 92, 0.06), 0 8px 24px rgba(52, 73, 92, 0.08);
  --sun-core: #E8A84E;
}

* { box-sizing: border-box; }
html { color-scheme: light; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, Seravek, "Segoe UI", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
}
h1, h2, h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
p { margin: 0 0 1em; }
a { color: var(--accent); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.wrap { max-width: 85rem; margin: 0 auto; padding: 0 1.5rem; }
.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

/* ---------- Nav ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--ground);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.85rem 1.5rem;
  max-width: 85rem;
  margin: 0 auto;
  flex-wrap: wrap;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.wordmark svg { flex: none; }
.nav-links {
  display: flex;
  gap: 1.3rem;
  margin-left: auto;
  font-size: 0.95rem;
  align-items: center;
}
.nav-links a { color: var(--ink-soft); text-decoration: none; white-space: nowrap; }
.nav-links a:hover { color: var(--accent); }
.nav-links a[aria-current="page"] { color: var(--accent); font-weight: 700; }
.nav-phone {
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  margin-left: auto;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 8px;
  color: var(--ink);
}
@media (max-width: 1000px) {
  .nav-toggle-label { display: block; }
  .nav-links {
    order: 10;
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.8rem 0 0.5rem;
    border-top: 1px solid var(--line);
    margin-top: 0.6rem;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 1.02rem;
}
.btn-solid { background: var(--accent); color: var(--accent-ink); }
.btn-ghost { border: 2px solid var(--accent); color: var(--accent); }

/* ---------- Home hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--haze) 0%, var(--ground) 78%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 1.5rem 4.5rem;
  max-width: 85rem;
  margin: 0 auto;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); letter-spacing: -0.01em; }
.hero .lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 34rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.hero-logo { display: flex; justify-content: center; }
.hero-logo img {
  width: min(100%, 300px);
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
}
@media (max-width: 760px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 2.5rem; padding-bottom: 3rem; }
  .hero-logo { order: -1; }
  .hero-logo img { width: 190px; }
}

/* ---------- Interior page hero ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--haze) 0%, var(--ground) 100%);
  padding: 3rem 0 2.6rem;
}
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.page-hero .lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 42rem; margin: 0; }
.crumbs {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.crumbs span { margin: 0 0.4rem; }

/* ---------- Sections ---------- */
section { padding: 4rem 0; }
section h2 { font-size: clamp(1.7rem, 3.5vw, 2.2rem); }
.section-intro { color: var(--ink-soft); max-width: 40rem; margin-bottom: 2.2rem; }
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ground-raised);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.4rem 1.5rem;
  max-width: 85rem;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
  font-size: 0.98rem;
}
@media (max-width: 760px) { .trust-inner { grid-template-columns: 1fr; gap: 0.6rem; } }

/* ---------- Cards & grids ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.2rem;
}
.service {
  display: block;
  background: var(--ground-raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--card-shadow);
  text-decoration: none;
  color: var(--ink);
}
a.service:hover { border-color: var(--accent); }
.service h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
.service p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }
.service .more { display: inline-block; margin-top: 0.7rem; font-weight: 700; font-size: 0.9rem; color: var(--accent); }
.service .card-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 1rem;
}
.services-grid-core { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .services-grid-core { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services-grid-core { grid-template-columns: 1fr; } }
.service .glyph {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--haze);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  font-size: 1.1rem;
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.2rem;
}

/* ---------- Band ---------- */
.band { background: var(--band); color: var(--band-ink); }
.band .eyebrow { color: var(--sun-core); }
.band h2, .band h3 { color: var(--band-ink); }
.band .section-intro, .band p { color: var(--band-ink-soft); }
.band a.btn-solid { background: var(--sun-core); color: #211B14; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 2rem;
}
.why-grid h3 { font-size: 1.15rem; }
.why-grid p { font-size: 0.97rem; margin: 0; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  background: var(--ground-raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  box-shadow: var(--card-shadow);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.15rem; }
.step p { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Article / prose pages ---------- */
.prose { max-width: 52rem; }
.prose h2 { font-size: 1.55rem; margin-top: 2.2rem; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6rem; }
.prose ul { padding-left: 1.3rem; margin: 0 0 1.2em; }
.prose li { margin-bottom: 0.45em; }
.check-list { list-style: none; padding: 0; margin: 0 0 1.4em; }
.check-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.6em;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  background: var(--sun-core);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 0.26rem;
  top: 0.62em;
  width: 0.42rem;
  height: 0.22rem;
  border-left: 2.5px solid var(--ground);
  border-bottom: 2.5px solid var(--ground);
  transform: rotate(-45deg);
}
.callout {
  background: var(--haze);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  margin: 1.6rem 0;
  font-size: 0.98rem;
}
.callout strong { display: block; margin-bottom: 0.3rem; }

/* ---------- Photo strip ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  display: block;
}
@media (max-width: 760px) { .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; } }

/* ---------- Bio ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: 17rem 1fr;
  gap: 2.5rem;
  align-items: start;
}
.bio-grid img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  display: block;
}
.bio-caption {
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 0.7rem;
}
.bio-caption strong { display: block; color: var(--ink); font-size: 1rem; }
@media (max-width: 760px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-grid img { max-width: 17rem; margin: 0 auto; }
}

/* ---------- FAQ ---------- */
details.faq {
  background: var(--ground-raised);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 0.8rem;
  box-shadow: var(--card-shadow);
}
details.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 1.3rem;
  list-style: none;
  position: relative;
  padding-right: 2.6rem;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--accent);
}
details.faq[open] summary::after { content: "\2212"; }
details.faq .faq-body { padding: 0 1.3rem 1.1rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--band); color: var(--band-ink); text-align: center; }
.cta-band h2 { color: var(--band-ink); }
.cta-band p { color: var(--band-ink-soft); max-width: 36rem; margin: 0 auto 1em; }
.phone-big {
  display: inline-block;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 600;
  color: var(--sun-core);
  text-decoration: none;
  margin: 0.4rem 0 0.6rem;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 2.6rem 0 2.8rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.8rem;
}
.footer-cols h3 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: inherit;
  font-weight: 700;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li { margin-bottom: 0.4em; }
.footer-cols a { color: var(--ink-soft); text-decoration: none; }
.footer-cols a:hover { color: var(--accent); }
.footer-legal { border-top: 1px solid var(--line); padding-top: 1.4rem; display: grid; gap: 0.4rem; font-size: 0.85rem; }
@media (max-width: 760px) { .footer-cols { grid-template-columns: 1fr; gap: 1.4rem; } }
