/* ==========================================================================
   [BRAND] Remodeling — global stylesheet
   One file, driven by CSS custom properties. Change a color or font here and
   it updates everywhere. Mobile-first; breakpoints at the bottom.
   Aesthetic: "The Job Ticket" — warm, residential, real-photo-led. Big
   Shoulders (all-caps) only for the hero H1 + major section headers. Hanken
   Grotesk (sentence case) for everything readable. Mono + stamp + ruler-ticks
   are supporting accents that frame the photography.
   ========================================================================== */

/* ---- 1. Design tokens -------------------------------------------------- */
:root {
  /* Palette */
  --cypress:        #1B3A30;   /* dominant brand green */
  --cypress-deep:   #13261F;   /* footer / deepest */
  --cypress-soft:   #27483D;   /* hover on dark */
  --plaster:        #E9E5DA;   /* page background (warm limewash) */
  --card:           #FAF7F0;   /* warm near-white card */
  --card-2:         #F1EDE2;   /* secondary surface */
  --graphite:       #15201C;   /* body text */
  --graphite-soft:  #3A4742;   /* muted body copy */
  --concrete:       #6B6F6A;   /* captions, mono labels */
  --marigold:       #E7A325;   /* the one sharp accent + CTA + stamp */
  --marigold-deep:  #CC8C16;   /* CTA hover */
  --heart-pine:     #A65E2E;   /* tertiary warmth: links, ticks, slider grip */
  --heart-pine-deep:#8A4D26;

  --line:           rgba(21,32,28,0.12);
  --line-strong:    rgba(21,32,28,0.22);
  --line-light:     rgba(244,240,230,0.16);

  /* Type */
  --font-display: 'Big Shoulders Display','Oswald','Arial Narrow',sans-serif;
  --font-stamp:   'Big Shoulders Stencil Display','Big Shoulders Display','Oswald',sans-serif;
  --font-body:    'Hanken Grotesk',ui-sans-serif,system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
  --font-mono:    'Spline Sans Mono',ui-monospace,'SFMono-Regular',Menlo,monospace;

  --fs-hero: clamp(2.5rem, 7.2vw, 5rem);
  --fs-h1:   clamp(2.1rem, 5vw, 3.4rem);
  --fs-h2:   clamp(1.7rem, 4vw, 2.55rem);
  --fs-h3:   clamp(1.18rem, 2.2vw, 1.4rem);
  --fs-lead: clamp(1.08rem, 1.6vw, 1.28rem);
  --fs-body: 1.0625rem;
  --fs-sm:   0.9rem;
  --fs-spec: 0.78rem;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(3rem, 7.5vw, 6rem);

  /* Radii + shadows (soft, warm) */
  --r-sm: 4px;
  --r-md: 9px;
  --r-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(21,32,28,.05), 0 2px 8px rgba(21,32,28,.05);
  --shadow-md: 0 4px 10px rgba(21,32,28,.06), 0 12px 28px rgba(21,32,28,.08);
  --shadow-lg: 0 10px 24px rgba(21,32,28,.10), 0 30px 60px rgba(21,32,28,.12);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- 2. Reset + base --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--graphite);
  background: var(--plaster);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul[role="list"], ul.bare { list-style: none; padding: 0; }
::selection { background: var(--marigold); color: var(--graphite); }

:focus-visible {
  outline: 3px solid var(--graphite);
  outline-offset: 3px;
  border-radius: 3px;
}
.section--dark :focus-visible,
.site-header :focus-visible,
.site-footer :focus-visible,
.mobile-cta :focus-visible { outline-color: var(--marigold); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---- 3. Typography ----------------------------------------------------- */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  color: var(--cypress);
}
h3, h4, h5 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.25;
  color: var(--graphite);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { max-width: 68ch; }
strong { font-weight: 700; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--plaster); }

.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--graphite-soft); }
.section--dark .lead { color: rgba(244,240,230,.86); }

/* mono "measured" voice — a supporting accent, never the star */
.kicker {
  font-family: var(--font-mono);
  font-size: var(--fs-spec);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--heart-pine);
}
.section--dark .kicker { color: var(--marigold); }

