/* =========================================================
   Storm Roofing — global stylesheet
   Brand: Evergreen PNW palette · Playfair Display + Inter
   ========================================================= */

:root {
  /* palette */
  --evergreen: #1F3D2E;
  --moss:      #3B6E5A;
  --honey:     #D6B86A;
  --cream:     #F4EFE6;
  --charcoal:  #1A1A1A;

  /* derived */
  --border:     rgba(31, 61, 46, .12);
  --border-strong: rgba(31, 61, 46, .24);
  --muted:      rgba(26, 26, 26, .70);
  --overlay:    rgba(31, 61, 46, .25);

  /* type */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', sans-serif;

  /* spacing & layout */
  --maxw: 1180px;
  --radius: 8px;
  --gap: 24px;
  --section-y: clamp(64px, 9vw, 120px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--evergreen); color: var(--cream);
  padding: 12px 18px; font-weight: 600; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.1;
  color: var(--evergreen);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 .8em;
}

p { margin: 0 0 1em; }
p, li { max-width: 65ch; }

a { color: var(--moss); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--evergreen); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 .8em;
}
.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  color: var(--charcoal);
  max-width: 60ch;
}

/* =========================================================
   Layout
   ========================================================= */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: var(--section-y) 0; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: background .15s, color .15s, border-color .15s, transform .05s;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--honey); color: var(--charcoal); }
.btn-primary:hover { background: #e1c47e; }
.btn-ghost {
  background: rgba(0, 0, 0, .35); color: var(--cream);
  border: 1.5px solid rgba(244, 239, 230, .55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.btn-ghost:hover {
  background: rgba(0, 0, 0, .55);
  border-color: var(--cream); color: var(--cream);
}
.btn-dark { background: var(--evergreen); color: var(--cream); }
.btn-dark:hover { background: #173024; color: var(--cream); }

.card-link {
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  color: var(--moss); text-decoration: none;
}
.card-link:hover { color: var(--evergreen); }

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--evergreen);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.wordmark img {
  display: block;
  height: 52px;     /* desktop nav height target */
  width: auto;
  max-width: 100%;
}
@media (max-width: 380px) {
  .wordmark img { height: 38px; }   /* tighter on the smallest phones */
}
.primary-nav {
  display: flex; align-items: center; gap: 28px;
  font-size: .96rem;
}
.primary-nav a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
}
.primary-nav a:hover { color: var(--evergreen); }
.primary-nav a[aria-current="page"] {
  color: var(--evergreen);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--honey);
}

/* Desktop phone — sits next to the Free Estimate button, not inside .primary-nav */
.nav-phone {
  display: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .96rem;
  color: var(--evergreen);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background .15s;
}
.nav-phone:hover { background: rgba(31, 61, 46, .06); color: var(--evergreen); }
@media (min-width: 920px) {
  .nav-phone { display: inline-flex; align-items: center; }
}

/* desktop submenu (Services) */
.has-submenu { position: relative; display: inline-flex; align-items: center; }
.submenu {
  display: none;
  position: absolute; top: calc(100% + 8px); left: -16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(31, 61, 46, .10);
  list-style: none; margin: 0;
  z-index: 60;
}
/* Invisible bridge so the mouse can cross the gap between the
   "Services" link and the dropdown without losing hover. */
.submenu::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu { display: block; }
.submenu li { margin: 0; }
.submenu a {
  display: block; padding: 10px 18px;
  color: var(--charcoal);
  font-size: .95rem; font-weight: 500;
  text-decoration: none;
}
.submenu a:hover { background: var(--cream); color: var(--evergreen); }

.header-cta { display: none; }

.header-right { display: none; }
@media (min-width: 920px) {
  .header-cta { display: inline-block; }
  .header-right {
    display: inline-flex;
    align-items: center;
    gap: 24px;       /* tight, fixed gap between phone and button */
  }
}

/* mobile-only phone link (sits next to the hamburger) */
.mobile-phone {
  display: none;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--evergreen);
  text-decoration: none;
  font-size: .95rem;
  white-space: nowrap;
  padding: 6px 8px;
  border-radius: 6px;
}
.mobile-phone:hover { background: rgba(31, 61, 46, .06); color: var(--evergreen); }
@media (max-width: 919px) {
  .mobile-phone { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; }
}
/* tighten on the smallest phones — wordmark + phone + hamburger gets crowded */
@media (max-width: 380px) {
  .mobile-phone { font-size: .85rem; padding: 6px 4px; }
}

