/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
@layer theme{:root,:host{--font-sans:ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--spacing:.25rem;--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::placeholder{opacity:1}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}[hidden]:where(:not([hidden=until-found])){display:none!important}

@font-face {
  font-family: 'Belwe Bold Condensed';
  src: url('/assets/fonts/belwe-bold-condensed.woff2') format('woff2'),
       url('/assets/fonts/belwe-bold-condensed.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.brand-wordmark {
  font-family: 'Belwe Bold Condensed', 'Rockwell', Georgia, serif;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  color: inherit;
}
.nav-wordmark {
  color: #162b1e;
  font-size: 1.9rem;
}
.footer-wordmark {
  color: #ffffff;
  font-size: 2.6rem;
}

:root {
  --pine:     #162b1e;
  --fern:     #1f4530;
  --meadow:   #2e6e47;
  --lawn:     #3d8c5c;
  --leaf:     #5aad78;
  --cream:    #f6f2ea;
  --parch:    #ede8de;
  --warm:     #fdfaf5;
  --rust:     #b84c1e;
  --gold:     #c49a22;
  --ink:      #18180f;
  --text:     #292920;
  --muted:    #6b6b5a;
  --light:    #a0a090;
  --font-heading: "Lora", Georgia, serif;
  --font-body: "Karla", system-ui, sans-serif;
}
html {
  background: var(--warm);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  line-height: 1.72;
}
body { display: flex; flex-direction: column; min-height: 100vh; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--pine);
}
a { color: var(--meadow); text-underline-offset: 3px; }
a:hover { color: var(--pine); }
}