/* ruler-tick underline — the quiet "measured craft" signature detail */
.tickline {
  width: 74px; height: 9px; margin-top: .2rem;
  background-image: repeating-linear-gradient(90deg, var(--heart-pine) 0 2px, transparent 2px 8px);
}
.section--dark .tickline { background-image: repeating-linear-gradient(90deg, var(--marigold) 0 2px, transparent 2px 8px); }

/* ---- 4. Layout helpers ------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); scroll-margin-top: 80px; }
.section--dark { background: var(--cypress); color: var(--plaster); }
.section--tint { background: var(--card-2); }
.sec-head { display: flex; flex-direction: column; gap: .55rem; margin-bottom: clamp(1.6rem, 3vw, 2.6rem); max-width: 42ch; }
.sec-head .lead { margin-top: .3rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: .5rem; top: -3rem; z-index: 200;
  background: var(--marigold); color: var(--graphite); font-weight: 600;
  padding: .6rem 1rem; border-radius: var(--r-md); transition: top .2s var(--ease);
}
.skip-link:focus { top: .5rem; }
.icon { width: 1em; height: 1em; fill: currentColor; flex: none; }

/* ---- 5. Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: .95rem 1.4rem; border-radius: var(--r-md); border: 2px solid transparent;
  cursor: pointer; transition: transform .14s var(--ease), background .14s var(--ease), color .14s var(--ease), box-shadow .14s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--marigold); color: var(--graphite); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--marigold-deep); }
.btn--outline { background: transparent; color: var(--cypress); border-color: var(--cypress); }
.btn--outline:hover { background: var(--cypress); color: var(--plaster); }
.section--dark .btn--outline, .cta-band .btn--outline, .mobile-cta .btn--outline { color: var(--plaster); border-color: rgba(244,240,230,.55); }
.section--dark .btn--outline:hover, .cta-band .btn--outline:hover, .mobile-cta .btn--outline:hover { background: var(--plaster); color: var(--cypress); border-color: var(--plaster); }
.btn--lg { font-size: 1.05rem; padding: 1.05rem 1.7rem; }
.btn--sm { font-size: .92rem; padding: .6rem .95rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---- 6. Header + nav --------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 90; background: var(--cypress); color: var(--plaster); box-shadow: 0 1px 0 var(--line-light); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 1rem; }
.brand { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: 1.35rem; color: var(--plaster); line-height: 1; display: inline-flex; align-items: baseline; gap: .4rem; }
.brand span { font-family: var(--font-mono); font-weight: 500; font-size: .62rem; letter-spacing: .22em; color: var(--marigold); text-transform: uppercase; }

.site-nav { display: none; }
.site-nav ul { list-style: none; padding: 0; display: flex; gap: .2rem; }
.site-nav a:not(.btn) { display: block; padding: .55rem .7rem; font-weight: 500; font-size: .95rem; color: var(--plaster); border-radius: var(--r-sm); position: relative; }
.site-nav a:not(.btn)::after { content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .32rem; height: 2px; background: var(--marigold); transform: scaleX(0); transform-origin: left; transition: transform .18s var(--ease); }
.site-nav a:not(.btn):hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: .5rem; }
.header__call { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .95rem; color: var(--plaster); padding: .5rem .55rem; }
.header__call .icon { width: 1.05rem; height: 1.05rem; color: var(--marigold); }
.header__call span { display: none; }

.nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; background: transparent; border: 1px solid var(--line-light); border-radius: var(--r-sm); cursor: pointer; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--plaster); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile dropdown panel */
.site-nav.is-open {
  display: flex; flex-direction: column; gap: .2rem;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--cypress); padding: .8rem var(--gutter) 1.3rem;
  border-top: 1px solid var(--line-light); box-shadow: var(--shadow-md);
}
.site-nav.is-open ul { flex-direction: column; gap: .1rem; }
.site-nav.is-open a:not(.btn) { padding: .8rem .3rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-light); }
.site-nav.is-open a:not(.btn)::after { display: none; }
.site-nav.is-open .btn { margin-top: .8rem; }

