/* ============================================================
   Walter Bros Painting & Remodeling
   Heritage-tradesman system. Pine + canvas + ink, clay accent.
   Display: Archivo (signage/data). Body: Newsreader (serif).
   Shape: 0-radius, hairline rules, full-bleed bands.
   ============================================================ */

:root {
  /* Denim & Brick. Var names kept from the original scheme:
     --pine* = denim blue (brand/dark bands), --clay* = brick (accent),
     --canvas = warm bone ground, --trim = crisp warm white. */
  --ink:        #1B2027;   /* charcoal-blue text */
  --pine:       #2B4A63;   /* denim (brand) */
  --pine-deep:  #21384B;   /* deep denim, footer/loading */
  --pine-mid:   #3C6486;   /* lighter denim, hovers/low-emphasis */
  --canvas:     #F0EADD;   /* warm bone */
  --canvas-soft:#F5F0E6;
  --trim:       #FCF8F1;   /* crisp warm white */
  --clay:       #B85230;   /* brick accent (fills/buttons, 4.6:1 trim text) */
  --clay-deep:  #9E3F22;   /* brick text on light, 5.4:1 on bone */
  --stone:      #625C4F;   /* muted text, 5.3:1 on bone */
  --stone-soft: #8C8576;   /* decorative only (codes, borders) */

  --hairline:   rgba(27,32,39,.16);
  --hairline-d: rgba(252,248,241,.18);

  --fz-hero: clamp(2.7rem, 5.4vw, 5rem);
  --fz-h2:   clamp(1.85rem, 3.2vw, 2.85rem);
  --fz-h3:   clamp(1.18rem, 1.5vw, 1.4rem);
  --fz-ey:   .78rem;

  --ff-display: "Archivo", system-ui, sans-serif;
  --ff-body: "Hanken Grotesk", system-ui, sans-serif;

  --wrap: 1180px;
  --gut: clamp(1.25rem, 4vw, 3.5rem);

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

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-body);
  background: var(--canvas);
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--pine); color: var(--trim); }

/* ---------- type primitives ---------- */
.eyebrow {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fz-ey);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--clay);
}
.eyebrow.on-pine { color: var(--canvas); }
.eyebrow.on-pine::before { background: var(--clay); }

h1, h2, h3 { font-family: var(--ff-display); font-weight: 800; line-height: 1.02; letter-spacing: -.02em; }
.h2 { font-size: var(--fz-h2); }
.lede { font-size: clamp(1.1rem, 1.5vw, 1.28rem); color: var(--stone); line-height: 1.55; }

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(4rem, 8vw, 7.5rem); }
.band-pine { background: var(--pine); color: var(--canvas); }
.band-pine .h2 { color: var(--trim); }
.rule { height: 1px; background: var(--hairline); border: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header::before { /* scrim for legibility over hero */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(26,44,34,.55), rgba(26,44,34,0));
  opacity: 1; transition: opacity .35s var(--ease);
}
.site-header.solid { background: var(--pine); border-bottom-color: var(--hairline-d); }
.site-header.solid::before { opacity: 0; }

.header-in {
  max-width: var(--wrap); margin-inline: auto; padding: 0 var(--gut);
  height: 76px; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: baseline; gap: .6rem; color: var(--trim); }
.brand-mark {
  font-family: var(--ff-display); font-weight: 900; font-size: 1.22rem;
  letter-spacing: .02em; text-transform: uppercase; line-height: 1;
  white-space: nowrap;
}
.brand-sub {
  font-family: var(--ff-display); font-weight: 600; font-size: .62rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--clay);
}
.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2.1rem); }
.nav a {
  font-family: var(--ff-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .04em; color: var(--canvas); position: relative; padding: .4rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--clay); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }

.btn {
  font-family: var(--ff-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.4rem; border: 1.5px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn svg { width: 15px; height: 15px; }
.btn-primary { background: var(--clay); color: var(--trim); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--clay-deep); }
.btn-outline { background: transparent; color: var(--trim); border-color: var(--canvas); }
.btn-outline:hover, .btn-outline:focus-visible { background: var(--canvas); color: var(--pine); }
.btn-ink { background: var(--pine); color: var(--trim); }
.btn-ink:hover, .btn-ink:focus-visible { background: var(--clay); color: var(--trim); }
.nav .btn-primary { padding: .7rem 1.15rem; }

/* hamburger */
.burger {
  display: none; background: none; border: 0; width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--trim); position: relative; transition: .3s var(--ease); }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: var(--trim); transition: .3s var(--ease); }
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.menu-open .burger span { background: transparent; }
.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
.menu-open .burger span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--canvas); padding-top: 76px; overflow: hidden; }
.hero-in {
  display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(2.8rem, 6vw, 5.2rem);
}
.hero-copy { max-width: 100%; }
.hero h1 {
  font-size: var(--fz-hero); margin-top: 1.2rem;
  text-transform: none; max-width: 14ch;
}
.hero p.lede { margin-top: 1.4rem; max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
.hero-cta .btn-primary { background: var(--clay); }
.hero-cta .btn-primary:hover { background: var(--clay-deep); }
.hero-cta .btn-outline { color: var(--pine); border-color: var(--pine); }
.hero-cta .btn-outline:hover { background: var(--pine); color: var(--trim); }

/* trust row under the CTAs */
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem 1.1rem; margin-top: 1.9rem; }
.hero-trust .ht {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--ff-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .01em; color: var(--ink);
  padding-left: 1.1rem; border-left: 1px solid var(--hairline);
}
.hero-trust .ht:first-child { padding-left: 0; border-left: 0; }
.hero-trust .ht .stars { color: var(--clay); }

/* painted panel: a freshly rolled denim wall holding the work photo */
.hero-art { position: relative; justify-self: center; width: 100%; max-width: 440px; }
.paint-panel {
  position: relative; background: var(--pine);
  padding: clamp(1.3rem, 2.4vw, 2rem);
  box-shadow: 0 34px 70px -34px rgba(27,32,39,.65);
}
.paint-panel .roller {
  position: absolute; top: -15px; left: 7%; width: 86%; height: 34px; z-index: 3;
  filter: drop-shadow(0 6px 8px rgba(27,32,39,.28));
}
.js-ready .hero .paint-panel .roller { clip-path: inset(0 102% 0 0); }
.hero.loaded .paint-panel .roller { animation: rollOn 1s .35s var(--ease) forwards; }
@keyframes rollOn { from { clip-path: inset(0 102% 0 0); } to { clip-path: inset(0 -2% 0 0); } }

.hero-photo {
  position: relative; margin: 0; background: var(--trim); padding: 12px;
  aspect-ratio: 4/5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.hero-chip {
  position: absolute; left: -16px; bottom: -16px; z-index: 4;
  background: var(--trim); color: var(--ink); padding: .8rem .95rem;
  box-shadow: 0 16px 30px -16px rgba(27,32,39,.7);
  display: flex; align-items: center; gap: .7rem;
}
.hero-chip .swatch { width: 38px; height: 38px; background: var(--clay); flex: none; }
.hero-chip .k { font-family: var(--ff-display); font-weight: 800; font-size: .9rem; letter-spacing: .01em; line-height: 1.05; }
.hero-chip .c { font-family: var(--ff-display); font-weight: 500; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--clay-deep); margin-top: .2rem; display: block; }

/* ============================================================
   STAT STRIP
   ============================================================ */
.stats { border-top: 1px solid var(--hairline-d); border-bottom: 1px solid var(--hairline-d); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1rem, 2vw, 1.8rem);
  border-left: 1px solid var(--hairline-d); position: relative;
}
.stat:first-child { border-left: 0; }
.stat::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--clay); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.stat:hover::before { transform: scaleX(1); }
.stat .n { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.5rem,2.4vw,2.1rem); color: var(--trim); line-height: 1; }
.stat .l { font-family: var(--ff-display); font-weight: 500; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--canvas); opacity: .82; margin-top: .6rem; }
.stat:hover .n { color: var(--clay); transition: color .3s var(--ease); }