/* mobile nav */
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 4px;
  background: none; border: 0; cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--evergreen); display: block;
}
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 8px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.mobile-nav a {
  padding: 12px 4px;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.btn {
  border: 0; text-align: center;
  margin-top: 14px;
  padding: 18px 22px;       /* taller than nav links above */
  font-size: 1.05rem;
}
.mobile-nav[aria-hidden="false"], .mobile-nav.open { display: flex; }

@media (min-width: 920px) {
  .nav-toggle, .mobile-nav { display: none !important; }
}
@media (max-width: 919px) {
  .primary-nav { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; isolation: isolate;
  color: var(--cream);
  padding: clamp(96px, 14vw, 160px) 0 clamp(80px, 12vw, 140px);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-color: #1a2f23;
  /* Poster image: visible behind the <video> until it can play (and also serves
     as the reduced-motion fallback). */
  background-image: url('https://images.unsplash.com/photo-1498847559558-1e4b1a7f7a2f?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  /* Pause auto-playing motion: fall back to the still poster image */
  .hero-video { display: none; }
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(31, 61, 46, .78) 0%,
    rgba(31, 61, 46, .55) 100%
  );
}
.hero-inner { max-width: 760px; }
.hero h1 { color: var(--cream); margin-bottom: .35em; }
.hero .eyebrow { color: rgba(244, 239, 230, .85); }
.hero .lede {
  color: rgba(244, 239, 230, .96);
  font-weight: 500;
}

/* Visually-swapped pair: the <p class="hero-display"> picks up the big H1
   treatment, and the actual <h1 class="hero-h1-as-lede"> is styled like the
   small lede. Keeps "Woman owned roofing company in Eugene and Springfield"
   as the semantic H1 for SEO without making it the visually dominant element. */
.hero-display {
  font-family: var(--serif) !important;
  font-weight: 700 !important;
  font-size: clamp(2.2rem, 5vw, 3.6rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em !important;
  color: var(--cream) !important;
  margin: 0 0 .35em !important;
  max-width: 28ch !important;
}
@media (min-width: 900px) {
  .hero-display { max-width: 36ch !important; }
}
@media (min-width: 1280px) {
  .hero-display { max-width: 44ch !important; }
}
.hero #hero-title.hero-h1-as-lede {
  font-family: var(--sans) !important;
  font-weight: 500 !important;
  font-size: clamp(1.1rem, 1.6vw, 1.25rem) !important;
  line-height: 1.6 !important;
  letter-spacing: normal !important;
  color: rgba(244, 239, 230, .96) !important;
  margin: 0 0 1em !important;
  max-width: 60ch !important;
}
.hero-ctas {
  margin-top: 28px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* =========================================================
   Services
   ========================================================= */
.services { background: var(--cream); }
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 36px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
}

/* Home service cards have a top-of-card image that should span edge-to-edge.
   Drop the card padding, give each text child its own padding, and let the
   image fill the card's content area at 100% width. */
.cards .card { padding: 0; gap: 0; }
.cards .card > img {
  width: 100%;
  max-width: none;
  align-self: stretch;     /* defeat any flex cross-axis sizing surprise */
  display: block;
  margin: 0;
  padding: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.cards .card > h3 { padding: 24px 28px 0; }
.cards .card > p { padding: 4px 28px 0; }
.cards .card > .card-link {
  padding: 16px 28px 28px;
  margin-top: auto;
}
.card-label {
  font-family: var(--sans); font-weight: 600; font-size: .75rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--moss); margin: 0;
}
.card h3 {
  font-family: var(--serif); font-weight: 700;
  font-size: 1.5rem; color: var(--evergreen); margin: 0;
}
.card p { color: var(--charcoal); margin: 0; }
.card .card-link { margin-top: auto; }

/* Commercial callout — sits below the three residential service cards.
   Intentionally subordinate to the cards: smaller, narrower, secondary tone. */
.commercial-callout {
  margin: 22px 0 0;
  padding: 16px 22px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  align-items: center; justify-content: space-between;
}
.commercial-callout p {
  margin: 0;
  font-size: .96rem;
  color: var(--charcoal);
  max-width: none;
}
.commercial-callout strong { color: var(--evergreen); }
.commercial-callout .card-link { white-space: nowrap; }

/* =========================================================
   Why
   ========================================================= */
.why { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
}
.why-copy h2 { margin-top: .2em; }
.why-points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.why-points li {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 22px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  color: var(--moss);
  border-radius: 50%;
  border: 1px solid var(--border);
}
.why-icon svg { width: 22px; height: 22px; display: block; }
.why-points h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--evergreen); margin: 0 0 .3em; }
.why-points p { margin: 0; font-size: .96rem; color: var(--charcoal); max-width: none; }
.why-points .ccb-numbers {
  margin-top: 6px;
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .01em;
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid; gap: 18px; margin-top: 36px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.gallery figure { margin: 0; }
.gallery figure img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #2c5d4a;
}
.gallery figcaption {
  margin-top: 10px;
  font-size: .9rem;
  color: var(--muted);
}