/* ---- 7. Hero ----------------------------------------------------------- */
.hero { background: var(--plaster); position: relative; }
.hero::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 220px; background: linear-gradient(180deg, rgba(255,255,255,.45), transparent); pointer-events: none; }
.hero__inner { position: relative; display: grid; gap: clamp(2rem, 5vw, 3rem); padding-block: clamp(2.2rem, 6vw, 4.5rem); }
.hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.hero h1 { font-size: var(--fs-hero); max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--heart-pine); }
.hero__lead { max-width: 52ch; }
.hero .btn-row { margin-top: .3rem; }
.trust-line { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem .9rem; margin-top: 1.1rem; font-size: .9rem; color: var(--concrete); }
.trust-line .stars { display: inline-flex; gap: 1px; color: var(--marigold); }
.trust-line .stars .icon { width: 1rem; height: 1rem; }
.trust-line .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }
.trust-line b { color: var(--graphite); font-weight: 700; }

/* ---- 8. Before / after slider (the hero photo treatment) -------------- */
.ba { position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--card-2); touch-action: pan-y; isolation: isolate; }
.ba__layer { position: absolute; inset: 0; }
.ba__layer--after { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; background: var(--plaster); transform: translateX(-1.5px); z-index: 4; box-shadow: 0 0 0 1px rgba(21,32,28,.18); pointer-events: none; }
.ba__grip { position: absolute; top: 50%; left: var(--pos, 50%); width: 46px; height: 46px; border-radius: 50%; background: var(--heart-pine); color: var(--plaster); transform: translate(-50%, -50%); display: grid; place-items: center; z-index: 5; box-shadow: var(--shadow-md), 0 0 0 3px var(--plaster); pointer-events: none; }
.ba__grip .icon { width: 1.4rem; height: 1.4rem; }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 6; }
.ba__tag { position: absolute; bottom: 12px; z-index: 4; font-family: var(--font-mono); font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--plaster); background: rgba(21,32,28,.62); padding: .28rem .55rem; border-radius: 100px; backdrop-filter: blur(2px); }
.ba__tag--before { right: 12px; }
.ba__tag--after { left: 12px; }

/* ---- 9. Permit stamp — TRUTHFUL: only render where a permit was pulled - */
.stamp {
  display: inline-flex; flex-direction: column; align-items: center; gap: 1px;
  font-family: var(--font-stamp); text-transform: uppercase; line-height: 1;
  color: var(--marigold); border: 2.5px solid var(--marigold); border-radius: 7px;
  padding: .4rem .6rem; background: rgba(19,38,31,.58); backdrop-filter: blur(1px);
  transform: rotate(-7deg); letter-spacing: .03em;
}
.stamp__lead { font-family: var(--font-mono); font-weight: 500; font-size: .52rem; letter-spacing: .16em; opacity: .92; }
.stamp__big { font-weight: 700; font-size: 1.02rem; letter-spacing: .04em; }
.stamp__no { font-family: var(--font-mono); font-weight: 500; font-size: .5rem; letter-spacing: .12em; opacity: .85; }
.ba .stamp, .ticket__media .stamp { position: absolute; right: 14px; bottom: 14px; z-index: 4; }

/* ---- 10. Spec line (mono) --------------------------------------------- */
.spec { font-family: var(--font-mono); font-size: var(--fs-spec); letter-spacing: .03em; text-transform: uppercase; color: var(--concrete); display: flex; flex-wrap: wrap; gap: .3rem .55rem; align-items: center; }
.spec .sep { color: var(--heart-pine); }
.hero__media .spec { margin-top: .75rem; }

