:root {
    /* ---------- Warm Cream (light) ---------- */
    --bg:             #F0EADD;   /* page body            */
    --bg-soft:        #E8E0CF;   /* alternating sections */
    --surface:        #FFFDF8;   /* cards                */
    --header-bg:      #FAF7F0;   /* light header + drawer*/
    --ink:            #241E16;
    --muted:          #5A5044;
    --line:           rgba(36,30,22,.13);
    --border:         rgba(36,30,22,.20);
    --accent:         #7E5220;   /* bronze: legible on light, incl. on --bg-soft */
    --accent-2:       #653F16;
    --accent-tint:    rgba(138,90,34,.12);
    --on-accent:      #FFFFFF;

    /* ---------- dark band: stats strip, CTA banner, footer ----------
       The bright gold below is ONLY legible on these dark surfaces.
       Never use it on a light background: it fails contrast badly. */
    --band:           #1C2434;
    --band-2:         #262F41;
    --band-line:      rgba(255,255,255,.13);
    --on-band:        #F5F2EC;
    --on-band-muted:  #A9AEBB;
    --on-band-accent: #E0B478;

    /* legacy aliases still referenced further down the file */
    --navy:           #1C2434;
    --navy-2:         #262F41;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  /* Dark theme: the old var(--navy) was near-black on a near-black page (1.04:1).
     Components that need their own link colour set it explicitly. */
  a { color: var(--accent); }
  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

  /* ---------- (1) Trust bar ---------- */
  .trustbar {
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
  }
  .trustbar .wrap {
    display: flex; flex-wrap: wrap; gap: 18px;
    align-items: center; justify-content: center;
  }
  .trustbar span { display: inline-flex; align-items: center; gap: 6px; opacity: .95; }
  .trustbar b { color: var(--accent); font-weight: 700; }

  /* ---------- Header / nav ---------- */
  header {
    border-bottom: 1px solid var(--line);
    background: #fff;
    position: sticky; top: 0; z-index: 50;
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
  }
  .brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
  .brand-mark {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--navy); color: var(--accent);
    display: grid; place-items: center; font-weight: 800; font-size: 18px;
  }
  .brand-logo {
    width: 44px; height: 44px; border-radius: 8px;
    display: block; object-fit: cover; flex-shrink: 0;
  }
  /* No nudge: "Idaho All Electric" has no descenders, so its ink runs cap-top
     to baseline and already centres on the logo. An offset here pushes it low. */
  .brand-name { font-weight: 800; font-size: 18px; letter-spacing: .2px; }
  .brand-sub { font-size: 12px; color: var(--muted); }
  /* `> ul` throughout: the submenus are nested <ul>s and must not inherit
     the top-level bar's layout or the mobile drawer's positioning. */
  nav > ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 24px; align-items: center; }
  nav a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px; }
  nav a:hover { color: var(--navy-2); }

  /* ---------- Nav dropdowns ---------- */
  .has-sub { position: relative; }
  .sub-toggle {
    background: none; border: 0; padding: 0; margin: 0; cursor: pointer;
    font: inherit; font-weight: 600; font-size: 15px; color: var(--ink);
    display: inline-flex; align-items: center; gap: 5px;
  }
  .sub-toggle::after {
    content: "\25BE"; font-size: 10px; opacity: .65; line-height: 1;
  }
  .sub-toggle:hover { color: var(--accent); }
  .submenu {
    list-style: none; margin: 0;
    display: none; position: absolute; top: 100%; left: 0;
    min-width: 200px; flex-direction: column; gap: 0;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 10px; padding: 7px 0;
    box-shadow: 0 14px 34px rgba(0,0,0,.45); z-index: 110;
  }
  .has-sub:hover > .submenu,
  .has-sub:focus-within > .submenu { display: flex; }
  .submenu a {
    display: block; padding: 9px 16px; font-size: 14px;
    font-weight: 600; white-space: nowrap; color: var(--ink);
  }
  .submenu a:hover { background: var(--bg-soft); color: var(--accent); }
  .nav-cta {
    background: var(--accent); color: var(--on-accent) !important;
    padding: 10px 16px; border-radius: 8px; font-weight: 800;
  }
  .nav-cta:hover { background: var(--accent-2); color: #fff !important; }
  .hamburger {
    display: none;
    background: transparent; border: 0; padding: 10px 6px;
    cursor: pointer; align-items: center; justify-content: center;
    flex-direction: column; gap: 5px;
  }
  .hamburger span {
    display: block; width: 26px; height: 2px;
    background: var(--ink); border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ---------- (2) Hero ---------- */
  .hero {
    position: relative;
    background:
      linear-gradient(135deg, rgba(13,20,36,.92), rgba(20,32,58,.88)),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="600"><defs><pattern id="g" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0 40 L40 0" stroke="%23ffffff" stroke-opacity=".05" stroke-width="1"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23g)"/></svg>');
    color: #fff;
    padding: 72px 0 88px;
  }
  .hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
  .eyebrow {
    display: inline-block; background: rgba(255,183,3,.15);
    color: var(--accent); padding: 6px 12px; border-radius: 999px;
    font-weight: 700; font-size: 13px; letter-spacing: .4px; text-transform: uppercase;
  }
  .tagline {
    margin: 18px 0 12px; font-size: 30px; font-weight: 800;
    color: var(--accent); letter-spacing: 2.5px;
    text-transform: uppercase;
    line-height: 1.3;
    overflow-wrap: break-word;
  }
  .tagline span { opacity: .55; margin: 0 6px; font-weight: 700; }
  /* When no eyebrow pill precedes it, the tagline leads the hero column. */
  .hero-grid .tagline:first-child { margin-top: 0; }
  @media (max-width: 720px) {
    .tagline { font-size: 18px; letter-spacing: 1px; }
    .tagline span { margin: 0 4px; }
  }
  @media (max-width: 420px) {
    .tagline { font-size: 16px; letter-spacing: .5px; }
    .btn { padding: 14px 18px; font-size: 15px; gap: 8px; }
    .btn-call .num { font-size: 17px; }
    h1 { font-size: 30px; }
  }
  h1 {
    font-size: 46px; line-height: 1.1; margin: 14px 0 16px;
    font-weight: 800; letter-spacing: -.5px;
  }
  .sub {
    font-size: 18px; color: #cfd6e4; margin: 0 0 28px; max-width: 560px;
  }
  .promise { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 0 0 28px; padding: 0; list-style: none; }
  .promise li { display: inline-flex; align-items: center; gap: 8px; color: #e6ecf7; font-weight: 600; }
  .check { color: var(--accent); }
  .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 22px; border-radius: 10px; font-weight: 800;
    text-decoration: none; font-size: 17px; border: 2px solid transparent;
    transition: transform .05s ease;
  }
  .btn:active { transform: translateY(1px); }
  .btn-call { background: var(--accent); color: var(--on-accent); }
  .btn-call:hover { background: var(--accent-2); color: #fff; }
  .btn-call .num { font-size: 20px; }
  .btn-quote { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
  .btn-quote:hover { background: rgba(255,255,255,.1); border-color: #fff; }

  .hero-card {
    background: #fff; color: var(--ink); border-radius: 14px;
    padding: 22px; box-shadow: 0 20px 50px rgba(0,0,0,.25);
  }
  .hero-card h3 { margin: 0 0 4px; font-size: 18px; }
  .hero-card p { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
  .hero-card label { display: block; font-size: 13px; font-weight: 700; margin: 10px 0 4px; }
  .hero-card input, .hero-card select, .hero-card textarea {
    width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px;
    font: inherit;
  }
  .hero-card button {
    margin-top: 14px; width: 100%; padding: 13px; border: 0; border-radius: 8px;
    background: var(--navy); color: #fff; font-weight: 800; font-size: 15px; cursor: pointer;
  }
  .hero-card button:hover { background: var(--navy-2); }
  .stars { color: var(--accent); letter-spacing: 2px; }

  /* ---------- (3) Services ---------- */
  section { padding: 64px 0; }
  .section-title { text-align: center; margin: 0 0 8px; font-size: 32px; }
  .section-sub { text-align: center; color: var(--muted); margin: 0 0 36px; }
  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .service {
    border: 1px solid var(--line); border-radius: 12px; padding: 22px;
    transition: border-color .15s, transform .15s;
    background: #fff; text-decoration: none; color: var(--ink); display: block;
  }
  .service:hover { border-color: var(--navy); transform: translateY(-2px); }
  .service .icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(11,37,69,.08); color: var(--navy);
    display: grid; place-items: center; margin-bottom: 14px;
  }
  .service h3 { margin: 0 0 6px; font-size: 17px; }
  .service p { margin: 0; color: var(--muted); font-size: 14px; }

  /* ---------- (5) Testimonials + How it works + Gallery ---------- */
  .alt { background: var(--bg-soft); }
  .how { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
  .step {
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    padding: 22px; text-align: center;
  }
  .step .num {
    width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: var(--accent);
    display: grid; place-items: center; font-weight: 800; margin: 0 auto 10px;
  }
  .step h4 { margin: 0 0 4px; font-size: 16px; }
  .step p { margin: 0; color: var(--muted); font-size: 14px; }

  .testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .quote {
    background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px;
  }
  .quote p { margin: 8px 0 16px; }
  .quote .who { display: flex; align-items: center; gap: 10px; }
  .avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--navy-2); color: #fff; display: grid; place-items: center; font-weight: 700;
  }
  .who b { display: block; font-size: 14px; }
  .who span { font-size: 13px; color: var(--muted); }

  /* ---------- Project rail ---------- */
  .rail { position: relative; }
  .rail-track {
    display: grid; grid-auto-flow: column;
    grid-auto-columns: calc((100% - 32px) / 2.5);
    gap: 16px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; scroll-behavior: smooth;
    padding: 4px 4px 18px;
    scrollbar-width: thin;
  }
  .rail-track::-webkit-scrollbar { height: 8px; }
  .rail-track::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
  .proj-card {
    scroll-snap-align: start;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px; overflow: hidden;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    transition: transform .15s ease, border-color .15s ease;
  }
  .proj-card:hover { transform: translateY(-3px); border-color: var(--accent); }
  .proj-photo {
    position: relative; aspect-ratio: 4/3;
    background: var(--surface); overflow: hidden;
  }
  .proj-photo img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .proj-body { padding: 16px 18px 20px; }
  .proj-body h3 { margin: 0 0 6px; font-size: 16px; color: var(--ink); font-weight: 800; }
  .proj-body p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
  .proj-more .proj-photo {
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--surface), var(--navy-2));
  }
  .proj-more .proj-photo .arrow {
    color: var(--accent); font-size: 56px; font-weight: 800; line-height: 1;
  }
  .rail-nav {
    position: absolute; top: 38%;
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid var(--line); background: var(--surface);
    color: var(--ink); cursor: pointer; z-index: 5;
    display: grid; place-items: center;
    font-size: 22px; line-height: 1;
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
    transition: background .15s, color .15s, border-color .15s;
  }
  .rail-nav:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
  .rail-prev { left: -10px; }
  .rail-next { right: -10px; }

  /* ---------- About ---------- */
  .about-grid {
    display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: center;
  }
  .team-divider {
    border: 0; border-top: 1px solid var(--line);
    margin: 50px 0;
  }
  .about-photo {
    width: 100%; aspect-ratio: 4/5; border-radius: 14px; overflow: hidden;
    box-shadow: 0 12px 30px rgba(11,37,69,.15);
    background: #d8dee8;
  }
  .about-photo.placeholder {
    display: grid; place-items: center; color: var(--muted); font-size: 13px;
    background: repeating-linear-gradient(135deg, #e6e9ef, #e6e9ef 12px, #eef0f5 12px, #eef0f5 24px);
    box-shadow: none; border: 2px dashed #c4cad6;
  }
  .about-photo.placeholder span { text-align: center; padding: 0 16px; }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .about-body h2 { margin: 0 0 6px; font-size: 30px; color: var(--navy); }
  .about-body .role { color: var(--muted); font-weight: 700; margin: 0 0 18px; letter-spacing: .3px; }
  .about-body p { margin: 0 0 14px; font-size: 16px; line-height: 1.65; }
  .creds {
    list-style: none; padding: 0; margin: 18px 0 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px;
  }
  .creds li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; font-weight: 600; color: var(--ink);
  }
  .creds .ico {
    flex: 0 0 28px; height: 28px; border-radius: 8px;
    background: rgba(11,37,69,.08); color: var(--navy);
    display: grid; place-items: center; font-size: 14px;
  }

  /* ---------- CTA banner ---------- */
  .cta-banner {
    background: var(--navy); color: #fff; text-align: center; padding: 50px 20px;
  }
  .cta-banner h2 { margin: 0 0 8px; font-size: 28px; }
  .cta-banner p { margin: 0 0 20px; color: #cfd6e4; }

  /* ---------- Footer (4) NAP ---------- */
  footer { background: #08172e; color: #cfd6e4; padding: 48px 0 24px; font-size: 14px; }
  footer a, footer p { overflow-wrap: anywhere; }
  .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; }
  footer h4 { color: #fff; margin: 0 0 10px; font-size: 14px; letter-spacing: .5px; text-transform: uppercase; }
  footer a { color: #cfd6e4; text-decoration: none; display: block; padding: 3px 0; }
  footer a:hover { color: var(--accent); }
  .foot-town { display: block; padding: 3px 0; color: #cfd6e4; }
  .legal { border-top: 1px solid #1b2e4d; margin-top: 30px; padding-top: 16px; text-align: center; font-size: 12px; color: #8aa0c4; }

  /* ---------- Sticky mobile call bar ---------- */
  .sticky-call { display: none; }

  /* ---------- Annotation pills ---------- */
  .anno {
    position: fixed; right: 16px; bottom: 16px;
    background: #ffeb99; color: #5a3d00; padding: 10px 14px;
    border-radius: 10px; font-size: 12px; font-weight: 700;
    box-shadow: 0 6px 20px rgba(0,0,0,.15); max-width: 260px;
    border: 1px solid #e0b800; z-index: 100;
  }

  /* ---------- Mobile ---------- */
  @media (max-width: 860px) {
    .hamburger { display: flex; }
    nav > ul {
      display: none;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; gap: 0;
      background: var(--bg); border-top: 1px solid var(--line);
      padding: 8px 20px 20px; margin: 0;
      box-shadow: 0 8px 20px rgba(0,0,0,.35);
      z-index: 100;
    }
    nav.open > ul { display: flex; }
    /* The drawer is absolutely positioned inside a sticky header, so anything
       past the viewport would be unreachable. Let it scroll instead. */
    nav > ul {
      max-height: calc(100vh - 92px);
      overflow-y: auto; overscroll-behavior: contain;
    }
    nav > ul > li { width: 100%; border-bottom: 1px solid var(--line); }
    nav > ul > li:last-child { border-bottom: 0; padding-top: 10px; }
    nav > ul > li > a { display: block; padding: 14px 4px; font-size: 16px; }
    nav > ul > li > a.nav-cta { padding: 14px 16px; text-align: center; }

    /* Submenus sit inline in the drawer, collapsed until tapped. */
    .sub-toggle {
      display: flex; width: 100%; padding: 14px 4px; font-size: 16px;
      text-align: left; justify-content: space-between; align-items: center;
    }
    .sub-toggle::after {
      content: "+"; font-size: 20px; font-weight: 400;
      color: var(--accent); opacity: 1; line-height: 1; padding-right: 4px;
    }
    .has-sub.open > .sub-toggle::after { content: "\2013"; }
    .submenu {
      display: none; position: static; min-width: 0;
      background: transparent; border: 0; box-shadow: none;
      border-radius: 0; padding: 0 0 8px 0;
    }
    /* Hover must not open it on touch - only the explicit .open class does. */
    .has-sub:hover > .submenu,
    .has-sub:focus-within > .submenu { display: none; }
    .has-sub.open > .submenu { display: flex; }
    .submenu a {
      padding: 11px 4px 11px 20px; font-size: 15px;
      color: var(--muted); white-space: normal;
    }
    .submenu a:hover { background: transparent; }
    .hero { padding: 48px 0 64px; }
    .hero-grid { grid-template-columns: 1fr; }
    h1 { font-size: 34px; }
    .grid-3, .how, .testimonials { grid-template-columns: 1fr; }
    .rail-track { grid-auto-columns: 85%; }
    .rail-nav { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .about-photo { max-width: 280px; margin: 0 auto; }
    .creds { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 48px 0; }
    .sticky-call {
      display: flex; position: fixed; bottom: 0; left: 0; right: 0;
      background: var(--accent); color: var(--navy);
      padding: 14px; align-items: center; justify-content: center;
      font-weight: 800; text-decoration: none; z-index: 90;
      box-shadow: 0 -4px 16px rgba(0,0,0,.15); gap: 10px;
      transform: translateY(100%);
      transition: transform .25s ease;
    }
    .sticky-call.visible { transform: translateY(0); }
  }
  /* ===== DARK THEME OVERRIDES (Midnight Gold family) ===== */
  body { background: var(--bg); color: var(--ink); }
  header { background: var(--bg); border-bottom-color: var(--line); }
  .brand-name, nav a { color: var(--ink); }
  .brand-sub { color: var(--muted); }
  .service { background: var(--surface); border-color: var(--line); color: var(--ink); }
  .service h3 { color: var(--ink); }
  .service p { color: var(--muted); }
  .service:hover { border-color: var(--accent); transform: translateY(-2px); }
  .service .icon { background: rgba(255,255,255,0.06); color: var(--accent); }
  .step { background: var(--surface); border-color: var(--line); }
  .step h4 { color: var(--ink); }
  .step p { color: var(--muted); }
  .step .num { background: var(--accent); color: var(--on-accent); }
  .hero-card { background: var(--surface); color: var(--ink); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
  .hero-card h3 { color: var(--ink); }
  .hero-card p, .hero-card label { color: var(--muted); }
  .hero-card input, .hero-card select, .hero-card textarea {
    background: var(--bg); color: var(--ink); border-color: var(--line);
  }
  .hero-card button { background: var(--accent); color: var(--on-accent); }
  .hero-card button:hover { background: var(--accent-2); }
  .stars { color: var(--accent); }
  footer { background: var(--header-bg); }
  .legal { border-top-color: var(--line); color: var(--muted); }
  .shot, .shot.s2, .shot.s3, .shot.s4, .shot.s5, .shot.s6 {
    background: linear-gradient(135deg, var(--surface), var(--header-bg));
  }
  .alt { background: var(--bg-soft); }
  .section-title { color: var(--ink); }
  .section-sub { color: var(--muted); }
  .about-body h2 { color: var(--ink); }
  .about-body p { color: var(--ink); }
  .about-body .role { color: var(--muted); }
  .about-photo { box-shadow: 0 12px 30px rgba(0,0,0,.5); background: var(--surface); }
  .about-photo.placeholder {
    background: repeating-linear-gradient(135deg, var(--surface), var(--surface) 12px, var(--bg-soft) 12px, var(--bg-soft) 24px);
    border-color: var(--line); color: var(--muted);
  }
  .creds li { color: var(--ink); }
  .creds .ico { background: var(--accent-tint); color: var(--accent); }
  .team-divider { border-top-color: var(--line); }
  .promise li, .sub { color: var(--ink); }
  .btn-quote { color: var(--ink); border-color: rgba(255,255,255,.4); }
  .btn-quote:hover { background: rgba(255,255,255,.08); }
  .eyebrow { background: var(--accent-tint); color: var(--accent); }
  .trustbar { background: var(--header-bg); }
  .cta-banner { background: var(--header-bg); }
  .cta-banner p { color: var(--muted); }


  /* ============================================================
     Mobile overflow + swipe fixes
     ============================================================ */
  html, body { overflow-x: clip; }

  .rail-track {
    scroll-snap-type: x proximity;        /* less sticky than mandatory */
    -webkit-overflow-scrolling: touch;     /* iOS momentum */
    overscroll-behavior-x: contain;        /* don't bounce the page */
    scroll-padding-inline: 4px;
  }

  @media (max-width: 720px) {
    .rail-track {
      grid-auto-columns: 88%;
      padding: 4px 14px 18px 4px;
    }
    .proj-body { padding: 14px 16px 18px; }
    .proj-body h3 { font-size: 15px; }
    .proj-body p { font-size: 13px; }

    .trustbar { font-size: 12px; padding: 6px 0; }
    .trustbar .wrap { gap: 6px 14px; }
    .trustbar span { white-space: nowrap; }
  }

  @media (max-width: 480px) {
    h1 { font-size: 28px; line-height: 1.15; }
    .tagline { font-size: 17px; letter-spacing: .3px; margin: 10px 0 6px; }
    .hero { padding: 36px 0 48px; }
    .sub { font-size: 16px; }

    .btn { width: 100%; justify-content: center; padding: 14px 16px; font-size: 15px; }
    .btn-call .num { font-size: 17px; }
    .cta-row { flex-direction: column; gap: 10px; }

    /* Drop the years badge on tiny screens so trust bar fits one line */
    .trustbar span:nth-child(2) { display: none; }
  }

  /* ============================================================
     Service-page styles
     ============================================================ */
  .page-hero {
    background:
      linear-gradient(135deg, rgba(13,20,36,.92), rgba(20,32,58,.88)),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="600"><defs><pattern id="g" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0 40 L40 0" stroke="%23ffffff" stroke-opacity=".05" stroke-width="1"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23g)"/></svg>');
    color: #fff;
    padding: 56px 0 64px;
  }
  .page-hero h1 {
    font-size: 38px; margin: 12px 0 12px;
    line-height: 1.12; letter-spacing: -.3px;
  }
  .page-hero .sub { color: #cfd6e4; max-width: 640px; margin: 0 0 24px; }
  .page-hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

  .svc-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
    margin-top: 8px;
  }
  .svc-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 26px;
  }
  .svc-card h3 {
    margin: 0 0 14px; font-size: 18px; color: var(--ink);
    padding-bottom: 12px; border-bottom: 1px solid var(--line);
  }
  .svc-card ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
  }
  .svc-card li {
    position: relative; padding-left: 22px;
    font-size: 14.5px; color: var(--muted); line-height: 1.5;
  }
  .svc-card li::before {
    content: "→"; position: absolute; left: 0; top: 0;
    color: var(--accent); font-weight: 700;
  }

  @media (max-width: 720px) {
    .page-hero { padding: 40px 0 48px; }
    .page-hero h1 { font-size: 28px; }
    .svc-grid { grid-template-columns: 1fr; gap: 14px; }
    .svc-card { padding: 20px 22px; }
  }

  /* ============================================================
     Service area / cities grid
     ============================================================ */
  .cities-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
    margin-top: 20px;
  }
  .city-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px 22px;
    text-decoration: none; color: inherit;
    transition: border-color .15s, transform .15s;
    display: block;
  }
  /* Scoped to anchors: city cards are plain divs while the city pages are shelved. */
  a.city-card:hover { border-color: var(--accent); transform: translateY(-2px); }
  .city-card h3 { margin: 0 0 6px; font-size: 18px; color: var(--ink); font-weight: 800; }
  .city-card p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.5; }
  .city-card .pin { color: var(--accent); font-weight: 700; font-size: 13px; }

  @media (max-width: 980px) {
    .cities-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 720px) {
    .cities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .city-card { padding: 16px 18px; }
    .city-card h3 { font-size: 16px; }
  }

  /* ============================================================
     Homepage service cards - expanded with service list
     ============================================================ */
  .service ul.service-list {
    list-style: none; padding: 0; margin: 14px 0 14px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .service .service-list li {
    position: relative; padding-left: 18px;
    font-size: 13.5px; color: var(--ink); line-height: 1.5;
  }
  .service .service-list li::before {
    content: "•"; position: absolute; left: 4px; top: -1px;
    color: var(--accent); font-weight: 700;
  }
  .service .see-all {
    display: inline-block; margin-top: 4px;
    color: var(--accent); font-weight: 700; font-size: 13.5px;
  }
  .service:hover .see-all { color: var(--accent-2); }

  /* ============================================================
     "No job too small" callout
     ============================================================ */
  .small-jobs-section { padding: 40px 0; }
  .small-jobs-callout {
    max-width: 820px; margin: 0 auto;
    background: linear-gradient(135deg, var(--surface), var(--bg-soft));
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    border-radius: 14px;
    padding: 28px 36px;
    text-align: center;
  }
  .small-jobs-callout h2 {
    margin: 0 0 10px; font-size: 28px;
    color: var(--accent); font-weight: 800;
  }
  .small-jobs-callout p {
    margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink);
  }
  @media (max-width: 720px) {
    .small-jobs-callout { padding: 22px 22px; }
    .small-jobs-callout h2 { font-size: 22px; }
    .small-jobs-callout p { font-size: 14px; }
  }

  /* ============================================================
     Projects page - per-project detail sections
     ============================================================ */
  .project-detail { padding: 56px 0; }
  .project-header { max-width: 800px; margin: 0 auto 28px; text-align: center; }
  .project-tag {
    display: inline-block; background: var(--accent-tint);
    color: var(--accent); padding: 4px 12px; border-radius: 999px;
    font-weight: 700; font-size: 12px; letter-spacing: .4px; text-transform: uppercase;
    margin-bottom: 14px;
  }
  .project-header h2 { margin: 0 0 6px; font-size: 30px; color: var(--ink); font-weight: 800; }
  .project-location { color: var(--muted); font-size: 14px; margin: 0 0 14px; font-weight: 700; }
  .project-desc { color: var(--ink); font-size: 16px; line-height: 1.65; margin: 0; }
  .project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
  }
  .project-gallery img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover;
    border-radius: 12px; display: block;
    border: 1px solid var(--line);
    transition: transform .15s ease;
  }
  .project-gallery img:hover { transform: scale(1.02); }

  .various-work {
    max-width: 900px; margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    border-radius: 14px;
    padding: 32px 36px;
  }
  .various-work h2 {
    margin: 0 0 8px; color: var(--accent);
    font-size: 24px; font-weight: 800;
  }
  .various-work p { margin: 0 0 18px; color: var(--ink); font-size: 16px; }
  .various-work ul {
    columns: 2; column-gap: 24px; padding: 0; margin: 0;
    list-style: none;
  }
  .various-work li {
    padding: 6px 0 6px 22px; position: relative;
    color: var(--ink); font-size: 14.5px; line-height: 1.5;
    break-inside: avoid;
  }
  .various-work li::before {
    content: "•"; position: absolute; left: 4px;
    color: var(--accent); font-weight: 800;
  }

  @media (max-width: 720px) {
    .project-header h2 { font-size: 24px; }
    .project-detail { padding: 40px 0; }
    .various-work { padding: 24px; }
    .various-work ul { columns: 1; }
  }

  /* ============================================================
     Stats band
     ============================================================ */
  .stats-band {
    background: var(--bg-soft);
    /* Gold hairlines rather than a third accent colour: the band reads as
       deliberate without breaking the two-colour palette. */
    border-top: 1px solid rgba(201,162,107,.38);
    border-bottom: 1px solid rgba(201,162,107,.38);
    padding: 14px 0;
  }
  /* The header already draws a grey rule; hide it where the gold one takes over,
     so the two don't stack into a muddy 2px line. */
  header:has(+ .stats-band) { border-bottom-color: transparent; }
  /* Always 3 across - never stacks, down to the narrowest phones. */
  .stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; text-align: center; align-items: start;
  }
  .stat { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .stat-num {
    font-size: 22px; font-weight: 800; color: var(--accent); line-height: 1.15;
  }
  .stat-label {
    font-size: 11px; color: #b9c3d6; font-weight: 600;
    letter-spacing: .4px; text-transform: uppercase; line-height: 1.3;
  }
  @media (max-width: 560px) {
    .stats-band { padding: 11px 0; }
    .stats-grid { gap: 8px; }
    .stat-num { font-size: 18px; }
    .stat-label { font-size: 9.5px; letter-spacing: .2px; }
  }
  @media (max-width: 360px) {
    .stat-label { font-size: 9px; letter-spacing: 0; }
  }

  /* ============================================================
     Forms - chips, request form, honeypot
     ============================================================ */
  .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

  .chip-set { border: 0; padding: 0; margin: 14px 0 4px; min-width: 0; }
  .chip-set legend {
    padding: 0; font-size: 13px; font-weight: 700; color: var(--muted);
    margin-bottom: 8px;
  }
  .chip-set legend .hint { font-weight: 500; }
  .chips { display: flex; flex-wrap: wrap; gap: 8px; }
  /* `display:flex` above would otherwise beat the [hidden] attribute's display:none. */
  .chips[hidden] { display: none; }
  .chip { display: inline-block; }
  .chip input {
    position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0;
  }
  .chip span {
    display: inline-block; padding: 9px 15px; border-radius: 999px;
    border: 1px solid var(--line); background: transparent;
    color: var(--ink); font-size: 14px; font-weight: 600;
    cursor: pointer; user-select: none;
    transition: background .15s, border-color .15s, color .15s;
  }
  .chip span:hover { border-color: var(--accent); }
  .chip input:checked + span {
    background: var(--accent); border-color: var(--accent); color: var(--on-accent);
  }
  .chip input:focus-visible + span {
    outline: 2px solid var(--accent); outline-offset: 2px;
  }

  .req { color: var(--accent); font-weight: 700; }
  .form-note { margin: 0 0 18px; font-size: 14px; color: var(--muted); }
  .field-error { margin: 8px 0 0; font-size: 13px; font-weight: 600; color: #ff9d9d; }

  .request-form {
    max-width: 720px; margin: 0 auto;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 14px; padding: 30px 34px;
    box-shadow: 0 20px 50px rgba(0,0,0,.28);
  }
  .request-form .field { margin: 18px 0 0; min-width: 0; }
  /* :not(.chip) keeps these off the pill labels/inputs, which style themselves. */
  .request-form label:not(.chip) {
    display: block; font-size: 14px; font-weight: 700;
    color: var(--ink); margin: 0 0 6px;
  }
  .request-form input:not([type="checkbox"]):not([type="radio"]),
  .request-form select,
  .request-form textarea {
    width: 100%; padding: 12px 14px; font: inherit;
    background: var(--bg); color: var(--ink);
    border: 1px solid var(--line); border-radius: 8px;
  }
  .request-form textarea { resize: vertical; min-height: 110px; }
  .request-form input::placeholder,
  .request-form textarea::placeholder { color: var(--muted); }
  .request-form input:focus,
  .request-form select:focus,
  .request-form textarea:focus {
    outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent);
  }
  .request-form input:not([type="checkbox"]):not([type="radio"]):invalid:not(:placeholder-shown) {
    border-color: #c96b6b;
  }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

  .form-foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; margin-top: 26px; flex-wrap: wrap;
  }
  .reassure { margin: 0; font-size: 14px; color: var(--muted); flex: 1 1 260px; }
  .reassure b { color: var(--ink); }
  .request-form button {
    padding: 14px 26px; border: 0; border-radius: 999px;
    background: var(--accent); color: var(--on-accent);
    font-weight: 800; font-size: 15px; cursor: pointer;
    transition: background .15s;
  }
  .request-form button:hover { background: var(--accent-2); color: #fff; }

  @media (max-width: 720px) {
    .request-form { padding: 24px 20px; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .form-foot { flex-direction: column; align-items: stretch; }
    /* The 260px basis is a WIDTH in the desktop row layout. Once the container
       becomes a column it turns into a HEIGHT and pads out 260px of dead space. */
    .reassure { flex: 0 0 auto; }
    .request-form button { width: 100%; }
  }

  /* ============================================================
     FAQ page - native <details>, no JS
     ============================================================ */
  .faq-list { max-width: 800px; margin: 0 auto; }
  .faq-item {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 12px; margin-bottom: 12px; overflow: hidden;
  }
  .faq-item summary {
    list-style: none; cursor: pointer;
    padding: 18px 52px 18px 22px; position: relative;
    font-size: 17px; font-weight: 700; color: var(--ink);
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: "+"; position: absolute; right: 22px; top: 50%;
    transform: translateY(-50%);
    font-size: 22px; font-weight: 400; color: var(--accent); line-height: 1;
  }
  .faq-item[open] summary::after { content: "\2013"; }
  .faq-item summary:hover { color: var(--accent); }
  .faq-item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
  .faq-body { padding: 0 22px 20px; }
  .faq-body p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--muted); }
  @media (max-width: 560px) {
    .faq-item summary { font-size: 16px; padding: 16px 46px 16px 18px; }
    .faq-body { padding: 0 18px 18px; }
    .faq-body p { font-size: 15px; }
  }

  /* ============================================================
     Compact service-area line (homepage)
     ============================================================ */
  .area-line { padding: 34px 0; }
  .area-line p {
    margin: 0; text-align: center; font-size: 17px;
    color: var(--muted); line-height: 1.7;
  }
  .area-line b { color: var(--ink); font-weight: 700; }
  @media (max-width: 560px) {
    .area-line { padding: 26px 0; }
    .area-line p { font-size: 15px; }
  }

  /* ============================================================
     Town pages - neighborhoods + featured project
     ============================================================ */
  .hood-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 14px; max-width: 820px; margin: 0 auto;
  }
  @media (max-width: 560px) {
    .hood-grid { grid-template-columns: 1fr; gap: 10px; }
  }
  .hood {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 12px; padding: 18px 20px; text-align: center;
    font-weight: 700; font-size: 17px; color: var(--ink);
  }
  .hood-all {
    text-align: center; color: var(--muted);
    margin: 20px 0 0; font-size: 15px;
  }

  .feature-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 34px;
    align-items: center; max-width: 980px; margin: 0 auto;
  }
  .feature-photo {
    border-radius: 14px; overflow: hidden; aspect-ratio: 4/3;
    box-shadow: 0 18px 44px rgba(0,0,0,.3); background: var(--surface);
  }
  .feature-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .feature-photo.placeholder {
    display: grid; place-items: center; text-align: center; padding: 0 20px;
    color: var(--muted); font-size: 14px; font-weight: 600;
    background: repeating-linear-gradient(135deg,
      var(--surface), var(--surface) 12px, var(--bg-soft) 12px, var(--bg-soft) 24px);
    border: 2px dashed var(--line); box-shadow: none;
  }
  .feature-body h3 { margin: 0 0 6px; font-size: 26px; color: var(--ink); }
  .feature-loc {
    margin: 0 0 14px; color: var(--accent);
    font-weight: 700; font-size: 14px;
  }
  .feature-body p { margin: 0 0 16px; font-size: 16px; line-height: 1.65; color: var(--ink); }
  .feature-body .see-all { color: var(--accent); font-weight: 700; text-decoration: none; }
  .feature-body .see-all:hover { text-decoration: underline; }

  @media (max-width: 820px) {
    .feature-grid { grid-template-columns: 1fr; gap: 22px; }
    .feature-body h3 { font-size: 22px; }
  }

  /* ============================================================
     Thank-you page
     ============================================================ */
  .thanks-card {
    max-width: 620px; margin: 40px auto; text-align: center;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 14px; padding: 44px 34px;
    box-shadow: 0 20px 50px rgba(0,0,0,.28);
  }
  .thanks-icon {
    width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
    background: var(--accent-tint); color: var(--accent);
    display: grid; place-items: center; font-size: 30px;
  }
  .thanks-card h1 { margin: 0 0 12px; font-size: 30px; color: var(--ink); }
  .thanks-card p { margin: 0 0 10px; color: var(--ink); font-size: 17px; }
  .thanks-card .thanks-sub { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
  /* ============================================================
     Footer hours footnote
     ============================================================ */
  .hours-note {
    margin: 8px 0 0; font-size: 12px; line-height: 1.5; color: #8aa0c4;
  }
  .hours-note a { display: inline; padding: 0; text-decoration: underline; color: #8aa0c4; }
  .hours-note a:hover { color: var(--accent); }

  /* Wider cards for the all-other-areas list (town names, not neighbourhoods) */
  .hood-grid-wide { grid-template-columns: repeat(4, 1fr); max-width: 980px; }
  @media (max-width: 860px) { .hood-grid-wide { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 340px) { .hood-grid-wide { grid-template-columns: 1fr; } }

  /* FAQ group headings */
  .faq-group {
    max-width: 800px; margin: 38px auto 14px;
    font-size: 13px; font-weight: 700; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--accent);
  }
  .faq-list > .faq-group:first-child { margin-top: 0; }

  /* ============================================================
     Browser autofill - Chrome paints its own near-white background
     over filled inputs, which breaks the dark form styling.
     ============================================================ */
  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  input:-webkit-autofill:active,
  select:-webkit-autofill,
  textarea:-webkit-autofill {
    -webkit-text-fill-color: var(--ink);
    -webkit-box-shadow: 0 0 0 1000px var(--bg) inset;
            box-shadow: 0 0 0 1000px var(--bg) inset;
    caret-color: var(--ink);
    border: 1px solid var(--line);
    transition: background-color 600000s 0s, color 600000s 0s;
  }
  input:-webkit-autofill:focus {
    border-color: var(--accent);
  }

  /* Tighter form-note inside the compact hero card */
  .hero-card .form-note { margin: 0 0 4px; font-size: 13px; }

  /* ============================================================
     Header brand sizing (+40%)
     ============================================================ */
  header .brand-logo { width: 62px; height: 62px; border-radius: 11px; }
  /* Flex centres the LINE BOX; this font.s cap-height sits ~1px below that
     centre at 25px, so nudge the ink back up to match the logo. */
  header .brand-name { font-size: 25px; position: relative; top: -1px; }
  @media (max-width: 560px) {
    header .brand-logo { width: 52px; height: 52px; border-radius: 10px; }
    header .brand-name { font-size: 21px; }
  }

  /* ============================================================
     Mobile touch targets - 44px is the accessible minimum
     ============================================================ */
  .hamburger { min-width: 44px; min-height: 44px; }
  .hours-note { font-size: 13px; }
  @media (max-width: 860px) {
    .chip span { padding: 11px 16px; }
  }

  /* Bulleted list inside an FAQ answer */
  .faq-list-plain { margin: 0 0 14px; padding-left: 20px; }
  .faq-list-plain li { font-size: 16px; line-height: 1.7; color: var(--muted); margin-bottom: 8px; }
  .faq-list-plain b { color: var(--ink); }
  @media (max-width: 560px) { .faq-list-plain li { font-size: 15px; } }

  /* ============================================================
     WARM CREAM THEME CORRECTIONS
     Appended last so these win on source order. Everything above
     that already used tokens flipped automatically with :root.
     This block only handles values that were hardcoded for dark.
     ============================================================ */

  /* ---- header + drawer ---- */
  header { background: var(--header-bg); border-bottom-color: var(--line); }
  nav a:hover { color: var(--accent); }
  .submenu { border-color: var(--border); box-shadow: 0 14px 30px rgba(36,30,22,.14); }

  /* ---- hero: was a dark gradient with white hatching ---- */
  .hero, .page-hero {
    background:
      linear-gradient(135deg, rgba(250,247,240,.92), rgba(232,224,207,.92)),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="600"><defs><pattern id="g" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0 40 L40 0" stroke="%23241E16" stroke-opacity=".055" stroke-width="1"/></pattern></defs><rect width="100%25" height="100%25" fill="url(%23g)"/></svg>');
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .sub, .page-hero .sub { color: var(--muted); }
  .promise li { color: var(--ink); }
  .eyebrow { background: var(--accent-tint); color: var(--accent); }
  .btn-quote { color: var(--ink); border-color: var(--border); background: transparent; }
  .btn-quote:hover { background: rgba(36,30,22,.05); border-color: var(--accent); color: var(--ink); }

  /* ---- quote card ---- */
  .hero-card {
    background: var(--surface); color: var(--ink);
    border: 1px solid var(--border);
    box-shadow: 0 14px 34px rgba(36,30,22,.10);
  }
  .hero-card input, .hero-card select, .hero-card textarea {
    background: #FFFFFF; color: var(--ink); border-color: var(--border);
  }

  /* ---- dark band: stats strip ---- */
  .stats-band {
    background: var(--band);
    border-top: 1px solid var(--band-line);
    border-bottom: 1px solid rgba(224,180,120,.40);
  }
  .stat-num { color: var(--on-band-accent); }
  .stat-label { color: var(--on-band-muted); }

  /* ---- cards and surfaces ---- */
  .service, .step, .city-card, .hood, .faq-item,
  .svc-card, .proj-card, .rail-nav, .request-form, .thanks-card {
    border-color: var(--border);
  }
  .service .icon { background: var(--accent-tint); color: var(--accent); }
  .request-form, .thanks-card { box-shadow: 0 14px 34px rgba(36,30,22,.09); }
  .about-photo { box-shadow: 0 12px 28px rgba(36,30,22,.16); background: var(--bg-soft); }
  .feature-photo { box-shadow: 0 14px 30px rgba(36,30,22,.14); }
  .feature-photo.placeholder, .about-photo.placeholder { border-color: var(--border); }
  .proj-photo { background: var(--bg-soft); }

  /* ---- forms ---- */
  .request-form input:not([type="checkbox"]):not([type="radio"]),
  .request-form select, .request-form textarea {
    background: #FFFFFF; border-color: var(--border);
  }
  .chip span { border-color: var(--border); }
  .field-error { color: #9B2C2C; }
  .request-form input:not([type="checkbox"]):not([type="radio"]):invalid:not(:placeholder-shown) {
    border-color: #B4544F;
  }
  input:-webkit-autofill, input:-webkit-autofill:hover,
  input:-webkit-autofill:focus, select:-webkit-autofill, textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #FFFFFF inset;
            box-shadow: 0 0 0 1000px #FFFFFF inset;
    -webkit-text-fill-color: var(--ink);
    border: 1px solid var(--border);
  }

  /* ---- dark band: CTA banner ---- */
  .cta-banner { background: var(--band); color: var(--on-band); }
  .cta-banner h2 { color: var(--on-band); }
  .cta-banner p { color: var(--on-band-muted); }

  /* ---- dark band: footer ---- */
  footer { background: var(--band); color: var(--on-band-muted); }
  footer h4 { color: var(--on-band); }
  footer a, .foot-town { color: var(--on-band-muted); }
  footer a:hover { color: var(--on-band-accent); }
  footer .brand-sub { color: var(--on-band-muted); }
  .legal { border-top-color: var(--band-line); color: var(--on-band-muted); }
  .hours-note, .hours-note a { color: var(--on-band-muted); }
  .hours-note a:hover { color: var(--on-band-accent); }

  /* ---- mobile drawer sits over light content ---- */
  @media (max-width: 860px) {
    nav > ul {
      background: var(--header-bg);
      border-top-color: var(--line);
      box-shadow: 0 10px 24px rgba(36,30,22,.16);
    }
    nav > ul > li { border-bottom-color: var(--line); }
    .submenu a { color: var(--muted); }
  }

  /* ---- thank-you page: "what happens next" ---- */
  .next-steps {
    text-align: left; background: var(--bg-soft);
    border: 1px solid var(--border); border-radius: 12px;
    padding: 20px 22px; margin: 22px 0 24px;
  }
  .next-steps h2 {
    margin: 0 0 10px; font-size: 13px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase; color: var(--accent);
  }
  .next-steps ol { margin: 0; padding-left: 20px; }
  .next-steps li { font-size: 15px; line-height: 1.65; color: var(--muted); margin-bottom: 8px; }
  .next-steps li:last-child { margin-bottom: 0; }
  @media (max-width: 560px) {
    .next-steps { padding: 16px 18px; }
    .next-steps li { font-size: 14px; }
  }

  /* ---------- photo strip under a featured project ---------- */
  .feature-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 20px;
  }
  .feature-gallery figure { margin: 0; }
  .feature-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 18px rgba(36,30,22,.10);
  }
  .feature-gallery figcaption {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--muted);
  }
  @media (max-width: 860px) {
    .feature-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .feature-gallery figcaption { font-size: 13px; }
  }

  /* ---------- work-type tag on a featured project ---------- */
  .feature-tag {
    display: inline-block;
    margin: 0 0 10px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: var(--band);
    border: 1px solid var(--band);
    border-radius: 999px;
  }

  /* ---------- work-type tag on a project card ---------- */
  .proj-tag {
    display: inline-block;
    margin: 0 0 7px;
    padding: 3px 9px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: var(--band);
    border: 1px solid var(--band);
    border-radius: 999px;
  }

  /* gallery column-count modifiers, and a full-width panorama tile */
  .feature-gallery.g3 { grid-template-columns: repeat(3, 1fr); }
  .feature-gallery.g2 { grid-template-columns: repeat(2, 1fr); }
  .feature-gallery figure.wide { grid-column: 1 / -1; }
  /* real ratio of the panorama, so lazy loading reserves the right height */
  .feature-gallery figure.wide img { aspect-ratio: 1400 / 543; }
  @media (max-width: 860px) {
    .feature-gallery.g3, .feature-gallery.g2 { grid-template-columns: repeat(2, 1fr); }
  }

  /* "see more photos" cue on a clickable project card */
  .proj-body .proj-see {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
  }
  a.proj-card:hover .proj-see { color: var(--accent-2); }