/* ============================================================
   SERVICES  (paint-chip signature)
   ============================================================ */
.sec-head { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: end; margin-bottom: clamp(2.2rem,4vw,3.4rem); }
.sec-head .h2 { max-width: 18ch; margin-top: 1rem; }
.sec-head p { color: var(--stone); max-width: 34ch; }

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem) clamp(2rem,5vw,4rem); }
.svc-col { border-top: 2px solid var(--ink); padding-top: 1.25rem; }
.svc-colhead { display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem; }
.svc-chip { width: 30px; height: 30px; flex: none; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.chip-paint { background: var(--pine); }
.chip-wall  { background: var(--stone-soft); }
.chip-remod { background: var(--clay); }
.chip-hand  { background: var(--ink); }
.svc-colhead h3 { font-size: var(--fz-h3); font-weight: 800; text-transform: uppercase; letter-spacing: .01em; }
.svc-colhead .code { margin-left: auto; font-family: var(--ff-display); font-weight: 500; font-size: .68rem; letter-spacing: .2em; color: var(--stone-soft); }

.svc-list { list-style: none; padding: 0; }
.svc-list li { border-bottom: 1px solid var(--hairline); }
.svc-list a, .svc-list span {
  display: flex; align-items: center; gap: .8rem; padding: .72rem 0;
  font-family: var(--ff-body); font-size: 1.02rem; color: var(--ink);
  position: relative; transition: color .25s var(--ease), padding .25s var(--ease);
}
.svc-list .tick {
  width: 0; height: 2px; background: var(--clay); flex: none;
  transition: width .28s var(--ease);
}
.svc-list li:hover a, .svc-list li:hover span { color: var(--clay-deep); padding-left: .2rem; }
.svc-list li:hover .tick { width: 18px; }

/* ============================================================
   PROCESS  (numbered, sequential)
   ============================================================ */
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--hairline-d); }
.proc {
  padding: clamp(1.8rem,3vw,2.6rem) clamp(1.1rem,2vw,1.8rem) clamp(2.2rem,4vw,3rem);
  border-left: 1px solid var(--hairline-d); position: relative;
}
.proc:first-child { border-left: 0; }
.proc .num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2.4rem,4vw,3.4rem); color: var(--pine-mid); line-height: 1; transition: color .3s var(--ease); }
.proc:hover .num { color: var(--clay); }
.proc h3 { font-size: 1.08rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--trim); margin: 1.1rem 0 .6rem; }
.proc p { font-size: .98rem; color: var(--canvas); opacity: .82; line-height: 1.5; }
.proc::after { content: ""; position: absolute; left: 0; top: -1px; width: 0; height: 2px; background: var(--clay); transition: width .35s var(--ease); }
.proc:hover::after { width: 100%; }

/* ============================================================
   WORK GALLERY
   ============================================================ */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 1.6vw, 1.4rem); }
.gal-item { position: relative; overflow: hidden; background: var(--pine-deep); }
.gal-item figure { margin: 0; aspect-ratio: 4/5; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; transition: transform 1.1s var(--ease); }
.gal-item:hover img { transform: scale(1.045); }
.gal-cap {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.1rem 1rem;
  background: linear-gradient(0deg, rgba(26,44,34,.86), rgba(26,44,34,0));
  color: var(--trim); transform: translateY(8px); opacity: .9;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.gal-item:hover .gal-cap { transform: translateY(0); opacity: 1; }
.gal-cap .t { font-family: var(--ff-display); font-weight: 700; font-size: .95rem; letter-spacing: .01em; }
.gal-cap .s { font-family: var(--ff-display); font-weight: 500; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--clay); margin-top: .25rem; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.quote-row { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: start; }
.quote-mark { font-family: var(--ff-display); font-weight: 900; font-size: clamp(4rem,8vw,7rem); color: var(--clay); line-height: .7; }
.quote-row blockquote { font-family: var(--ff-body); font-size: clamp(1.3rem,2.4vw,1.9rem); line-height: 1.4; color: var(--trim); max-width: 24ch; }
.quote-row cite { display: block; font-family: var(--ff-display); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--canvas); opacity: .82; margin-top: 1.4rem; font-style: normal; }