/* ---- 11. Placeholder image slots (clearly marked) --------------------- */
.ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem; background-image: repeating-linear-gradient(45deg, #ECE7DB 0 13px, #E3DCCD 13px 26px); }
.ph--static { position: relative; aspect-ratio: 3 / 2; border-radius: var(--r-md); overflow: hidden; }
.ph__label { font-family: var(--font-mono); font-size: .7rem; line-height: 1.35; letter-spacing: .05em; text-transform: uppercase; color: #5A5346; background: rgba(250,247,240,.85); border: 1px solid rgba(90,83,70,.25); border-radius: var(--r-sm); padding: .45rem .6rem; max-width: 92%; }

/* ---- 12. Project tickets (gallery) ------------------------------------ */
.ticket-grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.6rem); grid-template-columns: 1fr; }
.ticket { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
.ticket__media { position: relative; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; }
.ba-pair > div { position: relative; aspect-ratio: 1 / 1; }
.ba-pair > div + div { border-left: 2px solid var(--card); }
.ba-pair .corner-tag { position: absolute; top: 10px; left: 10px; z-index: 3; font-family: var(--font-mono); font-size: .62rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--plaster); background: rgba(21,32,28,.62); padding: .2rem .45rem; border-radius: 100px; }
.ba-pair > div:nth-child(2) .corner-tag { left: auto; right: 10px; }
.ticket__body { padding: 1.05rem 1.2rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.ticket__title { font-size: 1.08rem; font-weight: 600; }

/* ---- 13. Service cards ------------------------------------------------- */
.services-grid { display: grid; gap: clamp(1rem, 2vw, 1.3rem); grid-template-columns: 1fr; }
.svc { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .16s var(--ease), box-shadow .16s var(--ease); }
.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc__media { position: relative; aspect-ratio: 3 / 2; }
.svc__body { padding: 1rem 1.15rem 1.2rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.svc__title { font-size: 1.12rem; font-weight: 600; }
.svc__desc { font-size: .95rem; color: var(--graphite-soft); }
.svc__more { margin-top: auto; padding-top: .55rem; font-weight: 600; color: var(--heart-pine); display: inline-flex; align-items: center; gap: .35rem; }
.svc:hover .svc__more .icon { transform: translateX(3px); }
.svc__more .icon { width: .95rem; height: .95rem; transition: transform .16s var(--ease); }

/* ---- 14. Process steps ------------------------------------------------- */
.steps { display: grid; gap: clamp(1.2rem, 3vw, 2rem); grid-template-columns: 1fr; counter-reset: step; }
.step { position: relative; padding-top: .4rem; border-top: 2px solid var(--line); }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1; color: var(--heart-pine); }
.step h3 { margin: .25rem 0 .35rem; }
.step p { font-size: .96rem; color: var(--graphite-soft); }

/* ---- 15. Pricing brackets --------------------------------------------- */
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: clamp(1.2rem, 3vw, 2rem); }
.price { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.price:last-of-type { border-bottom: 0; }
.price__name { font-weight: 600; }
.price__name small { display: block; font-weight: 400; font-size: .82rem; color: var(--concrete); }
.price__range { font-family: var(--font-mono); font-weight: 500; color: var(--cypress); white-space: nowrap; }
.price-note { font-size: .85rem; color: var(--concrete); margin-top: 1rem; }

/* ---- 16. Areas (dark band) -------------------------------------------- */
.areas { display: grid; gap: clamp(1.4rem, 3vw, 2rem); grid-template-columns: 1fr; }
.area-col h3 { color: var(--plaster); margin-bottom: .6rem; display: inline-flex; align-items: center; gap: .45rem; }
.area-col h3 .icon { color: var(--marigold); width: 1rem; height: 1rem; }
.area-col ul { list-style: none; padding: 0; display: grid; gap: .15rem; }
.area-col a { color: rgba(244,240,230,.82); padding: .25rem 0; display: inline-block; }
.area-col a:hover { color: var(--marigold); }
.areas-foot { margin-top: 1.8rem; font-size: .95rem; color: rgba(244,240,230,.82); }
.areas-foot a { color: var(--marigold); font-weight: 600; }

/* ---- 17. Reviews ------------------------------------------------------- */
.reviews-grid { display: grid; gap: clamp(1rem, 2.4vw, 1.5rem); grid-template-columns: 1fr; }
.review { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem 1.4rem 1.5rem; box-shadow: var(--shadow-sm); }
.review__stars { display: inline-flex; gap: 2px; color: var(--marigold); margin-bottom: .6rem; }
.review__stars .icon { width: 1.05rem; height: 1.05rem; }
.review__quote { font-size: 1.02rem; }
.review__who { margin-top: 1rem; font-weight: 600; }
.review__where { font-size: .85rem; color: var(--concrete); }
.ph-pill { position: absolute; top: 1rem; right: 1rem; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--heart-pine-deep); background: rgba(166,94,46,.12); border: 1px solid rgba(166,94,46,.3); padding: .2rem .45rem; border-radius: 100px; }

