/* =========================================================
   Platinum Wolf — global stylesheet
   Brand: Silver · Charcoal · Cobalt blue · sharp corners
   Titillium Web (titles) + Roboto (copy)
   NOTE: legacy variable names (--evergreen/--moss/--honey/--cream)
   are retained to avoid churn; their VALUES now hold the new palette:
     --evergreen → charcoal (primary dark surface)
     --moss      → steel slate (secondary)
     --honey     → cobalt blue (accent / CTA)
     --cream     → silver (light surface)
   ========================================================= */

:root {
  /* palette */
  --evergreen: #23272E;  /* charcoal — primary dark surface (header/footer/hero) */
  --moss:      #3C4658;  /* steel slate — secondary */
  --honey:     #1F4ED8;  /* cobalt blue — accent / CTA */
  --honey-dark: #1842B8; /* darker cobalt for accent text on light backgrounds */
  --cream:     #ECEEF1;  /* silver — light surface */
  --charcoal:  #16181C;  /* near-black body text */

  /* derived */
  --border:     rgba(35, 39, 46, .14);
  --border-strong: rgba(35, 39, 46, .26);
  --muted:      rgba(22, 24, 28, .70);
  --overlay:    rgba(35, 39, 46, .35);

  /* type */
  /* --serif holds the display/title face; --sans holds body copy. Both are now sans. */
  --serif: 'Titillium Web', 'Segoe UI', Tahoma, sans-serif;
  --sans:  'Roboto', -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', sans-serif;

  /* spacing & layout */
  --maxw: 1180px;
  --radius: 0px;   /* sharp corners */
  --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: #fff; }
.btn-primary:hover { background: #3f66e3; }
.btn-ghost {
  background: rgba(0, 0, 0, .35); color: var(--cream);
  border: 1.5px solid rgba(236, 238, 241, .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: #15181d; 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: 60px;     /* stacked wolf + wordmark lockup */
  width: auto;
  max-width: 100%;
}
@media (max-width: 380px) {
  .wordmark img { height: 46px; }   /* 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: 0;
  white-space: nowrap;
  transition: background .15s;
}
.nav-phone:hover { background: rgba(35, 39, 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(35, 39, 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: 0;
}
.mobile-phone:hover { background: rgba(35, 39, 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 a.btn-primary { color: #fff; }
.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: #23272e;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border: 0;
  display: block;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(35, 39, 46, .78) 0%,
    rgba(35, 39, 46, .55) 100%
  );
}
.hero-inner { max-width: 760px; }
.hero h1 { color: var(--cream); margin-bottom: .35em; }
.hero .eyebrow { color: rgba(236, 238, 241, .85); }
.hero .lede {
  color: rgba(236, 238, 241, .96);
  font-weight: 500;
}

/* The <p class="hero-display"> picks up the big visual headline treatment.
   The actual <h1 class="hero-h1-as-lede"> is visually hidden (but kept in the
   DOM and accessibility tree) so "Woman owned roofing company in Eugene and
   Springfield" still serves as the semantic H1 for SEO. */
.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 {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.hero-ctas {
  margin-top: 28px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* =========================================================
   Services ticker (scrolling band beneath the hero)
   ========================================================= */
.ticker {
  background: var(--evergreen);   /* charcoal */
  color: var(--cream);            /* silver */
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  border-top: 3px solid var(--honey);   /* cobalt accent */
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-left: 30px;             /* keep first item off the edge at start */
  animation: ticker-scroll 36s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1.05rem;
}
.ticker-sep { color: var(--honey); font-size: .7rem; }   /* cobalt diamond */
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }   /* one full copy of the duplicated list */
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* =========================================================
   Services
   ========================================================= */
.services { background: var(--cream); }

/* Single services-overview card (16:9 image + service list + CTA) */
.service-overview {
  max-width: 940px;
  margin: 32px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
}
.service-overview-head { padding: 32px 36px 18px; }
.service-overview-head .eyebrow { margin-bottom: .5em; }
.service-overview-head h2 { margin: 0; }
.service-overview-media img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
@media (max-width: 560px) {
  .service-overview-head { padding: 24px 22px 14px; }
}
.service-overview-body { padding: 32px 36px 36px; }
.service-overview-body > p {
  margin: 0 0 22px;
  font-size: 1.12rem;
  color: var(--charcoal);
  max-width: none;
}
.service-overview-list {
  list-style: none; margin: 0 0 28px; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 28px;
}
.service-overview-list li {
  position: relative; padding-left: 22px;
  font-weight: 500; max-width: none;
}
.service-overview-list li::before {
  content: "◆"; position: absolute; left: 0; top: .3em;
  color: var(--honey); font-size: .65rem;
}
@media (max-width: 560px) {
  .service-overview-body { padding: 24px 22px 28px; }
  .service-overview-list { grid-template-columns: 1fr; }
}

.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-intro {
  margin: 16px 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.gallery-grid {
  display: grid; gap: 18px; margin-top: 36px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
/* Project gallery: larger 2-up tiles */
.gallery-grid.project-gallery { grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 620px) {
  .gallery-grid.project-gallery { grid-template-columns: 1fr; }
}
.gallery figure { margin: 0; }
.gallery figure picture { display: block; }
.gallery figure img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--evergreen);
}
.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-dark);
  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(236, 238, 241, .8); }
.quotes {
  display: grid; gap: 22px; margin-top: 36px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.quote {
  background: rgba(236, 238, 241, .06);
  border: 1px solid rgba(236, 238, 241, .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(236, 238, 241, .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(236, 238, 241, .9);
  font-family: var(--serif); font-weight: 600; font-size: 1.2rem;
  text-align: center; padding: 24px;
}
.service-area-map { position: relative; }
.service-area-map iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
  background: var(--cream);
  /* Tint the OSM tiles toward the brand palette (silver / charcoal / cobalt).
     Mostly desaturated with a cool cobalt undertone. Tune if needed. */
  filter: grayscale(0.8) sepia(0.3) hue-rotate(180deg) saturate(1.2) brightness(1.0) contrast(0.92);
}
/* Brand-colored service-area pin, centered on the map (Salem) */
.map-pin {
  position: absolute;
  left: 50%; top: 50%;
  width: 34px; height: 34px;
  transform: translate(-50%, -100%);
  fill: var(--honey);            /* cobalt */
  pointer-events: none;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .4));
}

/* =========================================================
   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(236, 238, 241, .85); }
.form-section .lede {
  color: rgba(236, 238, 241, .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(236, 238, 241, .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: 0;
  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: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px;
}
.service-choice legend,
.service-choice .windows-detail { grid-column: 1 / -1; }
@media (max-width: 460px) {
  .service-choice { grid-template-columns: 1fr; }
}
.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: 0; 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(236, 238, 241, .8);
  padding: 64px 0 32px;
}
.site-footer h3 {
  color: rgba(236, 238, 241, .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(236, 238, 241, .14);
  font-size: .85rem;
  color: rgba(236, 238, 241, .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(35, 39, 46, .62), rgba(35, 39, 46, .62)),
    url('/images/hero.webp');
  background-size: cover;
  background-position: center bottom;
}
.subpage-hero h1 { color: var(--cream); margin-bottom: .35em; max-width: 22ch; }
.subpage-hero .eyebrow { color: rgba(236, 238, 241, .85); }
.subpage-hero .lede { color: rgba(236, 238, 241, .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(236, 238, 241, .8); }
.next-steps .lede { color: rgba(236, 238, 241, .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); }

/* image-topped service cards (edge-to-edge photo, padded text) */
.service-cards .card { padding: 0; gap: 0; overflow: hidden; }
.service-cards .card picture { display: block; }
.service-cards .card img {
  width: 100%; display: block;
  aspect-ratio: 16 / 10; object-fit: cover;
}
.service-cards .card h3 { padding: 22px 24px 0; }
.service-cards .card p { padding: 10px 24px 26px; margin: 0; }

/* =========================================================
   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(236, 238, 241, .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; }
}