/* =========================================================
   Process
   ========================================================= */
.process { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}
.steps li {
  background: var(--cream);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.step-num {
  font-family: var(--serif); font-weight: 700;
  font-size: 2rem; color: var(--honey);
  line-height: 1;
}
.steps h3 { font-family: var(--serif); font-size: 1.15rem; margin: 0; }
.steps p { margin: 0; font-size: .96rem; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials { background: var(--evergreen); color: var(--cream); }
.testimonials h2 { color: var(--cream); }
.testimonials .eyebrow { color: rgba(244, 239, 230, .8); }
.quotes {
  display: grid; gap: 22px; margin-top: 36px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.quote {
  background: rgba(244, 239, 230, .06);
  border: 1px solid rgba(244, 239, 230, .14);
  border-radius: var(--radius);
  padding: 26px;
  margin: 0;
}
.quote blockquote {
  margin: 0 0 14px; font-family: var(--serif); font-style: normal;
  font-size: 1.1rem; line-height: 1.45; color: var(--cream);
}
.quote figcaption {
  font-size: .88rem; color: rgba(244, 239, 230, .75);
}

/* =========================================================
   Service area
   ========================================================= */
.service-area { background: var(--cream); }
.service-area-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .service-area-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.area-list { list-style: none; padding: 0; margin: 18px 0; }
.area-list li { padding: 6px 0; font-size: .98rem; }
.service-area-map .map-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(at 30% 40%, rgba(214, 184, 106, .25), transparent 55%),
    linear-gradient(135deg, #2c5d4a 0%, #1a2f23 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(244, 239, 230, .9);
  font-family: var(--serif); font-weight: 600; font-size: 1.2rem;
  text-align: center; padding: 24px;
}
.service-area-map iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  /* Tint the OSM tiles toward the brand palette without losing the actual map.
     Tune values here if the green is too strong or the contrast feels off. */
  filter: sepia(0.35) hue-rotate(55deg) saturate(1.05) contrast(0.93) brightness(0.97);
}

/* =========================================================
   Estimate form
   ========================================================= */
.estimate { background: #fff; border-top: 1px solid var(--border); }

/* Contact page — Evergreen form section */
.form-section {
  background: var(--evergreen);
  color: var(--cream);
}
.form-section h1,
.form-section h2 { color: var(--cream); margin: 0 0 .4em; }
.form-section .eyebrow { color: rgba(244, 239, 230, .85); }
.form-section .lede {
  color: rgba(244, 239, 230, .92);
  max-width: 60ch;
  margin: 0;
}
.form-section .lede-link {
  color: var(--honey);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  white-space: nowrap;
}
.form-section .lede-link:hover {
  color: var(--cream);
}
.form-section-inner {
  max-width: 760px;
}
.form-section .estimate-form {
  margin: 36px 0 0;
  background: var(--cream);
  border: 1px solid rgba(244, 239, 230, .14);
  box-shadow: 0 16px 40px rgba(15, 29, 21, .25);
}

/* Contact page — Office section */
.office-section {
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.office-section h2 { margin: 0 0 28px; }
.office-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .office-grid {
    grid-template-columns: 1.1fr 1fr;
    column-gap: 56px;
    align-items: start;
  }
}
.estimate-meta {
  font-style: normal;
  background: var(--cream);
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.office-photo {
  width: calc(100% + 40px);
  max-width: none;             /* defeat the global img { max-width: 100% } */
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -18px -20px 16px;
  display: block;
}

.hours-heading {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 12px;
}
.hours-list {
  margin: 0;
  padding: 0;
  font-size: .95rem;
  border-top: 1px solid var(--border);
}
.hours-list > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.hours-list dt {
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
}
.hours-list dd {
  margin: 0;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.estimate-form {
  background: var(--cream);
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.field label, .service-choice legend {
  font-family: var(--sans); font-weight: 600; font-size: .9rem;
  color: var(--charcoal);
}
.field input, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--charcoal);
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  outline: 0;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(59, 110, 90, .15);
}
.service-choice {
  border: 0; padding: 0; margin: 0 0 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.service-choice legend { margin-bottom: 6px; }
.service-choice label {
  font-weight: 500; display: inline-flex; align-items: center; gap: 8px;
  font-size: .98rem;
}
.service-choice .windows-detail {
  margin: 8px 0 0 28px;   /* indent under the Windows checkbox */
  max-width: 220px;
}
.service-choice .windows-detail[hidden] { display: none; }  /* beats .field's display: flex */
.service-choice .windows-detail label {
  display: block; font-size: .88rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 4px;
}
.service-choice .windows-detail .optional {
  font-weight: 400; color: var(--muted);
}
.form-submit { width: 100%; margin-top: 8px; padding: 16px; font-size: 1.02rem; }
.form-status {
  margin: 14px 0 0; padding: 12px 14px;
  border-radius: 6px; font-size: .95rem;
}
.form-status.success { background: rgba(59, 110, 90, .12); color: var(--evergreen); }
.form-status.error   { background: rgba(139, 58, 43, .10); color: #8B3A2B; }

.hp {
  position: absolute; left: -10000px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--evergreen);
  color: rgba(244, 239, 230, .8);
  padding: 64px 0 32px;
}
.site-footer h4 {
  color: rgba(244, 239, 230, .65);
  font-family: var(--sans); font-size: .75rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { color: var(--honey); }
.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.footer-wordmark {
  font-family: var(--serif); font-weight: 700; font-size: 1.4rem;
  color: var(--cream); margin: 0 0 6px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; font-size: .95rem; }
.site-footer address { font-style: normal; font-size: .95rem; line-height: 1.7; }
.footer-meta {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 230, .14);
  font-size: .85rem;
  color: rgba(244, 239, 230, .65);
}
.footer-meta p { margin: 0; }

/* =========================================================
   Subpage hero (smaller than the home hero)
   ========================================================= */
.subpage-hero {
  position: relative; isolation: isolate;
  color: var(--cream);
  padding: clamp(72px, 10vw, 120px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
  background-color: #1a2f23;
  background-image:
    linear-gradient(rgba(31, 61, 46, .55), rgba(31, 61, 46, .55)),
    url('https://images.unsplash.com/photo-1498847559558-1e4b1a7f7a2f?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.subpage-hero h1 { color: var(--cream); margin-bottom: .35em; max-width: 22ch; }
.subpage-hero .eyebrow { color: rgba(244, 239, 230, .85); }
.subpage-hero .lede { color: rgba(244, 239, 230, .92); max-width: 60ch; }

/* =========================================================
   Breadcrumbs
   ========================================================= */
.breadcrumbs {
  font-family: var(--sans); font-size: .85rem;
  padding: 18px 0 6px;
  color: var(--muted);
}
.breadcrumbs ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.breadcrumbs li::after { content: "›"; margin-left: 6px; color: rgba(26, 26, 26, .35); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--moss); text-decoration: none; }
.breadcrumbs a:hover { color: var(--evergreen); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--charcoal); }

/* =========================================================
   "Next steps" / cross-link CTA block (subpages)
   ========================================================= */
.next-steps {
  background: var(--evergreen);
  color: var(--cream);
}
.next-steps h2 { color: var(--cream); margin-top: 0; }
.next-steps .eyebrow { color: rgba(244, 239, 230, .8); }
.next-steps .lede { color: rgba(244, 239, 230, .9); }
.next-steps .ctas { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================
   Prose blocks (subpage long-form content)
   ========================================================= */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 1.4em; }
.prose h3 { margin-top: 1.6em; color: var(--evergreen); font-size: 1.25rem; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose ul li, .prose ol li { margin: .35em 0; }
.prose hr { border: 0; height: 1px; background: var(--border); margin: 2.2em 0; }

/* card list for service-area / siblings / resources */
.list-cards {
  display: grid; gap: 18px; margin-top: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.list-cards .card {
  text-decoration: none; color: inherit;
}
.list-cards .card:hover { border-color: var(--moss); }
.list-cards .card h3 { color: var(--evergreen); }

/* =========================================================
   Article — resource page pieces
   ========================================================= */
.article-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-family: var(--sans); font-size: .88rem;
  color: var(--muted);
  margin: 6px 0 28px;
}
.article-meta span::after { content: "·"; margin-left: 12px; opacity: .5; }
.article-meta span:last-child::after { content: ""; }

.answer-card {
  background: var(--cream);
  border-left: 4px solid var(--moss);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 0 0 32px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.answer-card .label {
  font-family: var(--sans); font-weight: 600;
  font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--moss);
  margin: 0 0 6px;
}
.answer-card p { margin: 0; }

.toc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 0 0 32px;
  max-width: 460px;
}
.toc h2 {
  font-family: var(--sans); font-weight: 600;
  font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--moss);
  margin: 0 0 10px;
}
.toc ol { margin: 0; padding-left: 20px; font-size: .95rem; }
.toc li { margin: .35em 0; }
.toc a { color: var(--charcoal); text-decoration: none; }
.toc a:hover { color: var(--evergreen); text-decoration: underline; }

.compare-table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0;
  font-size: .96rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th, .compare-table td {
  text-align: left; padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table th {
  background: var(--cream);
  font-family: var(--sans); font-weight: 600;
  font-size: .9rem;
  color: var(--evergreen);
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table tr:hover td { background: rgba(244, 239, 230, .4); }

.faq { margin-top: 24px; }
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 10px;
}
.faq details[open] { border-color: var(--moss); }
.faq summary {
  font-family: var(--serif); font-weight: 600;
  font-size: 1.1rem; color: var(--evergreen);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-size: 1.4rem; opacity: .6; }
.faq details[open] summary::after { content: "–"; }
.faq details > *:not(summary) { margin-top: 12px; }
.faq p { margin: 0 0 .6em; }

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