/* ---- 18. FAQ ----------------------------------------------------------- */
.faq { max-width: 800px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; font-weight: 600; font-size: 1.08rem; padding: 1.05rem 2.2rem 1.05rem 0; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .1rem; top: .75rem; font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; line-height: 1; color: var(--heart-pine); transition: transform .2s var(--ease); }
.faq details[open] summary::after { content: "\2013"; }
.faq__a { padding: 0 0 1.15rem; color: var(--graphite-soft); }
.faq__a p + p { margin-top: .7rem; }

/* ---- 19. CTA band + lead-capture form --------------------------------- */
.cta-band { background: var(--cypress); color: var(--plaster); position: relative; overflow: hidden; }
.cta-band__inner { display: grid; gap: clamp(1.8rem, 4vw, 3rem); align-items: start; }
.cta-band h2 { color: var(--plaster); max-width: 16ch; }
.cta-band__intro .kicker { margin-bottom: .5rem; color: var(--marigold); }
.cta-band__intro .lead { max-width: 46ch; color: rgba(244,240,230,.88); }
.cta-band__or { margin: 1.5rem 0 .7rem; font-weight: 600; color: var(--plaster); }

.cta-band__form { background: var(--card); color: var(--graphite); border-radius: var(--r-lg); padding: clamp(1.25rem, 3vw, 2rem); box-shadow: var(--shadow-lg); }
.lead-form .form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.field label { font-weight: 600; font-size: .92rem; color: var(--graphite); }
.field__opt { font-weight: 400; color: var(--concrete); }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--graphite);
  background: #fff; border: 1.5px solid var(--line-strong); border-radius: var(--r-md);
  padding: .7rem .8rem; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.lead-form textarea { resize: vertical; min-height: 3.4rem; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--cypress); box-shadow: 0 0 0 3px rgba(27,58,48,.18);
}
.lead-form select {
  appearance: none; -webkit-appearance: none; padding-right: 2.4rem; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B3A30' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center; background-size: 1.05rem;
}
.lead-form .btn { margin-top: 1.2rem; }
.form-note { font-size: .82rem; color: var(--concrete); margin-top: .85rem; text-align: center; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (min-width: 520px) {
  .lead-form .form-grid { grid-template-columns: 1fr 1fr; }
  .field { grid-column: 1 / -1; }
  .field--half { grid-column: span 1; }
}
@media (min-width: 880px) {
  .cta-band__inner { grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
}

/* trust-line credential badge (replaces the star rating for a new business) */
.trust-line__badge { width: 1.2rem; height: 1.2rem; color: var(--marigold); }

/* "Reviews coming soon" promise cards */
.promise { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.4rem; box-shadow: var(--shadow-sm); }
.promise__icon { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: rgba(231,163,37,.18); color: var(--heart-pine-deep); margin-bottom: .9rem; }
.promise__icon .icon { width: 1.5rem; height: 1.5rem; }
.promise h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.promise p { font-size: .95rem; color: var(--graphite-soft); }
.reviews-foot { margin-top: 1.8rem; font-size: .98rem; color: var(--graphite-soft); }
.reviews-foot a { color: var(--heart-pine); font-weight: 600; }

/* ---- 20. Footer -------------------------------------------------------- */
.site-footer { background: var(--cypress-deep); color: rgba(244,240,230,.82); padding-block: clamp(2.5rem, 6vw, 4rem); }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer-brand .brand { color: var(--plaster); font-size: 1.5rem; }
.footer-brand p { margin-top: .9rem; font-size: .92rem; max-width: 34ch; }
.footer-nap { margin-top: 1.1rem; font-size: .92rem; display: grid; gap: .35rem; }
.footer-nap a:hover { color: var(--marigold); }
.footer-nap .icon { width: .95rem; height: .95rem; color: var(--marigold); vertical-align: -1px; margin-right: .4rem; }
.footer-col h4 { color: var(--plaster); font-size: 1rem; margin-bottom: .7rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .35rem; font-size: .92rem; }
.footer-col a:hover { color: var(--marigold); }
.footer-areas { font-size: .85rem; line-height: 1.9; color: rgba(244,240,230,.62); }
.footer-areas a:hover { color: var(--marigold); }
.footer-bottom { margin-top: 2.2rem; padding-top: 1.3rem; border-top: 1px solid var(--line-light); display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .82rem; color: rgba(244,240,230,.55); }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--line-light); border-radius: var(--r-sm); display: grid; place-items: center; color: var(--plaster); }
.footer-social a:hover { background: var(--marigold); color: var(--graphite); border-color: var(--marigold); }
.footer-social .icon { width: 1.1rem; height: 1.1rem; }