@layer components {

  /* ── NAV ─────────────────────────────────────── */
  nav.site-nav {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,.09);
    box-shadow: 0 2px 12px rgba(22,43,30,.07);
    display: flex;
    align-items: center;
    height: 68px;
    padding: 0 2.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 0;
  }
  .nav-brand {
    font-family: var(--font-heading);
    color: var(--pine);
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    margin-right: auto;
    white-space: nowrap;
  }
  .nav-links { display: flex; align-items: center; gap: 2rem; }
  .nav-links a {
    color: var(--muted);
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .15s;
  }
  .nav-links a:hover { color: var(--pine); }
  .nav-phone {
    color: var(--pine);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    margin-left: 2.5rem;
    padding-left: 2.5rem;
    border-left: 1px solid var(--parch);
    white-space: nowrap;
    transition: color .15s;
  }
  .nav-phone:hover { color: var(--meadow); }
  .nav-cta {
    background: var(--rust);
    color: white !important;
    padding: .45rem 1.2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none !important;
    margin-left: 1.25rem;
    white-space: nowrap;
    transition: background .15s;
  }
  .nav-cta:hover { background: #9e3f16 !important; }

  /* ── NAV DROPDOWNS ───────────────────────────── */
  .nav-item {
    position: relative;
    display: flex;
    align-items: center;
  }
  .nav-parent {
    display: flex;
    align-items: center;
    gap: .3rem;
    cursor: default;
  }
  .nav-chevron {
    flex-shrink: 0;
    transition: transform .15s;
    margin-top: 1px;
  }
  .nav-item:hover .nav-chevron,
  .nav-item:focus-within .nav-chevron { transform: rotate(180deg); }
  .nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: white;
    border: 1px solid rgba(0,0,0,.09);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(22,43,30,.13);
    min-width: 210px;
    padding: .5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .15s, visibility .15s, transform .15s;
    z-index: 200;
  }
  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown a {
    display: block;
    padding: .55rem 1.25rem;
    color: var(--text) !important;
    font-size: .825rem;
    font-weight: 500;
    letter-spacing: .02em;
    text-transform: none;
    white-space: nowrap;
    text-decoration: none;
    transition: background .1s, color .1s;
  }
  .nav-dropdown a:hover { background: var(--warm); color: var(--pine) !important; }

  main.page-body { display: flex; flex-direction: column; flex: 1; overflow-x: hidden; }

  /* ── HERO ────────────────────────────────────── */
  .hero {
    background-color: var(--pine);
    background-image:
      linear-gradient(to bottom, rgba(22,43,30,.72) 0%, rgba(22,43,30,.55) 60%, rgba(22,43,30,.8) 100%),
      url('https://mqpykxiilvtwuluaocfq.supabase.co/storage/v1/object/public/safarispray-assets/uploads/2026/01/certainly-spring-1024x683.webp');
    background-size: cover;
    background-position: center 55%;
    padding: 7.5rem 2rem 6.5rem;
    text-align: center;
    position: relative;
  }
  .hero-inner { max-width: 860px; margin: 0 auto; position: relative; }
  .hero-eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--leaf);
    margin-bottom: 1.5rem;
  }
  .hero h1 {
    color: white;
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin: 0 0 1.25rem;
    line-height: 1.08;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
  }
  .hero h1 em { color: #a0d9a8; font-style: italic; }
  .hero .tagline {
    color: rgba(255,255,255,.82);
    font-size: 1.15rem;
    max-width: 54ch;
    margin: 0 auto 2.75rem;
    line-height: 1.72;
  }
  .hero-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--rust);
    color: white;
    padding: .9rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background .15s, transform .15s;
    display: inline-block;
  }
  .btn-primary:hover { background: #9e3f16; color: white; transform: translateY(-1px); }
  .btn-ghost-light {
    border: 2px solid rgba(255,255,255,.55);
    color: white;
    padding: .9rem 2.5rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: border-color .2s, background .2s;
    display: inline-block;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,.08);
  }
  .btn-ghost-light:hover { border-color: white; background: rgba(255,255,255,.18); color: white; }
  .hero-since {
    margin-top: 3rem;
    color: rgba(255,255,255,.5);
    font-size: .825rem;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .hero-since span { color: var(--leaf); font-weight: 600; }

  /* ── TRUST BAR ───────────────────────────────── */
  .trust-bar {
    background: var(--fern);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 1.1rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.75);
    font-size: .85rem;
    font-weight: 500;
    white-space: nowrap;
  }
  @media (max-width: 820px) {
    .trust-item { padding: 1rem 1.1rem; font-size: .8rem; }
  }
  .trust-item:first-child { border-left: 1px solid rgba(255,255,255,.1); }
  .trust-item strong { color: white; font-weight: 600; }
  .trust-icon { color: var(--leaf); font-style: normal; line-height: 1; }

  /* ── WHY SECTION ─────────────────────────────── */
  .why-section {
    background: var(--warm);
    padding: 5rem 2rem;
  }
  .why-inner { max-width: 1100px; margin: 0 auto; }
  .section-kicker {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--meadow);
    margin-bottom: .6rem;
  }
  .section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--pine);
    margin: 0 0 3rem;
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  .why-item { border-top: 3px solid var(--lawn); padding-top: 1.5rem; }
  .why-item h3 {
    font-size: 1.1rem;
    color: var(--pine);
    margin: 0 0 .65rem;
  }
  .why-item p { color: var(--muted); font-size: .95rem; margin: 0; line-height: 1.7; }

  /* ── SERVICES ────────────────────────────────── */
  .services-section {
    background: var(--cream);
    padding: 5rem 2rem;
  }
  .services-inner { max-width: 1100px; margin: 0 auto; }
  .services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .svc-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.75rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.07);
    text-decoration: none;
    transition: box-shadow .2s, transform .2s;
  }
  .svc-row:hover {
    box-shadow: 0 8px 28px rgba(22,43,30,.12);
    transform: translateY(-2px);
    color: var(--text);
  }
  .svc-glyph {
    width: 48px;
    height: 48px;
    background: var(--pine);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  .svc-body { flex: 1; min-width: 0; }
  .svc-title {
    font-family: var(--font-heading);
    color: var(--pine);
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
    margin-bottom: .4rem;
  }
  .svc-row p { color: var(--muted); font-size: .875rem; line-height: 1.6; margin: 0; }
  .svc-arrow {
    color: var(--light);
    font-size: 1.1rem;
    align-self: center;
    flex-shrink: 0;
    transition: color .15s;
  }
  .svc-row:hover .svc-arrow { color: var(--meadow); }

  /* ── REVIEWS ─────────────────────────────────── */
  .reviews-section {
    background: var(--pine);
    background-image:
      linear-gradient(135deg, rgba(61,140,92,.15) 0%, transparent 60%),
      linear-gradient(to bottom, var(--pine), var(--fern));
    padding: 5rem 2rem;
    text-align: center;
  }
  .reviews-inner { max-width: 1100px; margin: 0 auto; }
  .reviews-section .section-kicker { color: var(--leaf); }
  .reviews-section .section-title { color: white; }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-top: 0;
  }
  .review-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-top: 3px solid var(--leaf);
    border-radius: 16px;
    padding: 2rem;
  }
  .review-stars { color: var(--gold); font-size: .95rem; letter-spacing: .08em; margin-bottom: .85rem; }
  .review-text {
    color: rgba(255,255,255,.82);
    font-size: .975rem;
    line-height: 1.75;
    margin: 0 0 1.5rem;
    font-style: italic;
  }
  .review-author { color: var(--leaf); font-weight: 600; font-size: .875rem; }

  /* ── AREAS CTA ───────────────────────────────── */
  .areas-section {
    background: var(--cream);
    padding: 5rem 2rem;
  }
  .areas-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 16px;
    padding: 3rem 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 4px 24px rgba(22,43,30,.08);
  }
  .areas-inner h2 { font-size: 1.45rem; margin: 0 0 .6rem; }
  .areas-inner p { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.65; }
  .areas-inner a:not(.btn-primary) { color: var(--meadow); }

  /* ── FOOTER ──────────────────────────────────── */
  footer.site-footer {
    background: var(--pine);
    margin-top: auto;
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem 2.5rem;
    display: grid;
    grid-template-columns: 1.75fr 1fr 1fr;
    gap: 3rem;
  }
  .footer-brand-name {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: .85rem;
  }
  .footer-tagline { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.65; margin: 0 0 1.25rem; }
  .footer-contact-line { color: rgba(255,255,255,.55); font-size: .875rem; line-height: 2.1; margin: 0; }
  .footer-contact-line a { color: var(--leaf); text-decoration: none; transition: color .15s; }
  .footer-contact-line a:hover { color: white; }
  .footer-nav-col h4 {
    color: rgba(255,255,255,.4);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0 0 1rem;
  }
  .footer-nav-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-nav-col li { margin-bottom: .5rem; }
  .footer-nav-col a { color: rgba(255,255,255,.6); font-size: .875rem; text-decoration: none; transition: color .15s; }
  .footer-nav-col a:hover { color: var(--leaf); }
  .footer-bar {
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center;
    padding: 1.25rem 2rem;
    color: rgba(255,255,255,.72);
    font-size: .8rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  .footer-bar a { color: rgba(255,255,255,.88); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color .15s; }
  .footer-bar a:hover { color: #fff; }

  /* ── INNER PAGE UTILITIES ────────────────────── */
  .page-hero {
    background: var(--pine);
    padding: 3.5rem 2rem 3rem;
    text-align: center;
  }
  .page-hero h1 { color: white; }
  article { color: var(--muted); max-width: 68ch; margin: 3rem auto; padding: 0 2rem; font-size: 1rem; line-height: 1.8; }
  article p { margin-bottom: 1.25rem; }
  article h2 { color: var(--pine); margin: 2rem 0 .75rem; }
  .faq { max-width: 860px; margin: 3rem auto; padding: 0 2rem; }
  .faq h2 { color: var(--pine); margin-bottom: 1.25rem; font-size: 1.5rem; }
  .faq details { background: white; border: 1px solid rgba(0,0,0,.08); border-radius: 12px; margin-bottom: .5rem; overflow: hidden; }
  .faq details[open] { border-color: var(--lawn); }
  .faq summary { cursor: pointer; color: var(--pine); user-select: none; display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.5rem; font-weight: 600; font-family: var(--font-heading); list-style: none; }
  .faq summary::after { content: "+"; color: var(--meadow); flex-shrink: 0; margin-left: 1rem; font-size: 1.25rem; }
  .faq details[open] summary::after { content: "−"; }
  .faq details p { color: var(--muted); margin: 0; padding: 0 1.5rem 1.25rem; font-size: .95rem; line-height: 1.65; }
  .services { max-width: 860px; margin: 3rem auto; padding: 0 2rem; }
  .services h2 { color: var(--pine); margin-bottom: 1.25rem; font-size: 1.5rem; }
  .services ul { display: flex; flex-direction: column; gap: .75rem; padding: 0; list-style: none; }
  .services li { background: white; border: 1px solid rgba(0,0,0,.07); border-left: 3px solid var(--lawn); color: var(--text); border-radius: 12px; padding: 1rem 1.5rem; font-size: .975rem; }
  .services li strong { color: var(--pine); font-weight: 600; }
  .contact { background: white; border: 1px solid rgba(0,0,0,.07); border-left: 4px solid var(--rust); border-radius: 12px; display: flex; flex-direction: column; gap: .75rem; max-width: 860px; margin: 3rem auto; padding: 2rem 2.5rem; }
  .contact p { color: var(--text); margin: 0; font-size: 1rem; }

  /* ── HERO BADGES ─────────────────────────────── */
  .hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
  }
  .hero-bbb { height: 58px; width: auto; filter: drop-shadow(0 2px 10px rgba(0,0,0,.5)); }
  .hero-fifty { height: 70px; width: auto; filter: drop-shadow(0 2px 10px rgba(0,0,0,.5)); }

  /* ── PHOTO SERVICE CARDS ─────────────────────── */
  .svc-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .svc-photo-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    box-shadow: 0 6px 28px rgba(0,0,0,.15);
  }
  .svc-photo-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
  }
  .svc-photo-card:hover .svc-photo-bg { transform: scale(1.05); }
  .svc-photo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
      rgba(14,34,22,.93) 0%,
      rgba(14,34,22,.52) 50%,
      rgba(14,34,22,.08) 100%);
    transition: opacity .3s;
  }
  .svc-photo-body {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: white;
  }
  .svc-photo-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    margin-bottom: .5rem;
    color: white;
  }
  .svc-photo-body p {
    color: rgba(255,255,255,.78);
    font-size: .9rem;
    line-height: 1.6;
    margin: 0 0 .85rem;
  }
  .svc-photo-link {
    color: var(--leaf);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .03em;
    transition: color .15s;
  }
  .svc-photo-card:hover .svc-photo-link { color: white; }

  /* ── SPLIT SECTION ───────────────────────────── */
  .split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
  }
  .split-photo { overflow: hidden; position: relative; }
  .split-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .6s ease;
  }
  .split-photo:hover img { transform: scale(1.03); }
  .split-content {
    background: var(--cream);
    padding: 5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .split-points { display: flex; flex-direction: column; gap: 1.75rem; }
  .split-point { display: flex; gap: 1.25rem; align-items: flex-start; }
  .split-point-icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; margin-top: .1rem; }
  .split-point strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--pine);
    display: block;
    margin-bottom: .3rem;
  }
  .split-point p { color: var(--muted); font-size: .9rem; margin: 0; line-height: 1.65; }
  .btn-green { color: var(--meadow); font-weight: 600; font-size: .95rem; text-decoration: none; transition: color .15s; }
  .btn-green:hover { color: var(--pine); }

  /* ── TRUCK BANNER ────────────────────────────── */
  .truck-banner {
    position: relative;
    height: 340px;
    overflow: hidden;
  }
  .truck-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
  }
  .truck-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
      rgba(22,43,30,.88) 0%,
      rgba(22,43,30,.52) 55%,
      rgba(22,43,30,.1) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 5rem;
    gap: 1.5rem;
  }
  .truck-overlay p {
    color: white;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
  }

  /* ── HAMBURGER BUTTON ────────────────────────── */
  .nav-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem .3rem;
    margin-left: .75rem;
    flex-shrink: 0;
  }
  .nav-menu-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--pine);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
  }
  nav.site-nav.nav-open .nav-menu-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.site-nav.nav-open .nav-menu-bar:nth-child(2) { opacity: 0; }
  nav.site-nav.nav-open .nav-menu-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── NAV DRAWER (desktop hidden, mobile full-screen) ────── */
  .nav-close-btn, .nav-drawer-footer, .nav-link-quote { display: none; }
  .nav-parent-divider { display: none; }
  .nav-links-main { display: contents; }

  /* ── RESPONSIVE ──────────────────────────────── */
  @media (max-width: 768px) {
    .nav-menu-btn { display: flex; }

    /* Top bar on mobile: keep logo + hamburger; hide phone + payment button */
    .nav-phone { display: none; }
    .nav-cta { display: none; }
    .nav-brand img { height: 38px !important; }

    /* Full-screen overlay drawer */
    .nav-links {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--warm);
      flex-direction: column;
      justify-content: space-between;
      padding: 4.5rem 1.5rem 1.5rem;
      z-index: 200;
      overflow-y: auto;
      gap: 0;
    }
    nav.site-nav.nav-open .nav-links { display: flex; }

    .nav-close-btn {
      display: block;
      position: absolute;
      top: 1.25rem;
      left: 50%;
      transform: translateX(-50%);
      background: transparent;
      border: 0;
      color: var(--pine);
      cursor: pointer;
      padding: .25rem;
      z-index: 2;
    }

    /* Main items — centered, stacked */
    .nav-links-main {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .4rem;
      padding-top: 1.5rem;
      flex: 1;
    }
    .nav-links-main > a,
    .nav-links-main .nav-parent {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .75rem;
      padding: .9rem 1.25rem;
      font-family: var(--font-heading);
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--pine);
      text-transform: none;
      letter-spacing: 0;
      text-decoration: none;
      background: transparent;
      border: 0;
      width: auto;
      line-height: 1.2;
      transition: color .15s;
    }
    .nav-links-main > a:hover,
    .nav-links-main .nav-parent:hover { color: var(--meadow); background: transparent; }
    .nav-links-main > a[aria-current] { color: var(--meadow); }
    .nav-link-quote {
      margin-top: .25rem;
      color: var(--meadow) !important;
    }

    .nav-links-main .nav-item { width: 100%; flex-direction: column; align-items: center; }
    .nav-parent-divider {
      display: inline-block;
      width: 1px;
      height: 1.1rem;
      background: rgba(22,43,30,.25);
      margin: 0 .1rem;
    }
    .nav-chevron {
      display: inline-block;
      width: 14px;
      height: 14px;
      color: var(--pine);
      transition: transform .2s;
    }
    .nav-item.is-open .nav-chevron { transform: rotate(180deg); }

    /* Dropdown children — collapsed by default, expand on is-open */
    .nav-dropdown {
      position: static;
      display: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      border: none;
      border-radius: 0;
      min-width: unset;
      width: 100%;
      margin: .25rem 0 .5rem;
      padding: .25rem 0 .5rem;
      background: transparent;
      text-align: center;
      left: auto;
      right: auto;
    }
    .nav-item.is-open .nav-dropdown { display: flex; flex-direction: column; gap: .1rem; }
    .nav-dropdown a {
      padding: .55rem 1rem !important;
      font-size: 1rem !important;
      color: var(--muted) !important;
      text-align: center;
      background: transparent !important;
    }

    /* Footer block — social + 2 big CTAs */
    .nav-drawer-footer {
      display: flex;
      flex-direction: column;
      gap: .85rem;
      padding: 1rem 0 0;
    }
    .nav-drawer-social {
      display: flex;
      justify-content: center;
      gap: .65rem;
      margin-bottom: .85rem;
      flex-wrap: wrap;
    }
    .nav-social {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      color: white;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.1rem;
      text-decoration: none;
      transition: transform .15s;
    }
    .nav-social:hover { transform: translateY(-2px); }
    .nav-social-angi { background: #ff6153; }
    .nav-social-nextdoor { background: white; color: #00b246; border: 1px solid rgba(0,0,0,.08); }
    .nav-social-home { background: var(--pine); }
    .nav-social-fb { background: #1877f2; }
    .nav-social-yelp { background: #d32323; }
    .nav-social-google { background: white; color: #4285f4; border: 1px solid rgba(0,0,0,.08); }

    .nav-drawer-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .75rem;
      background: var(--pine);
      color: var(--leaf);
      padding: 1.05rem 1.25rem;
      border-radius: 12px;
      text-decoration: none;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: .02em;
      transition: background .15s, color .15s;
    }
    .nav-drawer-cta:hover { background: var(--fern); color: white; }
    .nav-drawer-cta svg { flex-shrink: 0; }

    .hero { padding: 4.5rem 1.5rem 4rem; }
    .why-grid { grid-template-columns: 1fr; gap: 2rem; }
    .svc-photo-grid { grid-template-columns: 1fr; }
    .split-section { grid-template-columns: 1fr; }
    .split-photo { height: 300px; }
    .split-content { padding: 3rem 2rem; }
    .reviews-grid { grid-template-columns: 1fr; }
    .areas-inner { padding: 2rem; flex-direction: column; align-items: flex-start; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .trust-item { padding: .85rem 1.25rem; font-size: .8rem; }
    .trust-item:first-child, .trust-item { border: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .truck-banner { height: 240px; }
    .truck-overlay { padding: 0 2rem; }
    .hero-badges { gap: 1.25rem; }
    .hero-bbb { height: 44px; }
    .hero-fifty { height: 52px; }
  }
}

@layer components {

  /* ── BLOG HERO ───────────────────────────────── */
  .blog-hero {
    background: linear-gradient(135deg, var(--fern) 0%, var(--pine) 100%);
    padding: 5rem 2rem 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 70% 50%, rgba(90,173,120,.18) 0%, transparent 65%);
    pointer-events: none;
  }
  .blog-hero-inner { max-width: 720px; margin: 0 auto; position: relative; }
  .blog-hero h1 {
    color: white;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin: 0 0 1rem;
    text-shadow: 0 2px 16px rgba(0,0,0,.25);
  }
  .blog-hero p {
    color: rgba(255,255,255,.72);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.7;
  }

  /* ── BLOG GRID ───────────────────────────────── */
  .blog-section {
    background: var(--warm);
    padding: 4rem 2rem 5rem;
  }
  .blog-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,1fr) 280px;
    gap: 2.5rem;
    align-items: start;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .blog-sidebar {
    background: #fff;
    border: 1px solid #d9e0d5;
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    position: sticky;
    top: 1.5rem;
  }
  .blog-sidebar-label {
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--meadow);
    font-weight: 700;
    margin: 0 0 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid #e6ebe2;
  }
  .blog-sidebar-list { list-style: none; margin: 0; padding: 0; }
  .blog-sidebar-list li { margin: 0; padding: .6rem 0; border-bottom: 1px solid #f0f3ed; }
  .blog-sidebar-list li:last-child { border-bottom: none; }
  .blog-sidebar-list a { color: var(--forest); text-decoration: none; font-size: .9rem; line-height: 1.5; display: block; transition: color .15s; }
  .blog-sidebar-list a:hover { color: var(--meadow); }
  .blog-hero-sub { color: rgba(255,255,255,.82); font-size: 1.05rem; margin: .75rem 0 0; line-height: 1.65; }

  @media (max-width: 900px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; order: 2; }
  }

  /* ── BLOG CARD ───────────────────────────────── */
  .blog-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
    transition: transform .22s ease, box-shadow .22s ease;
    box-shadow: 0 2px 12px rgba(22,43,30,.06);
  }
  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(22,43,30,.13);
    color: var(--text);
  }
  .blog-card-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    flex-shrink: 0;
  }
  .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease;
  }
  .blog-card:hover .blog-card-img img { transform: scale(1.05); }
  .blog-card-body {
    padding: 1.5rem 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .blog-card-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .9rem;
    flex-wrap: wrap;
  }
  .blog-cat {
    display: inline-block;
    background: var(--lawn);
    color: white;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: 100px;
    line-height: 1.5;
  }
  .blog-date {
    color: var(--light);
    font-size: .8rem;
    font-weight: 500;
  }
  .blog-card-body h2 {
    font-size: 1.1rem;
    color: var(--pine);
    margin: 0 0 .6rem;
    line-height: 1.3;
  }
  .blog-card-body p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.65;
    margin: 0 0 1.25rem;
    flex: 1;
  }
  .blog-read-more {
    color: var(--meadow);
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .15s;
    margin-top: auto;
  }
  .blog-card:hover .blog-read-more { color: var(--pine); }

  /* ── POST HERO ───────────────────────────────── */
  .post-hero {
    position: relative;
    height: 52vh;
    min-height: 340px;
    max-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
  }
  .post-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }
  .post-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(14,34,22,.92) 0%,
      rgba(14,34,22,.55) 45%,
      rgba(14,34,22,.15) 100%
    );
  }
  .post-hero-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    width: 100%;
  }
  .post-hero-content .blog-cat { margin-bottom: .75rem; display: inline-block; }
  .post-hero-content h1 {
    color: white;
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin: 0 0 .75rem;
    line-height: 1.12;
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
  }
  .post-hero-content .post-meta {
    color: rgba(255,255,255,.6);
    font-size: .875rem;
  }

  /* ── BACK TO BLOG ────────────────────────────── */
  .back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .15s;
    padding: 1.75rem 0 0;
    max-width: 72ch;
    margin: 0 auto;
    display: flex;
  }
  .back-to-blog:hover { color: var(--meadow); }

  /* ── POST LAYOUT ─────────────────────────────── */
  .post-layout {
    background: var(--warm);
    padding: 0 2rem 5rem;
  }
  .post-layout-inner {
    max-width: 72ch;
    margin: 0 auto;
  }

  /* ── POST CONTENT ────────────────────────────── */
  .post-content {
    font-size: 1.05rem;
    line-height: 1.82;
    color: var(--text);
    padding-top: 2.5rem;
  }
  .post-content p { margin: 0 0 1.4rem; }
  .post-content h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.7rem);
    color: var(--pine);
    margin: 2.75rem 0 .9rem;
    line-height: 1.2;
  }
  .post-content h3 {
    font-size: 1.15rem;
    color: var(--fern);
    margin: 2.25rem 0 .65rem;
    font-weight: 600;
    line-height: 1.25;
  }
  .post-content ul, .post-content ol {
    padding-left: 1.5rem;
    margin: 0 0 1.4rem;
  }
  .post-content li { margin-bottom: .5rem; }
  .post-content strong { color: var(--pine); font-weight: 600; }
  .post-content a { color: var(--meadow); }
  .post-content a:hover { color: var(--pine); }

  /* ── POST IMAGE ──────────────────────────────── */
  .post-image {
    width: 100%;
    border-radius: 12px;
    margin: 1.75rem 0 2rem;
    display: block;
    box-shadow: 0 4px 20px rgba(22,43,30,.1);
  }
  .post-image-inline {
    width: 100%;
    max-width: 380px;
    border-radius: 10px;
    margin: 1.25rem auto;
    display: block;
    box-shadow: 0 3px 14px rgba(22,43,30,.1);
  }

  /* ── AUTHOR BIO ──────────────────────────────── */
  .author-bio {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--parch);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .author-bio-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--parch);
    box-shadow: 0 2px 8px rgba(22,43,30,.1);
  }
  .author-bio-text { flex: 1; min-width: 0; }
  .author-bio-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--pine);
    font-size: .975rem;
    margin: 0 0 .25rem;
    display: block;
  }
  .author-bio-desc {
    color: var(--muted);
    font-size: .875rem;
    line-height: 1.6;
    margin: 0;
  }

  /* ── RESPONSIVE BLOG ─────────────────────────── */
  @media (max-width: 960px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
    .post-hero { height: 44vh; min-height: 280px; }
    .post-hero-content h1 { font-size: 1.65rem; }
    .blog-hero { padding: 3.5rem 1.5rem 3rem; }
  }
}

