
  @font-face { font-family: "Josefin Sans"; src: url("/fonts/josefin-sans.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }

    @font-face { font-family: "Inter"; src: url("/fonts/inter-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
  @font-face { font-family: "Inter"; src: url("/fonts/inter-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
  @font-face { font-family: "Inter"; src: url("/fonts/inter-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
  @font-face { font-family: "Inter"; src: url("/fonts/inter-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
  @font-face { font-family: "Cormorant Garamond"; src: url("/fonts/cormorant-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
  @font-face { font-family: "Cormorant Garamond"; src: url("/fonts/cormorant-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
  @font-face { font-family: "Cormorant Garamond"; src: url("/fonts/cormorant-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }

    
  @font-face { font-family: "Caveat"; src: url("/fonts/caveat-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
  @font-face { font-family: "Caveat"; src: url("/fonts/caveat-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
  
  
  

  :root {
    --primary-green: #73B96B;
    --primary-green-hover: #5DA856;
    --secondary-blue: #00384D;
    --secondary-blue-hover: #002a3a;
    --ink: #1F1F1B;
    --ink-soft: #3F3E36;
    --paper: #FFFFFF;
    --paper-deep: #F4F9F1;
    --paper-card: #FFFFFF;
    --green-real: #83C57E;       /* matches the green in the real logo */
    --green-deep: #73B96B;
    --green-darker: #00384D;
    --clay: #73B96B;
    --clay-soft: #D9EAD4;
    --gold: #D89B26;
    --navy: #00384D;
    --rule: rgba(31,31,27,0.16);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  body { background: var(--paper); color: var(--ink); font-family: "Josefin Sans", "Inter", system-ui, sans-serif; min-height: 100vh; }
  a { color: inherit; }
  .page { background: var(--paper); }

  /* ===== Top banner ===== */
  .banner { background: var(--green-darker); color: var(--paper); font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 500; font-size: 13.5px; letter-spacing: 0.06em; line-height: 1.5; display: flex; align-items: center; justify-content: center; gap: 28px; padding: 13px 24px; white-space: nowrap; }
  .banner-stars { color: #FFD970; letter-spacing: 0.06em; }
  .banner .sep { opacity: 0.45; }
  .banner-strong { font-weight: 700; letter-spacing: 0.06em; }

  /* ===== Header ===== */
  .header { display: flex; align-items: center; justify-content: space-between; padding: 20px max(56px, calc((100% - 1328px) / 2)); border-bottom: 1px solid var(--rule); background: var(--paper); line-height: 1.4; }
  .logo img { height: 78px; width: auto; display: block; }
  .nav { display: flex; gap: 34px; font-weight: 500; font-size: 15px; }
  .nav a { color: var(--ink); text-decoration: none; padding-bottom: 3px; position: relative; }
  .nav a.active:after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--green-deep); border-radius: 999px; }
  .header-ctas { display: flex; align-items: center; gap: 16px; }
  .header-phone { font-weight: 700; font-size: 17px; color: var(--ink); text-decoration: none; }
.header-btn { background: var(--clay); color: var(--paper); padding: 13px 26px; font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border-radius: 999px; transition: background 0.2s; }
  .header-btn:hover { background: var(--green-deep); }

  /* ===== Hero - full-bleed photo, light wash overlay (mountain line + lake visible across entire hero) ===== */
  .hero { position: relative; min-height: 540px;
    background-image: url("/source-hero.webp");
    background-size: cover;
    background-position: center 30%;
    overflow: hidden;
  }
  /* Two soft overlays:
     1. A LIGHT cream wash across the entire hero, so the photo stays visible everywhere
     2. A subtle left-leaning gradient gives the text-content side a bit more weight, but never goes opaque */
  .hero:before {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(to right,
        rgba(255,255,255,0.94) 0%,
        rgba(255,255,255,0.92) 38%,
        rgba(255,255,255,0.92) 50%,
        rgba(255,255,255,0.50) 70%,
        rgba(255,255,255,0.10) 100%),
      linear-gradient(to bottom, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 60%, rgba(255,255,255,0.25) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 1fr; gap: 24px; align-items: stretch; min-height: 540px; }

  /* ===== Left column - text content ===== */
  .hero-left { padding: 40px 24px 40px 64px; display: flex; flex-direction: column; justify-content: center; max-width: 720px; }
  .hero-above { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-darker); margin-bottom: 20px; }
  .hero-above .pipe { color: var(--clay); margin: 0 12px; opacity: 0.7; }
  h1.hero-eyebrow { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 18px; }
  .hero-display-wrap { display: inline-block; max-width: 660px; }
  .hero-display { font-family: "Josefin Sans", "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 400; font-size: 86px; line-height: 0.98; letter-spacing: -0.01em; color: var(--ink); }
  .hero-display .yours-wrap { color: var(--green-deep); position: relative; display: inline-block; }
  .hero-display .yours-underline { position: absolute; left: 0; right: 0; bottom: -6px; width: 100%; height: 14px; }
  .hero-signature-row { display: flex; justify-content: flex-end; margin-top: 22px; max-width: 660px; }
  .hero-signature { font-family: "Caveat", cursive; font-weight: 700; font-size: 32px; line-height: 1.05; color: var(--clay); text-align: right; }
  .hero-signature-credit { display: block; font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 0.10em; color: var(--ink-soft); text-transform: uppercase; margin-top: 2px; }
  .hero-subhead { font-size: 18px; line-height: 1.55; color: var(--ink); max-width: 580px; margin: 22px 0 22px; font-weight: 400; }
  .hero-bullets { list-style: none; padding: 0; margin-bottom: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; max-width: 620px; }
  .hero-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; line-height: 1.4; color: var(--ink); font-weight: 500; }
  .hero-bullets li:before { content: ""; display: inline-block; width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 1 L4 8 L7 8 L6 15 L12 7 L9 7 Z' fill='%23A86B40'/></svg>") no-repeat center / contain; }
  .hero-cta-row { display: flex; gap: 14px; }
  .cta-primary { background: var(--clay); color: var(--paper); padding: 19px 34px; font-weight: 700; font-size: 17px; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; border-radius: 8px; transition: background 0.2s, transform 0.15s; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 4px 14px rgba(115,185,107,0.28); }
  .cta-primary:hover { background: var(--green-deep); transform: translateY(-1px); }
  .cta-secondary { background: rgba(255,254,250,0.85); color: var(--ink); padding: 19px 30px; font-weight: 700; font-size: 17px; letter-spacing: 0.04em; text-decoration: none; border: 2px solid var(--ink); border-radius: 8px; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; backdrop-filter: blur(2px); }
.cta-secondary:hover { background: var(--ink); color: var(--paper); }

  /* ===== Right column - brand anchor floats over the photo ===== */
  .hero-right { padding: 28px 56px 28px 24px; display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
  /* Pills sit at the TOP-LEFT of the anchor area, squared to match review-card / stats-card vocabulary */
  .cred-stack-top { align-self: flex-start; display: flex; flex-direction: column; gap: 10px; }
  .cred-chip { display: inline-flex; align-items: center; gap: 10px; background: var(--paper-card); padding: 12px 16px; border-radius: 8px; font-weight: 700; font-size: 13.5px; letter-spacing: 0.02em; color: var(--ink); box-shadow: 0 6px 18px rgba(31,31,27,0.20); border: 1px solid var(--rule); white-space: nowrap; }
  .cred-chip .icon { width: 24px; height: 24px; border-radius: 5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; }
  .cred-chip .icon.green { background: var(--green-deep); color: var(--paper); }
  .cred-chip .icon.clay { background: var(--green-deep); color: var(--paper); }
  .cred-chip .icon.gold { background: var(--gold); color: var(--green-darker); }

  /* Stats block - moved up to top-right, alongside pills */
  .hero-stats { position: absolute; top: 36px; right: 56px; background: rgba(0,56,77,0.95); color: var(--paper); padding: 16px 20px; border-radius: 8px; display: flex; gap: 24px; box-shadow: 0 10px 24px rgba(0,56,77,0.28); z-index: 3; }
  .hero-stat { text-align: center; }
  .hero-stat .num { font-family: "Josefin Sans", "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 400; font-size: 38px; line-height: 1; color: var(--green-real); letter-spacing: -0.01em; }
  .hero-stat .num small { font-size: 16px; vertical-align: super; }
  .hero-stat .lbl { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; margin-top: 6px; }

  /* Review card - bottom right of hero */
  .review-card { background: var(--paper-card); padding: 18px 22px 18px 26px; border-radius: 8px; max-width: 410px; position: relative; box-shadow: 0 14px 32px rgba(31,31,27,0.22); border: 1px solid var(--rule); align-self: flex-end; margin-top: auto; }
  .review-card:before { content: "“"; position: absolute; left: 12px; top: 4px; font-family: "Caveat", cursive; font-weight: 700; font-size: 56px; color: var(--clay); line-height: 1; }
  .review-stars { color: var(--gold); letter-spacing: 0.06em; font-size: 14px; margin-bottom: 5px; padding-left: 26px; }
  .review-quote { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 400; font-size: 14.5px; line-height: 1.45; color: var(--ink); margin-bottom: 7px; padding-left: 26px; font-style: italic; }
  .review-meta { font-size: 11.5px; letter-spacing: 0.06em; color: var(--ink-soft); padding-left: 26px; }
  .review-meta .source-pill { background: var(--green-deep); color: var(--paper); padding: 2px 7px; border-radius: 3px; margin-left: 6px; font-weight: 700; letter-spacing: 0.10em; }

  .variant-tag { position: fixed; top: 8px; left: 8px; background: var(--clay); color: var(--paper); font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; padding: 6px 10px; border-radius: 2px; z-index: 99; font-weight: 700; }

  /* ===== Mobile sticky bottom bar (≤ 768px) ===== */
  .sticky-bar { display: none; }
  @media (max-width: 768px) {
    /* Reserve space so the footer bottom strip isn't covered by the sticky CTA bar. */
    body { padding-bottom: 96px; }
    .sticky-bar {
      display: flex;
      position: fixed;
      left: 0; right: 0; bottom: 0;
      z-index: 50;
      gap: 10px;
      padding: 10px 14px;
      padding-bottom: calc(10px + env(safe-area-inset-bottom));
      background: var(--paper-card);
      border-top: 2px solid var(--green-real);
      box-shadow: 0 -8px 22px rgba(31,31,27,0.18);
      opacity: 0;
      transform: translateY(100%);
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .sticky-bar.is-visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .sticky-bar__cta {
      flex: 1 1 0;
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 12px;
      border-radius: 8px;
      font-family: "Josefin Sans", "Inter", system-ui, sans-serif;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      text-decoration: none;
      text-align: center;
      line-height: 1;
      white-space: nowrap;
    }
    .sticky-bar__cta--call {
      background: var(--clay);
      color: var(--paper);
      border: 2px solid var(--clay);
      box-shadow: 0 2px 8px rgba(168,107,64,0.25);
    }
    .sticky-bar__cta--schedule {
      background: var(--paper-card);
      color: var(--ink);
      border: 2px solid var(--ink);
    }
    .sticky-bar__cta:focus-visible {
      outline: 3px solid var(--green-deep);
      outline-offset: 2px;
    }
  }

/* ===== Mobile hero (display below 769px only) ===== */
@media (min-width: 769px) { .m-hero-wrap { display: none !important; } }
@media (max-width: 768px) { .hero, .page > .banner, .page > .header, .page > .hero { display: none !important; } }
.m-hero-wrap { width: 100%; max-width: 100%; background: var(--paper); }

  :root {
    --ink: #1F1F1B;
    --ink-soft: #3F3E36;
    --paper: #FFFFFF;
    --paper-deep: #F4F9F1;
    --paper-card: #FFFFFF;
    --green-real: #83C57E;
    --green-deep: #73B96B;
    --green-darker: #00384D;
    --clay: #73B96B;
    --gold: #D89B26;
    --rule: rgba(31,31,27,0.16);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  
  

  .m-banner { background: var(--green-darker); color: var(--paper); font-size: 12px; font-weight: 500; letter-spacing: 0.05em; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 8px 10px; white-space: nowrap; }
  .m-banner-stars { color: #FFD970; }
  .m-banner-strong { font-weight: 700; }
  .m-banner .m-sep { opacity: 0.5; }

  .m-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-bottom: 1px solid var(--rule); }
  .m-logo img { height: 56px; display: block; }
  .m-header-ctas { display: flex; align-items: center; gap: 8px; }
  .m-header-call { background: var(--clay); color: var(--paper); padding: 11px 16px; border-radius: 8px; font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
  .m-header-hamburger { width: 40px; height: 40px; background: var(--ink); color: var(--paper); border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; }
  .m-header-hamburger span { display: block; width: 18px; height: 2px; background: var(--paper); position: relative; }
  .m-header-hamburger span:before, .m-header-hamburger span:after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--paper); }
  .m-header-hamburger span:before { top: -6px; }
  .m-header-hamburger span:after { top: 6px; }

  /* ===== Hero core (text content) ===== */
  .m-hero-core { padding: 24px 20px 8px; display: flex; flex-direction: column; gap: 14px; background: var(--paper); }
  .m-hero-above { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-darker); text-align: left; }
  .m-hero-above .m-pipe { color: var(--clay); margin: 0 8px; opacity: 0.7; }
  h1.hero-eyebrow { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); text-align: left; }
  .m-hero-display-wrap { display: flex; flex-direction: column; align-items: stretch; }
  .m-hero-display { font-family: "Josefin Sans", "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 400; font-size: 46px; line-height: 0.98; letter-spacing: -0.005em; color: var(--ink); text-align: left; }
  .m-hero-display .m-yours-wrap { color: var(--green-deep); position: relative; display: inline-block; }
  .m-hero-display .m-yours-underline { position: absolute; left: 0; right: 0; bottom: -3px; width: 100%; height: 8px; }
  .m-hero-signature-row { display: flex; justify-content: flex-end; padding-right: 4px; margin-top: 12px; }
  .m-hero-signature { font-family: "Caveat", cursive; font-weight: 700; font-size: 24px; color: var(--clay); text-align: right; line-height: 1.05; }
  .m-hero-signature-credit { display: block; font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 500; font-size: 10px; letter-spacing: 0.10em; color: var(--ink-soft); text-transform: uppercase; margin-top: 0; }
  .m-hero-subhead { font-size: 16px; line-height: 1.5; color: var(--ink); text-align: left; padding: 0; font-weight: 500; }
  .m-hero-cta-row { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
  .m-cta-primary { background: var(--clay); color: var(--paper); padding: 18px 22px; font-weight: 700; font-size: 17px; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; border-radius: 8px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 4px 12px rgba(115,185,107,0.28); }
.m-cta-secondary { background: transparent; color: var(--ink); padding: 16px 22px; font-weight: 700; font-size: 16px; letter-spacing: 0.04em; text-decoration: none; border: 2px solid var(--ink); border-radius: 8px; text-align: center; display: block; }

  /* ===== Brand anchor - full-bleed photo with light wash, pills sit on the sky (top-left), stats overlay; review sits BENEATH the image ===== */
  .m-hero-anchor { position: relative; margin-top: 18px; height: 360px;
    background-image: url("/source-hero.webp");
    background-size: cover;
    background-position: center 32%;
    overflow: hidden;
  }
  .m-hero-anchor:before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0.25) 0%,
      rgba(255,255,255,0.05) 40%,
      rgba(255,255,255,0.10) 100%
    );
    z-index: 1;
  }
  .m-hero-anchor-inner { position: relative; z-index: 2; padding: 16px 18px; display: flex; flex-direction: column; height: 100%; }
  .m-cred-chips-top { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
  .m-cred-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--paper-card); padding: 10px 13px; border-radius: 8px; font-weight: 700; font-size: 12.5px; letter-spacing: 0.02em; color: var(--ink); box-shadow: 0 4px 12px rgba(31,31,27,0.20); border: 1px solid var(--rule); white-space: nowrap; }
  .m-cred-chip .m-icon { width: 22px; height: 22px; border-radius: 5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; }
  .m-cred-chip .m-icon.green { background: var(--green-deep); color: var(--paper); }
  .m-cred-chip .m-icon.clay { background: var(--green-deep); color: var(--paper); }

  .m-hero-stats { margin-top: auto; align-self: flex-end; background: rgba(0,56,77,0.95); color: var(--paper); padding: 10px 14px; border-radius: 10px; display: flex; gap: 14px; box-shadow: 0 8px 18px rgba(0,56,77,0.28); }
  .m-hero-stat { text-align: center; }
  .m-hero-stat .m-num { font-family: "Josefin Sans", "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 400; font-size: 22px; line-height: 1; color: var(--green-real); }
  .m-hero-stat .m-num small { font-size: 10px; vertical-align: super; }
  .m-hero-stat .m-lbl { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; margin-top: 3px; }

  /* Review BELOW the image */
  .m-review-band { background: var(--paper-deep); padding: 16px 18px; }
  .m-review-card { background: var(--paper-card); padding: 14px 16px 14px 30px; border-radius: 10px; position: relative; box-shadow: 0 8px 18px rgba(31,31,27,0.14); border: 1px solid var(--rule); }
  .m-review-card:before { content: "“"; position: absolute; left: 6px; top: 2px; font-family: "Caveat", cursive; font-weight: 700; font-size: 50px; color: var(--clay); line-height: 1; }
  .m-review-stars { color: var(--gold); font-size: 13px; letter-spacing: 0.05em; margin-bottom: 4px; }
  .m-review-quote { font-size: 14.5px; line-height: 1.45; color: var(--ink); margin-bottom: 6px; font-style: italic; }
  .m-review-meta { font-size: 11px; letter-spacing: 0.06em; color: var(--ink-soft); }
  .m-review-meta .m-source-pill { background: var(--green-deep); color: var(--paper); padding: 2px 6px; border-radius: 2px; margin-left: 4px; font-weight: 700; letter-spacing: 0.10em; }

  /* Bullets below the review */
  .m-hero-bullets-wrap { padding: 20px 18px 28px; background: var(--paper); }
  .m-hero-bullets-title { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-darker); text-align: center; margin-bottom: 14px; }
  .m-hero-bullets { list-style: none; padding: 16px 18px; background: var(--paper-deep); border-radius: 10px; display: flex; flex-direction: column; gap: 10px; }
  .m-hero-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.4; color: var(--ink); font-weight: 500; }
  .m-hero-bullets li:before { content: ""; display: inline-block; width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 1 L4 8 L7 8 L6 15 L12 7 L9 7 Z' fill='%23A86B40'/></svg>") no-repeat center / contain; }

  

@media (max-width: 768px) {
  .s3-h2-underline, .s3 .s3-emphasis-underline, .s3-underline { display: none !important; }
  /* Hide any clay-coloured stroke SVG inside the s3 H2 */
  .s3-h2 svg { display: none !important; }
}

@media (max-width: 768px) {
  .s5-hammer, .s5-hammer-strip { text-align: left !important; }
  .s5-hammer-list, .s5-hammer-items { flex-direction: column !important; align-items: flex-start !important; gap: 6px !important; }
  .s5-hammer .sep, .s5-hammer-sep { display: none !important; }
}

  /* Single-column Services on mobile */
  .s6-grid, .s6-services-grid, .s6-grid-secondary, .s6-grid-bottom {
    grid-template-columns: 1fr !important;
  }
}

/* Areas section - featured Sandpoint card aligns top + bottom with 4-row supporting grid */
.s7-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; align-items: stretch; }
.s7-featured { display: flex; flex-direction: column; height: 100%; }
.s7-right { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: stretch; }
.s7-city-card { display: flex; flex-direction: column; justify-content: center; }
.s7-state-tag--mt { background: var(--clay) !important; color: var(--paper) !important; }
@media (max-width: 768px) {
  .s7-grid { grid-template-columns: 1fr; }
  .s7-right { grid-template-columns: 1fr 1fr; }
}

/* Mobile: 2-col × 3 rows */
@media (max-width: 768px) {
  .s6-grid, .s6-services-grid, .s6-row-top, .s6-row-bot {
    grid-template-columns: 1fr 1fr !important;
  }
  .s6-card-featured {
    grid-column: 1 / -1 !important;
  }
  
}

@media (max-width: 768px) {
  .s5-eyebrow { font-size: 11.5px !important; letter-spacing: 0.12em !important; white-space: nowrap; }
}

@media (max-width: 768px) {
  .s4-head { display: grid !important; grid-template-columns: 1fr !important; gap: 16px !important; }
  .s4-head-left { grid-row: 1; }
  .s4-badge { grid-row: 2 !important; justify-self: end !important; align-self: auto !important; }
}

/* Photo treatment - all 6 regular cards get a banner image at top */

.s6-card.residential .s6-card-head, .s6-card.commercial .s6-card-head, .s6-card.generators .s6-card-head,
.s6-card.smart-home .s6-card-head, .s6-card.outdoor .s6-card-head, .s6-card.panel-upgrades .s6-card-head {
  padding: 0 22px;
}
.s6-card.residential .s6-card-body-text, .s6-card.commercial .s6-card-body-text, .s6-card.generators .s6-card-body-text,
.s6-card.smart-home .s6-card-body-text, .s6-card.outdoor .s6-card-body-text, .s6-card.panel-upgrades .s6-card-body-text {
  padding: 0 22px;
}
.s6-card.residential .s6-card-link, .s6-card.commercial .s6-card-link, .s6-card.generators .s6-card-link,
.s6-card.smart-home .s6-card-link, .s6-card.outdoor .s6-card-link, .s6-card.panel-upgrades .s6-card-link {
  padding: 16px 22px 22px;
  margin-top: auto;
}

/* Mobile: 2-col × 3-row */
@media (max-width: 768px) {
  .s6-row-top, .s6-row-bot { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .s6-card { min-height: auto; }
  
  .s6-card.residential .s6-card-body-text, .s6-card.commercial .s6-card-body-text, .s6-card.generators .s6-card-body-text,
  .s6-card.smart-home .s6-card-body-text, .s6-card.outdoor .s6-card-body-text, .s6-card.panel-upgrades .s6-card-body-text {
    padding: 0 14px;
    font-size: 13px;
  }
  .s6-card.residential .s6-card-link, .s6-card.commercial .s6-card-link, .s6-card.generators .s6-card-link,
  .s6-card.smart-home .s6-card-link, .s6-card.outdoor .s6-card-link, .s6-card.panel-upgrades .s6-card-link {
    padding: 12px 14px 16px;
    font-size: 12px;
  }
}

/* ===== Services cards - clean rebuild (Phase 8.7) ===== */
.s6-row-top, .s6-row-bot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.s6-card {
  background: var(--paper-card);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 0;
}
.s6-card-photo-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.s6-card-inner {
  padding: 22px 22px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.s6-card .s6-card-head { padding: 0; display: flex; align-items: center; gap: 10px; }
.s6-card .s6-card-head h3 { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 19px; color: var(--ink); line-height: 1.25; }
.s6-card .s6-icon-wrap { width: 30px; height: 30px; background: var(--green-deep); color: var(--paper); border-radius: 6px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
.s6-card .s6-icon-wrap svg { width: 16px; height: 16px; stroke: currentColor; }
.s6-card .s6-card-body-text { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 400; font-size: 15px; line-height: 1.5; color: var(--ink-soft); padding: 0; margin: 0; }
.s6-card .s6-card-link { display: inline-flex; align-items: center; gap: 6px; font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--green-deep); text-decoration: none; padding: 14px 0 22px; margin-top: auto; }
.s6-card .s6-card-link:hover { color: var(--green-darker); }
.s6-card-inner { padding-left: 22px; padding-right: 22px; padding-bottom: 0; }
.s6-card .s6-card-link { padding-left: 22px; }

/* Mobile: 2-col × 3-row */
@media (max-width: 768px) {
  .s6-row-top, .s6-row-bot { grid-template-columns: 1fr 1fr; gap: 12px; }
  .s6-card { min-height: auto; }
  .s6-card-photo-img { height: 100px; }
  .s6-card-inner { padding: 14px 14px 0; gap: 6px; }
  .s6-card .s6-card-head h3 { font-size: 15px; }
  .s6-card .s6-card-body-text { font-size: 12.5px; }
  .s6-card .s6-card-link { font-size: 11.5px; padding: 10px 14px 16px; }
}

/* Footer link styling - plain text, no green, no underline */
.s10 .s10-list a, .s10-list a, footer .s10-list a {
  color: inherit !important;
  text-decoration: none !important;
}
.s10 .s10-list a:hover, .s10-list a:hover, footer .s10-list a:hover {
  color: var(--paper, #fff) !important;
  text-decoration: none !important;
  opacity: 1;
}

/* Lucide phone icon (replaces 📞 emoji throughout) */
.icon-phone { display: inline-block; width: 1em; height: 1em; vertical-align: -0.14em; flex-shrink: 0; }
a .icon-phone, button .icon-phone { margin-right: 0.5em; }

  .area-page-hero { background: var(--paper); padding: 64px max(56px, calc((100% - 1328px) / 2)) 56px; border-bottom: 1px solid var(--rule); text-align: center; }
  .area-page-hero .breadcrumb { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 18px; }
  .area-page-hero .breadcrumb a { color: var(--green-deep); text-decoration: none; }
  .area-page-hero h1 { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: #00384D; margin-bottom: 14px; }
  .area-page-hero .display { font-family: "Josefin Sans", "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 600; font-size: 64px; line-height: 1.05; color: var(--ink); max-width: 880px; margin: 0 auto 18px; }
  .area-page-hero .lede { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 400; font-size: 19px; line-height: 1.65; color: var(--ink); max-width: 760px; margin: 0 auto 28px; }
  .area-page-hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
  .area-page-hero .cta-primary { background: #73B96B; color: #fff; padding: 17px 30px; font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; border-radius: 8px; box-shadow: 0 4px 12px rgba(115,185,107,0.28); }
  .area-page-hero .cta-primary:hover { background: #5DA856; }
  .area-page-hero .cta-secondary { background: transparent; color: var(--ink); padding: 17px 26px; font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; border: 2px solid var(--ink); border-radius: 8px; }

  .area-section { padding: 64px max(56px, calc((100% - 1328px) / 2)); text-align: center; }
  .area-section .area-body { margin-left: auto; margin-right: auto; }
  .area-section .cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
  .area-section .cta-primary { background: #73B96B; color: #fff; padding: 17px 30px; font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; border-radius: 8px; box-shadow: 0 4px 12px rgba(115,185,107,0.28); }
  .area-section .cta-primary:hover { background: #5DA856; }
  .area-section--alt { background: #F4F9F1; }
  .area-eyebrow { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: #00384D; margin-bottom: 10px; }
  .area-h2 { font-family: "Josefin Sans", "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 600; font-size: 42px; line-height: 1.1; color: var(--ink); margin-bottom: 14px; }
  .area-body { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 400; font-size: 17px; line-height: 1.7; color: var(--ink); max-width: 760px; }
  .area-body ul { list-style: none; padding: 0; margin-top: 18px; }
  .area-body ul li { padding: 10px 0 10px 28px; position: relative; }
  .area-body ul li::before { content: ""; position: absolute; left: 0; top: 16px; width: 16px; height: 2px; background: #73B96B; }

  .services-list-band { background: #fff; padding: 56px max(56px, calc((100% - 1328px) / 2)); }
  .services-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1240px; margin: 0 auto; }
  .service-tile { background: #fff; border: 1px solid var(--rule); border-radius: 10px; padding: 24px 22px; text-decoration: none; color: var(--ink); display: flex; flex-direction: column; gap: 8px; transition: transform 0.15s, box-shadow 0.2s; }
  .service-tile:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(31,31,27,0.10); border-color: #73B96B; }
  .service-tile h3 { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 600; font-size: 21px; line-height: 1.2; color: var(--ink); }
  .service-tile p { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-size: 14px; line-height: 1.5; color: var(--ink-soft); margin: 0; }
  .service-tile .arrow { font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; color: #73B96B; margin-top: auto; }

  .other-areas { padding: 56px max(56px, calc((100% - 1328px) / 2)); background: #F4F9F1; }
  .area-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 980px; margin: 0 auto; }
  .area-chip { background: #fff; border: 1px solid var(--rule); border-radius: 999px; padding: 9px 16px; font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 600; font-size: 13.5px; color: var(--ink); text-decoration: none; transition: all 0.15s; }
  .area-chip:hover { border-color: #73B96B; color: #73B96B; }

  .area-final-cta { background: #00384D; color: #fff; padding: 64px 56px; text-align: center; }
  .area-final-cta .area-eyebrow { color: #D9EAD4; }
  .area-final-cta .area-h2 { color: #fff; max-width: 760px; margin: 0 auto 14px; }
  .area-final-cta p { color: rgba(255,255,255,0.92); font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-size: 17px; max-width: 640px; margin: 0 auto 26px; line-height: 1.6; }
  .area-final-cta .cta-row { justify-content: center; }
  .area-final-cta .cta-primary { background: #73B96B; color: #fff; padding: 17px 30px; font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; border-radius: 8px; }
  .area-final-cta .cta-secondary { background: transparent; color: #fff; padding: 17px 26px; font-family: "Josefin Sans", "Inter", system-ui, sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.04em; text-decoration: none; border: 2px solid #fff; border-radius: 8px; display: inline-block; }
  .area-final-cta .cta-row { display: inline-flex; gap: 14px; }

  @media (max-width: 768px) {
    .area-page-hero { padding: 32px 18px 40px; }
    .area-page-hero .display { font-size: 38px; }
    .area-page-hero .lede { font-size: 16px; }
    .area-section { padding: 40px 18px; }
    .area-h2 { font-size: 30px; }
    .area-body { font-size: 15.5px; }
    .services-list-band { padding: 36px 18px; }
    .services-list-grid { grid-template-columns: 1fr; gap: 12px; }
    .area-page-hero .cta-primary, .area-page-hero .cta-secondary { width: 100%; text-align: center; }
  }