/* ---- 21. Sticky mobile call/quote bar --------------------------------- */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: flex; gap: .5rem; padding: .55rem .8rem; padding-bottom: calc(.55rem + env(safe-area-inset-bottom)); background: var(--cypress); border-top: 1px solid var(--line-light); box-shadow: 0 -4px 16px rgba(0,0,0,.2); }
.mobile-cta .btn { flex: 1; padding: .85rem .8rem; }
body { padding-bottom: 74px; } /* room for the sticky bar on phones */

/* ---- 23. Service / content pages -------------------------------------- */
.measure { max-width: 70ch; }
.stack > * + * { margin-top: 1.1rem; }
.section-intro { margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }

.breadcrumb { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; color: var(--concrete); display: flex; flex-wrap: wrap; gap: .3rem .5rem; align-items: center; padding-block: 1rem 0; }
.breadcrumb a { color: var(--heart-pine); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--line-strong); }
.breadcrumb [aria-current] { color: var(--concrete); }

.split { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }

.checklist { list-style: none; padding: 0; display: grid; gap: .75rem; }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: start; font-size: .98rem; }
.checklist .ico-wrap { width: 26px; height: 26px; border-radius: 50%; background: rgba(27,58,48,.1); color: var(--cypress); display: grid; place-items: center; margin-top: 1px; }
.checklist .ico-wrap .icon { width: .9rem; height: .9rem; }
.checklist b { font-weight: 600; }
.section--dark .checklist .ico-wrap { background: rgba(231,163,37,.2); color: var(--marigold); }

.chip-links { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip { display: inline-flex; align-items: center; gap: .35rem; padding: .5rem .85rem; border-radius: 100px; background: var(--card); border: 1px solid var(--line); font-weight: 600; font-size: .92rem; color: var(--cypress); transition: background .14s var(--ease), color .14s var(--ease), border-color .14s var(--ease); }
.chip:hover { background: var(--cypress); color: var(--plaster); border-color: var(--cypress); }

.cta-strip { background: var(--cypress); color: var(--plaster); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.5rem); display: grid; gap: 1.1rem; box-shadow: var(--shadow-md); }
.cta-strip h2, .cta-strip h3 { color: var(--plaster); }
.cta-strip p { color: rgba(244,240,230,.88); max-width: 52ch; }
.cta-strip .btn-row { margin-top: .2rem; }

@media (min-width: 800px) {
  .split--2col { grid-template-columns: 1fr 1fr; }
  .checklist--2col { grid-template-columns: 1fr 1fr; gap: .75rem 1.8rem; }
  .cta-strip--row { grid-template-columns: 1fr auto; align-items: center; gap: 1.5rem 2.5rem; }
  .cta-strip--row .btn-row { justify-self: end; margin-top: 0; }
}

/* =========================================================================
   22. Responsive — mobile-first base above; enhancements below
   Tested targets: 360 / 768 / 1280
   ========================================================================= */