@layer components {

  /* ── CITY HERO (full-bleed bg-image hero for city landing pages) ── */
  .city-hero {
    position: relative;
    min-height: 58vh;
    background-size: cover;
    background-position: center 55%;
    display: flex;
    align-items: flex-end;
  }
  .city-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(14,34,22,.92) 0%,
      rgba(14,34,22,.60) 45%,
      rgba(14,34,22,.25) 100%
    );
    display: flex;
    align-items: flex-end;
    width: 100%;
  }
  .city-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    width: 100%;
  }
  .city-hero-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--leaf);
    margin-bottom: 1rem;
  }
  .city-hero h1 {
    color: white;
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin: 0 0 1rem;
    line-height: 1.12;
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
  }
  .city-hero-sub {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    max-width: 56ch;
    margin: 0 0 2rem;
    line-height: 1.7;
  }
  .city-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  /* ── INTRO SPLIT (text left, image right) ──────── */
  .intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    align-items: center;
    gap: 4rem;
  }
  .intro-split-text { }
  .intro-split-text h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    color: var(--pine);
    margin: 0 0 1.25rem;
  }
  .intro-split-text p {
    color: var(--muted);
    font-size: .975rem;
    line-height: 1.78;
    margin: 0 0 1.25rem;
  }
  .intro-pressures {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .6rem;
  }
  .intro-pressures li {
    color: var(--text);
    font-size: .95rem;
    padding: .65rem 1rem .65rem 1.5rem;
    background: white;
    border-left: 3px solid var(--lawn);
    border-radius: 0 8px 8px 0;
    line-height: 1.55;
  }
  .intro-split-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(22,43,30,.13);
  }
  .intro-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
  }
  .intro-split-img:hover img { transform: scale(1.03); }

  /* ── APPROACH SECTION (4-card service grid) ────── */
  .approach-section {
    background: var(--cream);
    padding: 5rem 2rem;
  }
  .approach-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 0;
  }
  .approach-card {
    background: white;
    border: 1px solid rgba(0,0,0,.07);
    border-top: 3px solid var(--lawn);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
  }
  .approach-icon {
    color: var(--leaf);
    font-size: 1.15rem;
    line-height: 1;
  }
  .approach-card h3 {
    font-size: 1.05rem;
    color: var(--pine);
    margin: 0;
    line-height: 1.25;
  }
  .approach-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.65;
    margin: 0;
    flex: 1;
  }
  .approach-link {
    color: var(--meadow);
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .15s;
    margin-top: auto;
  }
  .approach-link:hover { color: var(--pine); }

  /* ── WHY CHOOSE (cream bg, checklist) ─────────── */
  .why-choose {
    background: var(--warm);
    padding: 5rem 2rem;
  }
  .why-choose-inner {
    max-width: 860px;
    margin: 0 auto;
  }
  .why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: white;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(22,43,30,.05);
  }
  .why-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--lawn);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1;
    margin-top: .2rem;
  }
  .why-choose-list strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--pine);
    display: block;
    margin-bottom: .35rem;
  }
  .why-choose-list p {
    color: var(--muted);
    font-size: .9rem;
    margin: 0;
    line-height: 1.65;
  }

  /* ── FAQ SECTION (city page) ───────────────────── */
  .faq-section {
    background: var(--cream);
    padding: 5rem 2rem;
  }
  .faq-item {
    background: white;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;
    margin-bottom: .5rem;
    overflow: hidden;
  }
  .faq-item[open] { border-color: var(--lawn); }
  .faq-item summary {
    cursor: pointer;
    color: var(--pine);
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    list-style: none;
  }
  .faq-item summary::after { content: "+"; color: var(--meadow); flex-shrink: 0; margin-left: 1rem; font-size: 1.25rem; }
  .faq-item[open] summary::after { content: "−"; }
  .faq-item p { color: var(--muted); margin: 0; padding: 0 1.5rem 1.25rem; font-size: .95rem; line-height: 1.65; }

  /* ── CTA BAR ───────────────────────────────────── */
  .cta-bar {
    background: var(--pine);
    background-image: linear-gradient(135deg, var(--fern) 0%, var(--pine) 100%);
    padding: 4.5rem 2rem;
  }
  .cta-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
  .cta-bar-text h2 {
    color: white;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin: 0 0 .6rem;
  }
  .cta-bar-text p {
    color: rgba(255,255,255,.72);
    font-size: .975rem;
    margin: 0;
    line-height: 1.65;
    max-width: 50ch;
  }
  .cta-bar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
  }
  .cta-phone {
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color .15s;
  }
  .cta-phone:hover { color: var(--leaf); }
  .cta-bar .btn-ghost-dark {
    border: 2px solid rgba(255,255,255,.65);
    color: white;
    padding: .9rem 2.2rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: border-color .2s, background .2s;
    display: inline-block;
  }
  .cta-bar .btn-ghost-dark:hover { border-color: white; background: rgba(255,255,255,.15); color: white; }

  /* ── AREA LINKS GRID (service-areas index) ─────── */
  .areas-page-hero {
    background-color: var(--pine);
    background-image:
      linear-gradient(to bottom, rgba(22,43,30,.80) 0%, rgba(22,43,30,.65) 100%),
      url('https://mqpykxiilvtwuluaocfq.supabase.co/storage/v1/object/public/safarispray-assets/uploads/2026/01/certainly-spring-1024x683.webp');
    background-size: cover;
    background-position: center 55%;
    padding: 7rem 2rem 6rem;
    text-align: center;
    position: relative;
  }
  .areas-page-hero-inner { max-width: 760px; margin: 0 auto; }
  .areas-page-hero h1 {
    color: white;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin: .75rem 0 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,.35);
  }
  .areas-page-subtitle {
    color: rgba(255,255,255,.8);
    font-size: 1.1rem;
    max-width: 58ch;
    margin: 0 auto;
    line-height: 1.72;
  }
  .areas-intro-section {
    background: var(--warm);
    padding: 3.5rem 2rem 2rem;
  }
  .areas-intro-inner {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.78;
    text-align: center;
  }
  .areas-grid-section {
    background: var(--warm);
    padding: 1.5rem 2rem 5rem;
  }
  .areas-grid-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  .areas-state-group { }
  .areas-state-heading {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid var(--parch);
  }
  .area-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
  }
  .area-links-grid--sm {
    grid-template-columns: repeat(3, 1fr);
    max-width: 680px;
  }
  .area-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1.25rem;
    background: white;
    border: 1.5px solid var(--parch);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-size: .9rem;
    font-weight: 500;
    transition: border-color .15s, background .15s, color .15s, box-shadow .15s;
    box-shadow: 0 1px 4px rgba(22,43,30,.05);
  }
  .area-pill::after {
    content: '→';
    color: var(--light);
    transition: color .15s, transform .15s;
    font-size: .85rem;
    flex-shrink: 0;
  }
  .area-pill:hover {
    border-color: var(--lawn);
    background: var(--pine);
    color: white;
    box-shadow: 0 4px 16px rgba(22,43,30,.14);
  }
  .area-pill:hover::after { color: var(--leaf); transform: translateX(3px); }

  /* ── RESPONSIVE: SERVICE AREAS ─────────────────── */
  @media (max-width: 860px) {
    .intro-split {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      padding: 3.5rem 1.5rem;
    }
    .intro-split-img { order: -1; border-radius: 14px; }
    .intro-split-img img { max-height: 280px; object-fit: cover; }
    .approach-grid { grid-template-columns: 1fr; }
    .area-links-grid { grid-template-columns: repeat(2, 1fr); }
    .area-links-grid--sm { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
    .cta-bar-inner { flex-direction: column; text-align: center; }
    .cta-bar-text p { max-width: 100%; }
    .city-hero { min-height: 52vh; }
    .city-hero-inner { padding-bottom: 3rem; }
  }
  @media (max-width: 520px) {
    .area-links-grid { grid-template-columns: 1fr; }
    .area-links-grid--sm { grid-template-columns: 1fr; }
    .why-choose-list li { flex-direction: column; gap: .75rem; }
    .city-hero h1 { font-size: 1.65rem; }
  }
}