/* ============================================================
   REVIEWS
   ============================================================ */
.rev-head { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem 2rem; align-items: end; margin-bottom: clamp(2.2rem,4vw,3.2rem); }
.rev-head .h2 { max-width: 18ch; margin-top: 1rem; }
.rev-badge {
  display: inline-flex; flex-direction: column; gap: .45rem; align-items: flex-start;
  border: 1px solid var(--hairline-d); padding: 1rem 1.3rem; transition: border-color .25s var(--ease), background .25s var(--ease);
}
.rev-badge:hover, .rev-badge:focus-visible { border-color: var(--clay); background: rgba(176,91,59,.12); }
.rev-badge .stars { color: var(--clay); }
.rev-badge-meta { font-family: var(--ff-display); font-weight: 500; font-size: .82rem; letter-spacing: .04em; color: var(--canvas); }
.rev-badge-meta strong { font-weight: 800; color: var(--trim); }

.stars { display: inline-flex; gap: 2px; line-height: 0; }
.star { width: 17px; height: 17px; fill: currentColor; }

.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.8vw, 1.4rem); }
.rev-card {
  background: var(--trim); color: var(--ink); margin: 0;
  padding: clamp(1.4rem, 2vw, 1.7rem); position: relative;
  border: 1px solid rgba(24,27,24,.08);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease);
}
.rev-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--clay); transform: scaleY(0); transform-origin: top;
  transition: transform .32s var(--ease);
}
.rev-card:hover::before { transform: scaleY(1); }
.rev-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.rev-top .stars { color: var(--clay); }
.rev-tag {
  font-family: var(--ff-display); font-weight: 600; font-size: .6rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--trim); background: var(--pine); padding: .35rem .6rem;
}
.rev-card blockquote {
  font-family: var(--ff-body); font-size: 1.04rem; line-height: 1.5; color: var(--ink);
  margin: 0 0 1.3rem; flex: 1;
}
.rev-card figcaption { display: flex; align-items: baseline; justify-content: space-between; gap: .8rem; border-top: 1px solid var(--hairline); padding-top: .9rem; }
.rev-name { font-family: var(--ff-display); font-weight: 700; font-size: .92rem; color: var(--ink); }
.rev-src { font-family: var(--ff-display); font-weight: 500; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); }
.rev-card:hover .rev-name { color: var(--clay-deep); transition: color .25s var(--ease); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.about-copy .h2 { margin: 1rem 0 1.3rem; max-width: 16ch; }
.about-copy p { color: var(--stone); max-width: 46ch; margin-bottom: 1rem; }
.about-copy p strong { color: var(--ink); font-weight: 600; }
.fan { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.fan-chip { background: var(--trim); border: 1px solid var(--hairline); padding: 1.1rem 1.2rem; position: relative; }
.fan-chip .sw { width: 100%; height: 60px; margin-bottom: .9rem; }
.fan-chip .sw.a { background: var(--pine); }
.fan-chip .sw.b { background: var(--clay); }
.fan-chip .sw.c { background: var(--stone-soft); }
.fan-chip .sw.d { background: var(--ink); }
.fan-chip .nm { font-family: var(--ff-display); font-weight: 700; font-size: .92rem; }
.fan-chip .cd { font-family: var(--ff-display); font-weight: 500; font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone-soft); margin-top: .2rem; }

/* ============================================================
   QUOTE CTA BAND
   ============================================================ */
.cta-band { text-align: center; }
.cta-band .h2 { color: var(--trim); max-width: 20ch; margin: 1rem auto 1.6rem; }
.cta-actions { display: inline-flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.cta-band .btn-primary { background: var(--clay); }
.cta-band .btn-primary:hover { background: var(--trim); color: var(--pine); }
.cta-phone {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--ff-display); font-weight: 700; letter-spacing: .04em;
  color: var(--trim); padding: .85rem 1.4rem; border: 1.5px solid var(--canvas);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.cta-phone:hover, .cta-phone:focus-visible { background: var(--canvas); color: var(--pine); }
.cta-phone svg { width: 16px; height: 16px; }

/* ============================================================
   CONTACT / HOURS
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); }
.hours { width: 100%; border-collapse: collapse; }
.hours caption { text-align: left; font-family: var(--ff-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 1.05rem; margin-bottom: .9rem; }
.hours th, .hours td { text-align: left; padding: .68rem .5rem; border-bottom: 1px solid var(--hairline); font-family: var(--ff-body); font-size: 1rem; }
.hours th { font-weight: 600; color: var(--ink); }
.hours td { color: var(--stone); text-align: right; font-variant-numeric: tabular-nums; }
.hours tr { transition: background .25s var(--ease); }
.hours tbody tr:hover { background: rgba(176,91,59,.08); }
.hours tr.today th { color: var(--clay-deep); }
.hours tr.today td { color: var(--clay-deep); font-weight: 600; }
.hours tr.closed td { color: var(--stone-soft); }

.contact-card h3 { font-size: var(--fz-h3); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 1.1rem; }
.contact-list { list-style: none; padding: 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; padding-bottom: 1rem; border-bottom: 1px solid var(--hairline); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ico { width: 22px; height: 22px; flex: none; color: var(--pine); margin-top: .15rem; }
.contact-list .lab { font-family: var(--ff-display); font-weight: 600; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); }
.contact-list .val { font-family: var(--ff-body); font-size: 1.12rem; color: var(--ink); }
.contact-list a.val:hover { color: var(--clay-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--pine-deep); color: var(--canvas); padding-block: clamp(3rem,5vw,4.5rem) 2rem; }
.foot-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(1.6rem,4vw,3rem); padding-bottom: 2.4rem; border-bottom: 1px solid var(--hairline-d); }
.foot-brand .big { font-family: var(--ff-display); font-weight: 900; font-size: clamp(2rem,4vw,3rem); text-transform: uppercase; letter-spacing: .01em; color: var(--trim); line-height: .95; }
.foot-brand .tag { font-family: var(--ff-display); font-weight: 600; font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--clay); margin-top: .6rem; }
.foot-brand p { color: var(--canvas); opacity: .8; margin-top: 1.1rem; max-width: 32ch; font-size: .98rem; }
.foot-col h4 { font-family: var(--ff-display); font-weight: 600; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--clay); margin-bottom: 1rem; }
.foot-col ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.foot-col a, .foot-col span { font-size: .98rem; color: var(--canvas); opacity: .86; transition: opacity .2s var(--ease), color .2s; }
.foot-col a:hover { opacity: 1; color: var(--clay); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding-top: 1.6rem; font-family: var(--ff-display); font-size: .74rem; letter-spacing: .04em; color: var(--canvas); opacity: .7; }

/* ============================================================
   MOTION  (gated behind js-ready)
   ============================================================ */
.js-ready [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js-ready [data-reveal].in { opacity: 1; transform: none; }
.js-ready [data-reveal][data-d="1"] { transition-delay: .08s; }
.js-ready [data-reveal][data-d="2"] { transition-delay: .16s; }
.js-ready [data-reveal][data-d="3"] { transition-delay: .24s; }
.js-ready [data-reveal][data-d="4"] { transition-delay: .32s; }

/* hero load stagger */
.js-ready .hero [data-h] { opacity: 0; transform: translateY(18px); }
.hero.loaded [data-h] { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.hero.loaded [data-h="1"] { transition-delay: .05s; }
.hero.loaded [data-h="2"] { transition-delay: .15s; }
.hero.loaded [data-h="3"] { transition-delay: .25s; }
.hero.loaded [data-h="4"] { transition-delay: .35s; }
.hero.loaded [data-h="fig"] { transition-delay: .2s; transition-duration: .9s; }

/* focus */
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }
.band-pine :focus-visible, .site-header :focus-visible { outline-color: var(--canvas); }

@media (prefers-reduced-motion: reduce) {
  .js-ready [data-reveal], .js-ready .hero [data-h] { opacity: 1 !important; transform: none !important; }
  .gal-item img { transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .hero-in { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-copy { max-width: 30ch; }
  .hero-figure { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--hairline-d); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc:nth-child(3) { border-left: 0; }
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  /* mobile menu panel */
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; inset: 76px 0 auto 0; background: var(--pine);
    border-top: 1px solid var(--hairline-d); padding: .5rem var(--gut) 1.5rem;
    z-index: 49;
  }
  .nav.open a { padding: 1rem 0; border-bottom: 1px solid var(--hairline-d); font-size: 1rem; }
  .nav.open a::after { display: none; }
  .nav.open .btn-primary { margin-top: 1rem; justify-content: center; padding: 1rem; }
  .brand-sub { display: none; }

  .svc-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .rev-head { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-head { grid-template-columns: 1fr; }
  .sec-head p { max-width: none; }
  .quote-row { grid-template-columns: 1fr; gap: .5rem; }
  .section { padding-block: clamp(3.2rem, 9vw, 5rem); }
  .hero-chip { left: 10px; bottom: 10px; }
}

@media (max-width: 440px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: 0 !important; border-top: 1px solid var(--hairline-d); }
  .stat:first-child { border-top: 0; }
  .proc-grid { grid-template-columns: 1fr; }
  .proc { border-left: 0; border-top: 1px solid var(--hairline-d); }
  .proc:first-child { border-top: 0; }
  .gal-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
}

/* ============================================================
   CREATIVE LAYER — brushwork, paint texture, fresh-paint vibe
   ============================================================ */
:root {
  --brush-dab: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 20'%3E%3Cpath d='M3,12 C13,5 20,7 28,8 C37,9 45,14 49,9' fill='none' stroke='%23000' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E");
  --brush-ul: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 250 28' preserveAspectRatio='none'%3E%3Cpath d='M6,16 C55,6 120,20 165,13 C200,8 226,17 244,11' fill='none' stroke='%23000' stroke-width='11' stroke-linecap='round'/%3E%3Cpath d='M12,23 C80,18 165,25 243,19' fill='none' stroke='%23000' stroke-width='3.5' stroke-linecap='round' opacity='.45'/%3E%3C/svg%3E");
  --paper: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* canvas / drop-cloth tooth over everything */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: var(--paper); background-size: 160px;
  opacity: .055; mix-blend-mode: multiply;
}
.band-pine { position: relative; }
.band-pine::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--paper); background-size: 150px;
  opacity: .07; mix-blend-mode: overlay;
}

/* brush-dab eyebrow (replaces the flat tick) */
.eyebrow::before {
  width: 32px; height: 14px; background: var(--clay);
  -webkit-mask: var(--brush-dab) center/contain no-repeat;
          mask: var(--brush-dab) center/contain no-repeat;
}
.eyebrow.on-pine::before { background: var(--clay); }

/* hand-painted underline on section headings */
.sec-head .h2, .rev-head .h2, .about-copy .h2 { position: relative; }
.sec-head .h2::after, .rev-head .h2::after, .about-copy .h2::after {
  content: ""; display: block; width: clamp(120px, 42%, 230px); height: .42em;
  margin-top: .26em; background: var(--clay);
  -webkit-mask: var(--brush-ul) left center/100% 100% no-repeat;
          mask: var(--brush-ul) left center/100% 100% no-repeat;
  transform: scaleX(0); transform-origin: left;
  transition: transform .75s .15s var(--ease);
}
.sec-head .h2.in::after, .rev-head .h2.in::after, .about-copy .h2.in::after { transform: scaleX(1); }

/* hero: paint-swiped keyword */
.kw { position: relative; display: inline-block; white-space: nowrap; padding: 0 .08em; }
.kw-brush { position: absolute; left: -5%; top: 4%; width: 110%; height: 92%; z-index: 0; }
.kw-brush path { fill: var(--clay); }
.kw-ink { position: relative; z-index: 1; color: var(--trim); }
.js-ready .hero .kw-brush { clip-path: inset(0 103% 0 -3%); }
.hero.loaded .kw-brush { animation: paintOn .92s .55s var(--ease) forwards; }
@keyframes paintOn { from { clip-path: inset(0 103% 0 -3%); } to { clip-path: inset(0 -3% 0 -3%); } }

/* paint fan deck (replaces the static chip grid) */
.fandeck { display: flex; justify-content: center; align-items: flex-end; padding: 1rem 0 .5rem; perspective: 800px; }
.swatch {
  position: relative; width: 74px; height: 244px; margin-left: -24px;
  background: var(--trim); box-shadow: 0 14px 26px -16px rgba(26,44,34,.65);
  display: flex; flex-direction: column; transform-origin: bottom center;
  transform: rotate(calc((var(--i) - 3) * 3deg)) translateY(calc(var(--lift, 0) * 1px));
  transition: transform .5s var(--ease), margin-left .5s var(--ease), box-shadow .35s var(--ease);
}
.swatch:first-child { margin-left: 0; }
.fandeck:hover .swatch { margin-left: 4px; transform: rotate(calc((var(--i) - 3) * 5deg)); }
.fandeck .swatch:hover { transform: rotate(calc((var(--i) - 3) * 5deg)) translateY(-14px); box-shadow: 0 22px 34px -16px rgba(26,44,34,.75); z-index: 5; }
.sw-fill { flex: 1; }
.sw-meta { background: var(--trim); padding: .5rem 24px .6rem .5rem; }
.swatch:last-child .sw-meta { padding-right: .5rem; }
.sw-name { display: block; font-family: var(--ff-display); font-weight: 700; font-size: .6rem; letter-spacing: 0; color: var(--ink); line-height: 1.06; }
.sw-code { display: block; font-family: var(--ff-display); font-weight: 500; font-size: .52rem; letter-spacing: .1em; color: var(--stone); margin-top: .2rem; }
.fandeck:hover .sw-meta { padding-right: .5rem; transition: padding .5s var(--ease); }

@media (max-width: 940px) {
  .fandeck { transform: scale(.96); }
}
@media (prefers-reduced-motion: reduce) {
  .js-ready .hero .kw-brush { clip-path: none !important; animation: none !important; }
  .js-ready .hero .paint-panel .roller { clip-path: none !important; animation: none !important; }
  .sec-head .h2::after, .rev-head .h2::after, .about-copy .h2::after { transform: scaleX(1); }
}

/* full-width roller-stroke divider */
.roller-band { width: 100%; height: 26px; display: block; overflow: hidden; line-height: 0; }
.roller-band svg { width: 100%; height: 100%; display: block; }

/* WHY WALTER BROS — trust / benefits */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.8vw, 1.5rem); }
.why-card {
  background: var(--trim); border: 1px solid rgba(27,32,39,.08);
  padding: clamp(1.4rem, 2vw, 1.8rem); position: relative;
  transition: transform .3s var(--ease);
}
.why-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: var(--clay); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.why-card:hover::before { transform: scaleX(1); }
.why-ico {
  width: 30px; height: 30px; color: var(--pine); margin-bottom: 1.1rem;
  transition: color .3s var(--ease);
}
.why-card:hover .why-ico { color: var(--clay); }
.why-card h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.06rem; letter-spacing: -.01em; margin-bottom: .5rem; }
.why-card p { color: var(--stone); font-size: .95rem; line-height: 1.5; }

/* gallery: prouder header link */
.work-more {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.2rem;
  font-family: var(--ff-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .02em; color: var(--clay-deep); border-bottom: 2px solid var(--clay);
  padding-bottom: 2px; transition: gap .25s var(--ease), color .25s var(--ease);
}
.work-more:hover { gap: .85rem; color: var(--pine); border-color: var(--pine); }
.work-more svg { width: 15px; height: 15px; }

@media (max-width: 940px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