@media (min-width: 480px) {
  .hero .btn-row .btn { width: auto; }
  .ticket-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 620px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .areas { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 768px) {
  .mobile-cta { display: none; }
  body { padding-bottom: 0; }
}

@media (min-width: 940px) {
  .header__call span { display: inline; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
  .hero__inner { grid-template-columns: 1.05fr 1fr; align-items: center; gap: clamp(2.5rem, 4vw, 4rem); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
}

/* Full inline nav only once there's room for all seven links */
@media (min-width: 1080px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; align-items: center; gap: .8rem; }
}

@media (min-width: 1200px) {
  .ticket-grid { gap: 1.6rem; }
}

/* ---- 24. Root pages (contact, about, portfolio, financing, 404) ------- */
/* Contact */
.contact-grid { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: start; }
.info-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: clamp(1.3rem, 3vw, 1.8rem); }
.info-card h3 { font-size: 1.12rem; margin-bottom: .9rem; }
.info-card h3 + h3 { margin-top: 1.4rem; }
.info-list { display: grid; gap: .6rem; font-size: .96rem; color: var(--graphite-soft); margin-bottom: .4rem; }
.info-list a { color: var(--graphite); font-weight: 600; }
.info-list a:hover { color: var(--heart-pine); }
.info-list .icon { width: 1.05rem; height: 1.05rem; color: var(--heart-pine); vertical-align: -2px; margin-right: .5rem; }
.map-embed { margin-top: 1.2rem; aspect-ratio: 16 / 10; border-radius: var(--r-md); overflow: hidden; position: relative; border: 1px solid var(--line); }
.guide-box { background: var(--cypress); color: var(--plaster); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-md); }
.guide-box h2 { color: var(--plaster); }
.guide-box .kicker { color: var(--marigold); }
.guide-box p { color: rgba(244,240,230,.88); max-width: 50ch; }
.inline-form { display: grid; gap: .7rem; margin-top: 1.2rem; }
.inline-form input { width: 100%; font: inherit; font-size: 1rem; padding: .75rem .85rem; border-radius: var(--r-md); border: 1.5px solid transparent; background: #fff; color: var(--graphite); }
.inline-form input:focus { outline: none; box-shadow: 0 0 0 3px var(--marigold); }
.inline-form .form-note { color: rgba(244,240,230,.7); text-align: left; }

/* Portfolio filter */
.filter-bar { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: clamp(1.6rem, 3vw, 2.2rem); }
.filter-btn { font-family: var(--font-body); font-weight: 600; font-size: .92rem; padding: .55rem 1.05rem; border-radius: 100px; border: 1.5px solid var(--line-strong); background: transparent; color: var(--cypress); cursor: pointer; transition: background .14s var(--ease), color .14s var(--ease), border-color .14s var(--ease); }
.filter-btn:hover { border-color: var(--cypress); }
.filter-btn.is-active { background: var(--cypress); color: var(--plaster); border-color: var(--cypress); }
.ticket.is-hidden { display: none; }

/* Team (about) */
.team-grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.6rem); grid-template-columns: 1fr; }
.team__photo { aspect-ratio: 1 / 1; border-radius: var(--r-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.team__name { font-weight: 600; font-size: 1.05rem; margin-top: .8rem; }
.team__role { font-family: var(--font-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--heart-pine); margin-top: .15rem; }

/* 404 */
.error-page { min-height: 58vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.1rem; padding-block: clamp(3rem, 8vw, 6rem); }
.error-page .big404 { font-family: var(--font-display); font-weight: 800; font-size: clamp(4.5rem, 18vw, 9rem); line-height: .85; color: var(--cypress); letter-spacing: .01em; }
.error-page .btn-row { margin-top: .6rem; }

@media (min-width: 620px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .inline-form { grid-template-columns: 1fr 1fr auto; align-items: end; }
  .inline-form .btn { white-space: nowrap; }
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1.25fr 1fr; }
  .guide-box--row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3rem); align-items: center; }
  .guide-box--row .inline-form { margin-top: 0; }
}
@media (min-width: 940px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