@layer components {

  /* ── QUOTE PAGE HERO ────────────────────────────── */
  .quote-hero {
    background: var(--fern);
    background-image: linear-gradient(135deg, var(--pine) 0%, var(--fern) 60%, var(--meadow) 100%);
    padding: 4.5rem 2rem 4rem;
    text-align: center;
  }
  .quote-hero-inner { max-width: 720px; margin: 0 auto; }
  .quote-hero h1 {
    color: white;
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin: 0 0 1rem;
    text-shadow: 0 2px 16px rgba(0,0,0,.25);
  }
  .quote-hero-sub {
    color: rgba(255,255,255,.8);
    font-size: 1.1rem;
    line-height: 1.72;
    margin: 0;
    max-width: 58ch;
    margin: 0 auto;
  }

  /* ── QUOTE SECTION WRAPPER ──────────────────────── */
  .quote-section {
    background: var(--warm);
    padding: 4rem 2rem 5rem;
  }
  .quote-section-inner { max-width: 1100px; margin: 0 auto; }

  /* ── QUOTE 60/40 LAYOUT ─────────────────────────── */
  .quote-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  /* ── FORM COLUMN ────────────────────────────────── */
  .quote-col-heading {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--pine);
    margin: .35rem 0 .75rem;
  }
  .quote-col-sub {
    color: var(--muted);
    font-size: .975rem;
    line-height: 1.65;
    margin: 0 0 2rem;
    max-width: 48ch;
  }

  /* ── UNIFIED SIDEBAR CONTACT BLOCK ──────────────── */
  .contact-unified {
    background: #fff;
    border: 1px solid #d9e0d5;
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 2px 10px rgba(10,77,46,.04);
  }
  .contact-row {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding: .9rem 0;
    border-bottom: 1px solid #f0f3ed;
  }
  .contact-row:first-child { padding-top: 0; }
  .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
  .contact-row-label {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--meadow);
    font-weight: 700;
  }
  .contact-row-value {
    color: var(--pine);
    font-size: .95rem;
    line-height: 1.55;
    font-weight: 500;
  }
  .contact-row-link { color: var(--meadow); text-decoration: none; transition: color .15s; }
  .contact-row-link:hover { color: var(--pine); }

  /* ── FORM ELEMENTS ──────────────────────────────── */
  .form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 1.25rem;
  }
  .form-group label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--pine);
    letter-spacing: .01em;
  }
  .form-required { color: var(--rust); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    border: 1.5px solid var(--parch);
    border-radius: 8px;
    padding: .75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: white;
    transition: border-color .15s, box-shadow .15s;
    width: 100%;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--lawn);
    box-shadow: 0 0 0 3px rgba(61,140,92,.12);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--light);
  }
  .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b5a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
  }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .quote-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    letter-spacing: .01em;
  }
  .form-disclaimer {
    color: var(--muted);
    font-size: .825rem;
    margin-top: 1rem;
    text-align: center;
    line-height: 1.6;
  }

  /* ── SIDEBAR PANELS ─────────────────────────────── */
  .quote-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
  .quote-sidebar-panel {
    border-radius: 16px;
    padding: 1.75rem 2rem;
  }
  .sidebar-panel-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .sidebar-panel-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 .25rem;
  }
  .sidebar-panel-heading {
    font-size: 1.05rem;
    margin: 0 0 .5rem;
  }
  .sidebar-panel-sub {
    font-size: .9rem;
    line-height: 1.6;
    margin: 0 0 .5rem;
  }
  .sidebar-panel-note {
    font-size: .825rem;
    line-height: 1.55;
    margin: 0 0 1.25rem;
    opacity: .8;
  }

  /* Accent: rust (call us) */
  .accent-rust {
    background: var(--rust);
    color: white;
  }
  .accent-rust .sidebar-panel-icon { background: rgba(255,255,255,.18); color: white; }
  .accent-rust .sidebar-panel-label { color: white; }
  .accent-rust .sidebar-panel-sub { color: rgba(255,255,255,.95); }
  .sidebar-phone-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    letter-spacing: -.01em;
    transition: opacity .15s;
    margin-top: .5rem;
  }
  .sidebar-phone-link:hover { opacity: .8; color: white; }

  /* Accent: green (payment) */
  .accent-green {
    background: var(--cream);
    border: 1.5px solid var(--lawn);
  }
  .accent-green .sidebar-panel-icon { background: var(--lawn); color: white; }
  .accent-green .sidebar-panel-heading { color: var(--pine); }
  .accent-green .sidebar-panel-sub,
  .accent-green .sidebar-panel-note { color: var(--muted); }
  .sidebar-pay-btn {
    display: block;
    text-align: center;
    font-size: .95rem;
    padding: .75rem 1.5rem;
  }

  /* Accent: white (what happens next) */
  .accent-white {
    background: white;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 2px 14px rgba(22,43,30,.07);
  }
  .accent-white .sidebar-panel-heading { color: var(--pine); }
  .sidebar-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
  }
  .sidebar-steps li {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    font-size: .9rem;
    color: var(--text);
    line-height: 1.55;
  }
  .sidebar-step-num {
    width: 26px;
    height: 26px;
    min-width: 26px;
    background: var(--fern);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1;
    margin-top: .1rem;
  }

  /* ── PAYMENT SECTION ────────────────────────────── */
  .payment-section {
    background: var(--cream);
    padding: 5rem 2rem;
  }
  .payment-section-inner { max-width: 1100px; margin: 0 auto; }
  .payment-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .payment-subtitle {
    color: var(--muted);
    font-size: 1rem;
    margin: 0;
  }
  .payment-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  /* Payment info box */
  .payment-info-box {
    background: white;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 16px;
    padding: 2rem 2.25rem;
    box-shadow: 0 2px 14px rgba(22,43,30,.06);
  }
  .payment-info-box p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.72;
    margin: 0 0 1rem;
  }
  .payment-info-box p:last-of-type { margin-bottom: 1.5rem; }
  .payment-contact-block {
    display: flex;
    flex-direction: column;
    gap: .65rem;
  }
  .payment-contact-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--meadow);
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: color .15s;
  }
  .payment-contact-item:hover { color: var(--pine); }
  .payment-contact-item svg { flex-shrink: 0; color: var(--leaf); }

  /* Payment card (Stripe) */
  .payment-card {
    background: white;
    border: 1.5px solid var(--leaf);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(22,43,30,.09);
  }
  .payment-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--parch);
  }
  .payment-card-brand {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--pine);
    font-size: 1rem;
  }
  .payment-stripe-badge {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--muted);
    text-transform: uppercase;
    background: var(--parch);
    padding: .3rem .75rem;
    border-radius: 100px;
  }
  .payment-card-intro {
    color: var(--muted);
    font-size: .9rem;
    margin: 0 0 1.25rem;
    line-height: 1.6;
  }
  .stripe-card-element {
    border: 1.5px solid var(--leaf);
    border-radius: 8px;
    padding: .875rem 1rem;
    background: white;
    transition: border-color .15s, box-shadow .15s;
    min-height: 46px;
  }
  .stripe-card-element.StripeElement--focus {
    border-color: var(--meadow);
    box-shadow: 0 0 0 3px rgba(61,140,92,.12);
  }
  .stripe-error {
    color: #c0392b;
    font-size: .875rem;
    margin-top: .5rem;
    min-height: 1.25em;
    line-height: 1.4;
  }
  .stripe-note {
    color: #555;
    font-size: .8rem;
    margin-top: .75rem;
    text-align: center;
    line-height: 1.55;
  }

  /* ── RESPONSIVE: QUOTE PAGE ─────────────────────── */
  @media (max-width: 900px) {
    .quote-layout {
      grid-template-columns: 1fr;
    }
    .quote-sidebar {
      order: -1;
    }
    .payment-layout {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 600px) {
    .quote-section { padding: 3rem 1.25rem 3.5rem; }
    .payment-section { padding: 3rem 1.25rem 3.5rem; }
    .quote-hero { padding: 3rem 1.25rem 2.75rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .quote-col-heading { font-size: 1.4rem; }
    .payment-card { padding: 1.5rem; }
    .payment-info-box { padding: 1.5rem; }
  }
}

@layer components {

  /* ── PAGE HERO (inner pages) ──────────────────────── */
  /* Upgrade existing .page-hero to support image and green variants */
  .page-hero--image {
    min-height: 55vh;
    background-size: cover;
    background-position: center 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 5rem;
  }
  .page-hero--green {
    background: linear-gradient(135deg, var(--pine) 0%, var(--fern) 60%, var(--meadow) 100%);
    padding: 5rem 2rem 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-hero--green::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 70% 50%, rgba(90,173,120,.18) 0%, transparent 65%);
    pointer-events: none;
  }
  .page-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
  }
  .page-hero-inner h1 {
    color: white;
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin: 0 0 1.1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
  }
  .page-hero-sub {
    color: rgba(255,255,255,.82);
    font-size: 1.1rem;
    max-width: 58ch;
    margin: 0 auto;
    line-height: 1.72;
  }

  /* ── ABOUT: MISSION ──────────────────────────────── */
  .about-mission {
    background: var(--cream);
    padding: 5rem 2rem;
  }
  .about-prose {
    max-width: 72ch;
    margin: 0 auto;
  }
  .about-prose .section-kicker { margin-bottom: 1.25rem; }
  .about-prose p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.82;
    margin: 0 0 1.25rem;
  }

  /* ── ABOUT: HISTORY ──────────────────────────────── */
  .about-history {
    background: var(--warm);
    padding: 5rem 2rem;
  }
  .about-history-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .about-history-text .section-kicker { margin-bottom: .75rem; }
  .about-history-text h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--pine);
    margin: 0 0 1.25rem;
  }
  .about-history-text p {
    color: var(--muted);
    font-size: .975rem;
    line-height: 1.8;
    margin: 0 0 1.5rem;
  }
  .about-pullquote {
    background: white;
    border-left: 4px solid var(--lawn);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 1.75rem;
    margin: 0;
    box-shadow: 0 2px 14px rgba(22,43,30,.07);
  }
  .about-pullquote p {
    color: var(--text);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 .85rem;
  }
  .about-pullquote cite {
    color: var(--meadow);
    font-size: .875rem;
    font-weight: 600;
    font-style: normal;
  }
  .about-history-photo {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(22,43,30,.13);
  }
  .about-history-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
  }
  .about-history-photo:hover img { transform: scale(1.03); }

  /* ── ABOUT: JIM SPILLER ──────────────────────────── */
  .about-jim {
    background: var(--cream);
    padding: 5rem 2rem;
  }
  .about-jim-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 4rem;
    align-items: start;
  }
  .about-jim-photo {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 36px rgba(22,43,30,.13);
    position: sticky;
    top: 88px;
  }
  .about-jim-photo img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .about-jim-text .section-kicker { margin-bottom: .75rem; }
  .about-jim-text h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    color: var(--pine);
    margin: 0 0 1.25rem;
  }
  .about-jim-text p {
    color: var(--muted);
    font-size: .975rem;
    line-height: 1.8;
    margin: 0 0 1.1rem;
  }

  /* ── ABOUT: GUARANTEES ───────────────────────────── */
  .about-guarantees {
    background: var(--warm);
    padding: 5rem 2rem;
  }
  .about-guarantees-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .guarantee-card {
    background: white;
    border: 1px solid rgba(0,0,0,.07);
    border-top: 3px solid var(--lawn);
    border-radius: 16px;
    padding: 2rem 1.75rem;
  }
  .guarantee-icon {
    color: var(--meadow);
    font-size: 1.25rem;
    margin-bottom: .85rem;
    line-height: 1;
  }
  .guarantee-card h3 {
    font-size: 1rem;
    color: var(--pine);
    margin: 0 0 .65rem;
    line-height: 1.25;
  }
  .guarantee-card p {
    color: var(--muted);
    font-size: .875rem;
    line-height: 1.65;
    margin: 0;
  }

  /* ── ABOUT: CTA ──────────────────────────────────── */
  .about-cta {
    background: var(--pine);
    background-image: linear-gradient(135deg, var(--fern) 0%, var(--pine) 100%);
    padding: 5rem 2rem;
    text-align: center;
  }
  .about-cta-inner { max-width: 680px; margin: 0 auto; }
  .about-cta-inner h2 {
    color: white;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0 0 1rem;
  }
  .about-cta-inner p {
    color: rgba(255,255,255,.78);
    font-size: 1rem;
    line-height: 1.72;
    margin: 0 0 2.5rem;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
  }
  .about-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .about-cta-phone {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color .15s;
  }
  .about-cta-phone:hover { color: var(--leaf); }

  /* ── ABOUT: TESTIMONIAL BLOCK ────────────────────── */
  .about-testimonial {
    background: #fff;
    border-left: 4px solid var(--meadow);
    border-radius: .5rem;
    padding: 1.75rem 2rem;
    margin: 1.5rem 0 0;
    box-shadow: 0 2px 14px rgba(0,0,0,.05);
  }
  .about-testimonial-stars { color: #e0a53a; font-size: 1.1rem; letter-spacing: .1em; margin-bottom: .75rem; }
  .about-testimonial p { color: var(--muted); font-style: italic; font-size: .95rem; line-height: 1.75; margin: 0 0 1.25rem; }
  .about-testimonial-meta { display: flex; align-items: center; gap: .85rem; font-style: normal; }
  .about-testimonial-meta img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
  .about-testimonial-meta div { display: flex; flex-direction: column; }
  .about-testimonial-meta cite { font-weight: 700; font-style: normal; color: var(--forest); }
  .about-testimonial-meta span { font-size: .85rem; color: var(--muted); }

  /* ── ABOUT: MISSION PHOTOS (badge + truck stack) ── */
  .about-mission-photos {
    display: flex; flex-direction: column; gap: 2rem;
    align-items: center; justify-content: center;
    padding: 2rem;
  }
  .about-mission-photos img.about-badge-img,
  .about-mission-photos img.about-truck-img {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }
  .about-mission-photos img.about-badge-img { max-width: 260px; max-height: 260px; }
  .about-mission-photos img.about-truck-img {
    max-width: 480px;
    max-height: 340px;
    border-radius: 1rem;
    box-shadow: 0 6px 24px rgba(0,0,0,.12);
  }
  .about-mission-photos.split-photo:hover img { transform: none; }

  /* ── ABOUT: JIM PORTRAIT ─────────────────────────── */
  .about-jim-section .split-photo {
    display: flex; align-items: center; justify-content: center;
    padding: 3rem 2rem;
    overflow: visible;
  }
  .about-jim-section .split-photo img.about-jim-portrait {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 560px;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0 8px 28px rgba(0,0,0,.15);
  }
  .about-jim-section .split-photo:hover img { transform: none; }

  /* ── ABOUT: BADGE + TRUCK SIZING ─────────────────── */
  .about-mission-photos img { display: block; }

  /* ── ABOUT: GUARANTEES DARK VARIANT ──────────────── */
  .about-guarantees--dark { background: var(--pine, #0a4d2e); }
  .guarantee-card--dark {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-top: 3px solid var(--meadow);
  }
  .guarantee-card--dark h3 { color: #fff; }
  .guarantee-card--dark p { color: rgba(255,255,255,.78); }
  .guarantee-card--dark .guarantee-icon { color: var(--leaf, #7dd87a); }

  /* ── ABOUT: CTA IMAGE VARIANT ────────────────────── */
  .about-cta--image { background-size: cover; background-position: center; background-repeat: no-repeat; }
  .about-cta-phone-block { display: flex; flex-direction: column; align-items: flex-start; }
  .about-cta-phone-label { color: rgba(255,255,255,.72) !important; font-size: .85rem !important; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 .25rem !important; }

  /* ── CITY SNAPSHOT (AT A GLANCE) ─────────────────── */
  .city-snapshot-section { background: var(--cream); padding: 4rem 2rem; }
  .city-snapshot-inner { max-width: 1100px; margin: 0 auto; }
  .city-snapshot-inner .section-kicker { margin-bottom: 1.5rem; }
  .city-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
  @media (max-width: 900px) {
    .city-snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 520px) {
    .city-snapshot-grid { grid-template-columns: 1fr; }
  }
  .snapshot-item {
    background: #fff;
    border: 1px solid #d9e0d5;
    border-radius: .75rem;
    padding: 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
  }
  .snapshot-label {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--meadow);
    font-weight: 700;
  }
  .snapshot-value {
    font-size: 1.05rem;
    color: var(--pine);
    font-weight: 600;
    line-height: 1.4;
  }
  .city-snapshot-note {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.75;
    margin: 1rem 0;
    padding: 1rem 1.25rem;
    background: #fff;
    border-left: 3px solid var(--meadow);
    border-radius: .25rem;
  }
  .city-snapshot-note strong { color: var(--forest); }

  /* ── CITY INTRO PHOTO (override split-photo stretch) ─ */
  .city-intro-photo img.about-badge-img,
  .city-intro-photo img {
    object-fit: cover;
  }

  /* ── NEARBY SERVICE AREAS ────────────────────────── */
  .nearby-areas-section { padding: 4rem 2rem; background: var(--warm); }
  .nearby-areas-inner { max-width: 1100px; margin: 0 auto; }
  .nearby-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
  }
  .nearby-area-pill {
    display: inline-flex;
    align-items: center;
    padding: .65rem 1.1rem;
    background: #fff;
    border: 1px solid #d9e0d5;
    border-radius: 2rem;
    color: var(--forest);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: background .15s, border-color .15s, color .15s, transform .15s;
  }
  .nearby-area-pill:hover {
    background: var(--meadow);
    border-color: var(--meadow);
    color: #fff;
    transform: translateY(-1px);
  }

  /* ── RECOMMENDATIONS (PROVIDERS) ─────────────────── */
  .providers-section { padding: 5rem 2rem; background: var(--warm, #faf7f1); }
  .providers-inner { max-width: 1200px; margin: 0 auto; }
  .providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-top: 2rem;
  }
  .provider-card {
    background: #fff;
    border: 1px solid #d9e0d5;
    border-radius: 1rem;
    padding: 1.75rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s, border-color .2s;
  }
  .provider-card:hover { box-shadow: 0 8px 28px rgba(10,77,46,.1); transform: translateY(-3px); border-color: var(--meadow); }
  .provider-logo {
    height: 80px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .provider-logo img { max-height: 80px; max-width: 180px; width: auto; height: auto; object-fit: contain; }
  .provider-card h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.2rem;
    color: var(--forest, #0a4d2e);
    margin: 0 0 .5rem;
  }
  .provider-card p {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
  }

  /* ── CONTACT PAGE ────────────────────────────────── */
  .contact-section {
    background: var(--warm);
    padding: 5rem 2rem;
  }
  .contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
  }
  .contact-info h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--pine);
    margin: 0 0 2rem;
  }
  .contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.4rem 1.5rem;
    background: white;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 14px;
    margin-bottom: .85rem;
    box-shadow: 0 2px 10px rgba(22,43,30,.05);
  }
  .contact-card-icon {
    color: var(--meadow);
    font-size: 1rem;
    margin-top: .2rem;
    flex-shrink: 0;
    line-height: 1;
  }
  .contact-card-body {
    display: flex;
    flex-direction: column;
    gap: .2rem;
  }
  .contact-card-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .contact-card-value {
    color: var(--text);
    font-size: .975rem;
    line-height: 1.55;
  }
  .contact-card-link {
    color: var(--meadow);
    text-decoration: none;
    font-weight: 600;
    transition: color .15s;
  }
  .contact-card-link:hover { color: var(--pine); }

  /* Contact form column */
  .contact-form-col h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--pine);
    margin: 0 0 1.75rem;
  }
  .contact-form .form-group input,
  .contact-form .form-group select,
  .contact-form .form-group textarea {
    border-color: var(--leaf);
  }
  .form-req { color: var(--rust); }
  .contact-form button[type="submit"] {
    border: none;
    cursor: pointer;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  .contact-form-note {
    color: var(--muted);
    font-size: .85rem;
    margin-top: 1.25rem;
    line-height: 1.6;
  }
  .contact-form-note a { color: var(--meadow); }

  /* ── FAQ: services mini-grid ─────────────────────── */
  .faq-services {
    background: var(--warm);
    padding: 5rem 2rem;
  }
  .faq-services-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .faq-svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 720px;
    margin: 0 auto;
  }
  .faq-svc-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.75rem;
    background: white;
    border: 1.5px solid var(--parch);
    border-radius: 14px;
    text-decoration: none;
    transition: border-color .15s, background .15s, box-shadow .15s;
    box-shadow: 0 2px 10px rgba(22,43,30,.05);
  }
  .faq-svc-card:hover {
    border-color: var(--lawn);
    background: var(--pine);
    box-shadow: 0 6px 22px rgba(22,43,30,.14);
  }
  .faq-svc-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--pine);
    font-size: 1rem;
    transition: color .15s;
  }
  .faq-svc-card:hover .faq-svc-title { color: white; }
  .faq-svc-arrow {
    color: var(--light);
    font-size: .9rem;
    transition: color .15s, transform .15s;
  }
  .faq-svc-card:hover .faq-svc-arrow { color: var(--leaf); transform: translateX(3px); }

  /* ── SERVICES PAGES ────────────────────────────────
     Components used on /services/ index and individual service pages.
  ─────────────────────────────────────────────────── */

  /* Inner page hero — bg-image, text anchored to bottom */
  .inner-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center 50%;
    overflow: hidden;
  }
  .inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(14,34,22,.94) 0%,
      rgba(14,34,22,.60) 45%,
      rgba(14,34,22,.22) 100%
    );
    display: flex;
    align-items: flex-end;
    width: 100%;
  }
  .inner-hero-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem 3.5rem;
    width: 100%;
  }
  .inner-hero-content h1 {
    color: white;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    margin: .5rem 0 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,.35);
  }
  .inner-hero-sub {
    color: rgba(255,255,255,.78);
    font-size: 1.1rem;
    max-width: 56ch;
    line-height: 1.7;
    margin: 0;
  }

  /* Services index bg-image hero */
  .svc-index-hero {
    background-color: var(--pine);
    background-image:
      linear-gradient(to bottom, rgba(22,43,30,.72) 0%, rgba(22,43,30,.55) 60%, rgba(22,43,30,.82) 100%),
      url('https://mqpykxiilvtwuluaocfq.supabase.co/storage/v1/object/public/safarispray-assets/uploads/2026/01/lawncaretech-1024x683.png');
    background-size: cover;
    background-position: center 55%;
    padding: 7rem 2rem 5.5rem;
    text-align: center;
  }
  .svc-index-hero-inner { max-width: 780px; margin: 0 auto; }
  .svc-index-hero-inner h1 {
    color: white;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin: .75rem 0 1.25rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
  }
  .svc-index-hero-inner p {
    color: rgba(255,255,255,.8);
    font-size: 1.15rem;
    max-width: 52ch;
    margin: 0 auto;
    line-height: 1.72;
  }

  /* Services index 2×2 card grid */
  .svc-index-section { background: var(--cream); padding: 5rem 2rem; }
  .svc-index-inner { max-width: 1100px; margin: 0 auto; }
  .svc-index-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .svc-grid-card {
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
    transition: transform .22s ease, box-shadow .22s ease;
    box-shadow: 0 3px 16px rgba(22,43,30,.07);
  }
  .svc-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(22,43,30,.14);
    color: var(--text);
  }
  .svc-grid-card-img {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    flex-shrink: 0;
  }
  .svc-grid-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease;
  }
  .svc-grid-card:hover .svc-grid-card-img img { transform: scale(1.05); }
  .svc-grid-card-body {
    padding: 1.75rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .svc-grid-card-body h2 {
    font-size: 1.25rem;
    color: var(--pine);
    margin: 0 0 .65rem;
  }
  .svc-grid-card-body p {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.68;
    margin: 0 0 1.25rem;
    flex: 1;
  }
  .svc-grid-card-link {
    color: var(--meadow);
    font-size: .875rem;
    font-weight: 600;
    transition: color .15s;
    margin-top: auto;
  }
  .svc-grid-card:hover .svc-grid-card-link { color: var(--pine); }

  /* Guarantees 2×2 grid */
  .guarantee-section { background: var(--warm); padding: 5rem 2rem; }
  .guarantee-inner { max-width: 1100px; margin: 0 auto; }
  .guarantee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .guarantee-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.07);
    padding: 2rem 2.25rem;
    box-shadow: 0 2px 12px rgba(22,43,30,.05);
  }
  .guarantee-item > .guarantee-icon {
    font-size: 1.5rem;
    color: var(--meadow);
    line-height: 1;
    flex-shrink: 0;
    margin-top: .1rem;
    font-style: normal;
    margin-bottom: 0;
  }
  .guarantee-item h3 {
    font-size: 1.05rem;
    color: var(--pine);
    margin: 0 0 .5rem;
  }
  .guarantee-item p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.68;
    margin: 0;
  }

  /* Approach grid col modifiers (base .approach-grid is 2-col from city pages) */
  .approach-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .approach-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  /* Number indicator for service approach cards */
  .approach-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--meadow);
    margin-bottom: .85rem;
    line-height: 1;
  }

  /* Schedule steps — numbered treatment rounds */
  .schedule-steps { display: flex; flex-direction: column; }
  .schedule-step {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--parch);
  }
  .schedule-step:last-child { border-bottom: none; }
  .schedule-badge {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--pine);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .95rem;
    flex-shrink: 0;
    margin-top: .15rem;
  }
  .schedule-body h3 { font-size: 1.05rem; color: var(--pine); margin: 0 0 .5rem; }
  .schedule-body p { color: var(--muted); font-size: .92rem; line-height: 1.7; margin: 0 0 .4rem; }
  .schedule-body p a { color: var(--pine); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
  .schedule-body p a:hover { text-decoration-thickness: 2px; }
  .schedule-body p:last-child { margin-bottom: 0; }
  .schedule-product { font-size: .875rem !important; color: var(--light) !important; }
  .schedule-product strong { color: var(--fern) !important; }

  /* Checklist — green checkmark bullets */
  .checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .85rem; }
  .checklist li { display: flex; align-items: flex-start; gap: .85rem; color: var(--text); font-size: .975rem; line-height: 1.65; }
  .checklist li::before { content: '✓'; color: var(--meadow); font-weight: 700; font-size: 1rem; flex-shrink: 0; margin-top: .1rem; line-height: 1.65; }
  .checklist-light li { color: rgba(255,255,255,.88); }
  .checklist-light li::before { color: var(--leaf); }

  /* In2Care feature layout */
  .in2care-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .in2care-photo { border-radius: 18px; overflow: hidden; box-shadow: 0 8px 32px rgba(22,43,30,.12); }
  .in2care-photo img { width: 100%; display: block; object-fit: cover; }

  /* CTA bar — override existing city-page side-by-side layout to centered column */
  .cta-bar .cta-bar-inner { flex-direction: column; align-items: center; text-align: center; max-width: 720px; }
  .cta-bar .cta-bar-inner h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 .85rem; width: 100%; }
  .cta-bar .cta-bar-inner > p { color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.72; margin: 0 0 2.25rem; max-width: 54ch; }
  .cta-bar .cta-bar-actions { justify-content: center; flex-shrink: unset; gap: 1rem; }

  /* ── RESPONSIVE: SERVICES PAGES ──────────────────── */
  @media (max-width: 960px) {
    .approach-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
    .in2care-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }
  @media (max-width: 768px) {
    .svc-index-grid { grid-template-columns: 1fr; }
    .guarantee-grid { grid-template-columns: 1fr; }
    .approach-grid.cols-3 { grid-template-columns: 1fr; }
    .inner-hero {
      min-height: 0;
      display: block;
    }
    .inner-hero-overlay {
      position: relative;
      display: block;
      align-items: initial;
    }
    .inner-hero-content {
      padding: 3rem 1.5rem 2.5rem;
    }
    .svc-index-hero { padding: 5rem 1.5rem 4rem; }
  }

  /* ── RESPONSIVE: ABOUT / CONTACT / FAQ ───────────── */
  @media (max-width: 900px) {
    .about-history-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-history-photo { order: -1; }
    .about-jim-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-jim-photo { position: static; }
    .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  }
  @media (max-width: 600px) {
    .page-hero--image { min-height: 44vh; padding: 4rem 1.5rem 3.5rem; }
    .page-hero--green { padding: 3.5rem 1.5rem 3rem; }
    .page-hero-inner h1 { font-size: 1.75rem; }
    .about-mission { padding: 3.5rem 1.5rem; }
    .about-history { padding: 3.5rem 1.5rem; }
    .about-jim { padding: 3.5rem 1.5rem; }
    .about-guarantees { padding: 3.5rem 1.5rem; }
    .guarantees-grid { grid-template-columns: 1fr; }
    .about-cta { padding: 3.5rem 1.5rem; }
    .contact-section { padding: 3.5rem 1.5rem; }
    .faq-section { padding: 3rem 1.25rem; }
    .faq-services { padding: 3rem 1.25rem; }
    .faq-svc-grid { grid-template-columns: 1fr; }
  }
}

/* ───────────────────────── Section layouts (a11y + schema-driven) ───────────────────────── */

/* Skip-link: visible only on focus, WCAG 2.4.1 */
.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: #0a4d2e;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 .5rem .5rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 10000;
  transition: top .15s ease-in-out;
}
.skip-link:focus { top: 0; outline: 3px solid #f47b2a; outline-offset: 2px; }

/* Main container focus ring suppression (tabindex=-1 for skip-link target) */
#main-content:focus { outline: none; }

/* Breadcrumbs */
.breadcrumbs { max-width: 1200px; margin: 1.5rem auto 0; padding: 0 1.5rem; font-size: .875rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; }
.breadcrumbs li { color: #6c7566; }
.breadcrumbs li + li::before { content: "›"; margin-right: .4rem; color: #a8b0a4; }
.breadcrumbs a { color: #305030; text-decoration: none; border-bottom: 1px dotted #8ba68b; }
.breadcrumbs a:hover, .breadcrumbs a:focus-visible { color: #0a4d2e; border-bottom-color: #0a4d2e; }
.breadcrumbs [aria-current="page"] { color: #1a1a1a; font-weight: 600; }

/* Generic page/article wrappers */
.page-article, .blog-post, .service-page, .service-area-page, .career-page, .about-page, .contact-page, .faq-page, .collection-page {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem 3rem;
}
.page-article > h1, .blog-post-header h1, .service-header h1, .service-area-header h1, .career-header h1, .about-header h1, .contact-header h1, .faq-header h1, .collection-header h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: #1a2e1a;
  margin: 1rem 0 1.5rem;
}

/* Blog post specifics */
.blog-post-category {
  display: inline-block;
  background: #e6f0e6;
  color: #0a4d2e;
  padding: .3rem .8rem;
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.blog-post-meta {
  color: #6c7566;
  font-size: .9rem;
  margin: 0 0 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.blog-post-hero {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: .75rem;
  margin-bottom: 2rem;
}
.blog-post-body { font-size: 1.125rem; line-height: 1.7; color: #2a2a2a; }
.blog-post-body h2 { font-family: 'Lora', Georgia, serif; font-size: 1.75rem; margin: 2.5rem 0 1rem; color: #1a2e1a; }
.blog-post-body h3 { font-size: 1.375rem; margin: 2rem 0 .75rem; color: #1a2e1a; }
.blog-post-body p { margin: 0 0 1.25rem; }
.blog-post-body a { color: #0a4d2e; text-decoration: underline; text-underline-offset: 2px; }
.blog-post-body a:hover, .blog-post-body a:focus-visible { color: #f47b2a; }
.blog-post-body ul, .blog-post-body ol { padding-left: 1.5rem; margin: 0 0 1.25rem; }
.blog-post-body li { margin-bottom: .4rem; }
.blog-post-body img { max-width: 100%; height: auto; border-radius: .5rem; margin: 1.5rem 0; }
.blog-post-body blockquote { border-left: 4px solid #0a4d2e; padding: .5rem 1rem; margin: 1.5rem 0; background: #f4f8f4; font-style: italic; }

/* Service / service-area / career CTA blocks */
.service-cta, .service-area-cta, .career-apply {
  margin-top: 3rem;
  padding: 2rem;
  background: #0a4d2e;
  color: #fff;
  border-radius: .75rem;
  text-align: center;
}
.service-cta h2, .service-area-cta h2, .career-apply h2 { color: #fff; margin: 0 0 .75rem; }
.service-cta a:not(.btn-primary), .service-area-cta a:not(.btn-primary), .career-apply a:not(.btn-primary) {
  color: #ffd79a; text-decoration: underline;
}
.service-cta .btn-primary, .service-area-cta .btn-primary, .career-apply .btn-primary { margin-left: .5rem; }

/* Careers index grid */
.careers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 2rem; }
.career-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid #d9e0d5; border-radius: 1rem;
  overflow: hidden; text-decoration: none; color: inherit;
  transition: box-shadow .2s, transform .2s;
}
.career-card:hover { box-shadow: 0 10px 32px rgba(10,77,46,.15); transform: translateY(-3px); }
.career-card-img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.career-card-body { padding: 1.75rem 1.75rem .5rem; }
.career-card h3 { font-family: 'Lora', Georgia, serif; font-size: 1.5rem; color: var(--forest); margin: 0 0 .5rem; }
.career-card p { color: var(--muted); font-size: .95rem; line-height: 1.7; margin: 0 0 .75rem; }
.career-card-meta { font-size: .8rem !important; color: var(--meadow) !important; font-weight: 600 !important; letter-spacing: .03em; text-transform: uppercase; }
.career-card-cta { display: inline-block; padding: 0 1.75rem 1.75rem; font-size: .95rem; font-weight: 600; color: var(--meadow); }

/* Career detail page */
.career-detail { padding: 5rem 2rem; }
.career-detail-inner { max-width: 900px; margin: 0 auto; }
.career-position-block { background: var(--cream, #f4f0e8); border-left: 4px solid var(--meadow); padding: 2rem 2.25rem; border-radius: .5rem; margin-bottom: 3rem; }
.career-position-block h2 { font-family: 'Lora', Georgia, serif; color: var(--forest); font-size: 2rem; margin: .25rem 0 1rem; }
.career-position-block p { margin: .35rem 0; color: var(--muted); font-size: 1rem; }
.career-accent { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--meadow); font-weight: 700; margin: 0 0 .25rem; }

.career-accordion { display: flex; flex-direction: column; gap: 1rem; }
.career-acc-item { background: #fff; border: 1px solid #d9e0d5; border-radius: .75rem; overflow: hidden; transition: box-shadow .2s; }
.career-acc-item[open] { box-shadow: 0 4px 14px rgba(10,77,46,.06); }
.career-acc-item summary { cursor: pointer; padding: 1.25rem 1.75rem; list-style: none; display: flex; align-items: center; justify-content: space-between; }
.career-acc-item summary::-webkit-details-marker { display: none; }
.career-acc-item summary::after { content: '+'; font-size: 1.5rem; color: var(--meadow); font-weight: 300; transition: transform .2s; }
.career-acc-item[open] summary::after { content: '−'; }
.career-acc-item summary h3 { display: inline; font-family: 'Lora', Georgia, serif; color: var(--forest); font-size: 1.25rem; margin: 0; }
.career-acc-body { padding: 0 1.75rem 1.5rem; color: var(--muted); line-height: 1.75; }
.career-acc-body ul.checklist { margin: 0; padding: 0; }

/* Career application form */
.career-form-section { background: var(--cream, #f4f0e8); padding: 5rem 2rem; }
.career-form-inner { max-width: 780px; margin: 0 auto; }
.career-form { background: #fff; border-radius: 1rem; padding: 2.5rem; box-shadow: 0 4px 20px rgba(10,77,46,.06); margin-top: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; }
.form-grid label { display: flex; flex-direction: column; font-size: .9rem; font-weight: 600; color: var(--forest); gap: .4rem; }
.form-grid label.form-full { grid-column: 1 / -1; }
.form-grid input, .form-grid textarea {
  font-family: inherit; font-size: 1rem; padding: .75rem 1rem;
  border: 1px solid #d9e0d5; border-radius: .5rem; background: #fcfbf7;
  color: #2a2a2a; font-weight: 400;
}
.form-grid input:focus, .form-grid textarea:focus { outline: 2px solid var(--meadow); outline-offset: 1px; border-color: var(--meadow); }
.req { color: #b8462e; }
.form-checklist { border: none; padding: 0; margin: 1.75rem 0 2rem; }
.form-checklist legend { font-size: .9rem; font-weight: 600; color: var(--forest); margin-bottom: .75rem; padding: 0; }
.form-check { display: flex; align-items: flex-start; gap: .6rem; font-size: .95rem; color: var(--muted); line-height: 1.55; margin: .5rem 0; font-weight: 400; }
.form-check input { margin-top: .2rem; accent-color: var(--meadow); }
.career-submit { display: inline-block; font-size: 1rem; padding: .9rem 2.25rem; border: none; cursor: pointer; }
.career-form-alt { text-align: center; color: var(--muted); font-size: .95rem; margin-top: 1.75rem; }
.career-form-alt a { color: var(--meadow); font-weight: 600; }

/* THD form backend — Turnstile + status message */
.cf-turnstile { margin: 1.5rem 0 1rem; }
.thd-form-status {
  margin: 0 0 1rem;
  padding: 0;
  font-size: .95rem;
  line-height: 1.5;
  min-height: 1.25rem;
}
.thd-form-status--error {
  color: #a43b1b;
  background: #fbe9e2;
  border-left: 3px solid #a43b1b;
  padding: .75rem 1rem;
  border-radius: .25rem;
}
.thd-form-status--success {
  color: var(--forest);
  background: #e6f1e9;
  border-left: 3px solid var(--meadow);
  padding: .75rem 1rem;
  border-radius: .25rem;
}
.career-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-grid input[type="file"] {
  padding: .6rem .75rem;
  font-size: .9rem;
  color: var(--muted);
  background: #fcfbf7;
  font-weight: 400;
}
.form-grid input[type="file"]::file-selector-button {
  margin-right: .75rem;
  padding: .5rem .9rem;
  border: 1px solid var(--meadow);
  background: #fff;
  color: var(--meadow);
  font-weight: 600;
  border-radius: .35rem;
  cursor: pointer;
  font-size: .85rem;
}
.form-grid input[type="file"]::file-selector-button:hover {
  background: var(--meadow);
  color: #fff;
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.form-full { grid-column: 1; }
  .career-form { padding: 1.75rem; }
}

/* FAQ (dl semantic) */
.faq-list { display: grid; gap: 1rem; }
.faq-item { border: 1px solid #d9e0d5; border-radius: .5rem; padding: 1.25rem 1.5rem; background: #fff; }
.faq-item dt h2 { font-size: 1.125rem; margin: 0 0 .5rem; color: #1a2e1a; }
.faq-item dd { margin: 0; color: #2a2a2a; line-height: 1.6; }

/* Focus-visible baseline — WCAG 2.4.7 */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid #f47b2a;
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── AREAS CITY PILLS (homepage self-qualify) ─────────────── */
.areas-city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}
.areas-pill {
  display: inline-block;
  padding: .45rem 1rem;
  background: #fff;
  border: 1px solid var(--parch);
  border-radius: 100px;
  color: var(--pine) !important;
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.areas-pill:hover {
  background: var(--meadow);
  border-color: var(--meadow);
  color: #fff !important;
  transform: translateY(-1px);
}
.btn-ghost-dark {
  display: inline-block;
  padding: .9rem 2rem;
  border: 2px solid var(--pine);
  border-radius: 100px;
  color: var(--pine);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.btn-ghost-dark:hover { background: var(--pine); color: #fff; }

/* On dark pine .cta-bar background, invert ghost button to white-on-pine */
.cta-bar .btn-ghost-dark {
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  font-weight: 500;
  padding: .9rem 2.2rem;
}
.cta-bar .btn-ghost-dark:hover { border-color: #fff; background: rgba(255,255,255,.15); color: #fff; }

/* ── FOOTER SOCIAL ICONS ───────────────────────────────────── */
.footer-social {
  display: flex;
  gap: .65rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.72);
  transition: background .15s, color .15s, transform .15s;
  text-decoration: none;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--leaf);
  color: var(--pine);
  transform: translateY(-2px);
}
.footer-social svg { display: block; }

/* ── COMPARISON TABLE (Safari vs TruGreen) ─────────────────── */
.compare-table {
  display: grid;
  gap: 0;
  border: 1px solid var(--parch);
  border-radius: 14px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 18px rgba(22,43,30,.06);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.4fr;
  gap: 0;
  border-bottom: 1px solid var(--parch);
  padding: 0;
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div {
  padding: 1.1rem 1.35rem;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--text);
}
.compare-row > div + div { border-left: 1px solid var(--parch); }
.compare-head {
  background: var(--pine);
  color: white;
}
.compare-head > div {
  color: white;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: .01em;
}
.compare-head > div:first-child { background: var(--pine); }
.compare-label {
  background: var(--cream);
  font-weight: 600;
  color: var(--pine);
}
.compare-row > div:nth-child(2) { background: rgba(62,130,84,.06); }
.compare-row > div:nth-child(2) strong { color: var(--meadow); }

@media (max-width: 720px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-row > div + div { border-left: none; border-top: 1px solid var(--parch); }
  .compare-head { display: none; }
  .compare-row > div:nth-child(2)::before { content: "Safari: "; font-weight: 600; color: var(--meadow); }
  .compare-row > div:nth-child(3)::before { content: "TruGreen: "; font-weight: 600; color: var(--muted); }
}

/* ── PRICING CARDS ──────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}
.pricing-card {
  background: white;
  border: 1px solid var(--parch);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 18px rgba(22,43,30,.06);
  display: flex;
  flex-direction: column;
}
.pricing-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--meadow);
  margin: 0 0 .5rem;
}
.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.1;
  color: var(--pine);
  margin: 0 0 .4rem;
}
.pricing-per {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 400;
  font-family: var(--font-body);
}
.pricing-plan {
  font-size: .85rem;
  color: var(--muted);
  margin: 0 0 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--parch);
}
.pricing-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.pricing-includes li {
  font-size: .9rem;
  line-height: 1.55;
  color: var(--text);
  padding-left: 1.3rem;
  position: relative;
}
.pricing-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--meadow);
  font-weight: 700;
}

/* ── NUMBERED LIST (pricing factors) ────────────────────────── */
.numbered-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  counter-reset: nlist;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.numbered-list li {
  counter-increment: nlist;
  padding-left: 3.25rem;
  position: relative;
  font-size: .975rem;
  line-height: 1.72;
  color: var(--text);
}
.numbered-list li::before {
  content: counter(nlist);
  position: absolute;
  left: 0;
  top: -2px;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  background: var(--meadow);
  color: white;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
}
.numbered-list li strong { color: var(--pine); }
