:root {
  --forest-950: #032b24;
  --forest-900: #063d32;
  --forest-800: #07503f;
  --forest-700: #0b6b4f;
  --forest-600: #16815e;
  --mint: #b9dfca;
  --mint-soft: #e7f1eb;
  --lime: #d7ef52;
  --paper: #f7f5ee;
  --paper-2: #eeece3;
  --white: #fff;
  --ink: #102820;
  --muted: #50685f;
  --line: rgba(6, 61, 50, .18);
  --line-light: rgba(255, 255, 255, .18);
  --danger: #9b2c2c;
  --shadow: 0 22px 60px rgba(3, 43, 36, .14);
  --shadow-soft: 0 12px 30px rgba(3, 43, 36, .08);
  --radius: 14px;
  --container: 1220px;
  --sans: Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 15px;
  color: var(--forest-950);
  background: var(--white);
  border: 2px solid var(--forest-950);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section { position: relative; padding: 100px 0; }
.section--paper, .section--cream { background: var(--paper); }
.section--soft, .section--sage { background: var(--mint-soft); }
.section--green { color: var(--white); background: var(--forest-900); }
.section--ink { color: var(--white); background: var(--forest-950); }

h1, h2, h3, h4 {
  margin-top: 0;
  color: var(--forest-950);
  font-family: var(--sans);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
h1 { margin-bottom: 24px; font-size: clamp(3rem, 7vw, 6.6rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.25rem, 4.8vw, 4.5rem); }
h3 { margin-bottom: 12px; font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.08; letter-spacing: -.025em; }
h4 { margin-bottom: 8px; font-size: 1.1rem; line-height: 1.15; letter-spacing: -.02em; }
.section--green h2, .section--green h3, .section--ink h2, .section--ink h3 { color: var(--white); }
p { margin-top: 0; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.08rem, 1.7vw, 1.27rem); line-height: 1.62; }
.section--green .lead, .section--ink .lead { color: rgba(255, 255, 255, .76); }

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--forest-700);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}
.kicker::before,
.eyebrow::before {
  content: "";
  width: 26px;
  height: 7px;
  background: var(--lime);
}
.section--green .kicker, .section--green .eyebrow,
.section--ink .kicker, .section--ink .eyebrow { color: var(--mint); }
.section-heading { max-width: 840px; margin-bottom: 48px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .kicker, .section-heading--center .eyebrow { justify-content: center; }
.section-heading--center .lead { margin-inline: auto; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 19px; height: 19px; flex: 0 0 auto; }
.btn svg { transition: transform .22s ease; }
.btn--lime, .btn--gold { color: var(--forest-950); background: var(--lime); border-color: var(--lime); box-shadow: 6px 6px 0 rgba(3, 43, 36, .55); }
.btn--lime:hover, .btn--gold:hover { box-shadow: 3px 3px 0 rgba(3, 43, 36, .55); }
.btn--green { color: var(--white); background: var(--forest-700); border-color: var(--forest-700); }
.btn--green:hover { background: var(--forest-800); border-color: var(--forest-800); }
.btn--white, .btn--light { color: var(--forest-950); background: var(--white); border-color: var(--white); }
.btn--outline { color: var(--forest-900); background: transparent; border-color: var(--forest-900); }
.section--green .btn--outline, .section--ink .btn--outline { color: var(--white); border-color: rgba(255, 255, 255, .5); }

.topbar { position: sticky; z-index: 102; top: 0; color: var(--white); background: var(--forest-950); border-bottom: 1px solid rgba(255, 255, 255, .12); }
.topbar__inner { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.topbar__links { display: flex; align-items: center; gap: 18px; font-size: .8rem; font-weight: 900; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--lime); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 38px;
  background: rgba(247, 245, 238, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.site-header__inner { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand__logo { width: 290px; max-height: 64px; }
.nav { display: flex; align-items: center; gap: 25px; }
.nav > a:not(.btn) { position: relative; padding: 28px 0 25px; color: var(--forest-950); font-size: .86rem; font-weight: 900; text-decoration: none; }
.nav > a:not(.btn)::after { content: ""; position: absolute; right: 0; bottom: 20px; left: 0; height: 3px; background: var(--forest-700); transform: scaleX(0); transform-origin: left; transition: transform .18s ease; }
.nav > a:hover::after, .nav > a[aria-current="page"]::after { transform: scaleX(1); }
.nav .btn { min-height: 44px; padding: 10px 15px; font-size: .84rem; }
.menu-toggle { display: none; width: 46px; height: 46px; place-items: center; color: var(--white); background: var(--forest-900); border: 0; border-radius: 5px; }
.menu-toggle svg { width: 24px; }

.hero { overflow: hidden; color: var(--white); background: var(--forest-950); }
.hero__grid { display: grid; min-height: 690px; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
.hero__copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 82px 70px 82px 0; }
.hero__copy::after { content: ""; position: absolute; z-index: -1; top: 0; right: -42px; bottom: 0; width: 90px; background: var(--forest-950); clip-path: polygon(0 0, 52% 0, 100% 100%, 0 100%); }
.hero h1 { max-width: 720px; color: var(--white); font-size: clamp(3.2rem, 6.2vw, 6.25rem); }
.hero h1 span { display: block; color: var(--lime); }
.hero .lead { max-width: 650px; color: rgba(255, 255, 255, .8); }
.hero .kicker, .hero .eyebrow { color: var(--mint); }
.hero__media { position: relative; min-width: 0; }
.hero__media img { width: calc(100% + ((100vw - min(100vw - 40px, var(--container))) / 2)); max-width: none; height: 100%; object-fit: cover; object-position: 56% center; animation: scenic-drift 18s ease-in-out infinite alternate; will-change: transform; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,43,36,.25), transparent 34%), linear-gradient(0deg, rgba(3,43,36,.5), transparent 42%); pointer-events: none; }
.hero__caption { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 36px; display: grid; max-width: 540px; grid-template-columns: auto 1fr; gap: 14px; align-items: center; padding: 16px 18px; color: var(--forest-950); background: var(--lime); border: 2px solid var(--forest-950); box-shadow: 7px 7px 0 var(--forest-950); }
.hero__caption span { display: grid; width: 40px; height: 40px; place-items: center; color: var(--white); background: var(--forest-950); font-weight: 900; }
.hero__caption p { margin: 0; font-size: .9rem; line-height: 1.35; }
.hero__caption strong { display: block; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px 26px; margin: 30px 0 0; padding: 0; list-style: none; color: rgba(255, 255, 255, .84); font-size: .88rem; font-weight: 800; }
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust svg { width: 18px; height: 18px; color: var(--lime); }

.ticker {
  --ticker-duration: 34s;
  --ticker-gap: clamp(1.5rem, 3vw, 3.6rem);
  position: relative;
  overflow: hidden;
  max-width: 100%;
  contain: paint;
}
.ticker__track {
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: 0;
  animation: ticker-scroll var(--ticker-duration) linear infinite;
  will-change: transform;
}
.ticker__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--ticker-gap);
  margin: 0;
  padding: 0 clamp(1.5rem, 3vw, 3.6rem);
  list-style: none;
  white-space: nowrap;
}
.ticker--reverse .ticker__track { animation-direction: reverse; }
@keyframes ticker-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.service-ticker { color: var(--white); background: var(--forest-700); border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.service-ticker__group { min-width: 100vw; min-height: 60px; justify-content: space-around; }
.service-ticker__group li { display: flex; align-items: center; gap: var(--ticker-gap); font-size: .8rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.service-ticker__group li::after { content: ""; width: 8px; height: 8px; flex: 0 0 8px; background: var(--lime); transform: rotate(45deg); }

.brand-intro { display: grid; grid-template-columns: 1.12fr .88fr; gap: 76px; align-items: start; }
.brand-intro__statement { padding-right: 20px; border-right: 1px solid var(--line); }
.brand-intro__statement h2 { max-width: 800px; }
.brand-intro__statement h2 em { color: var(--forest-700); font-style: normal; }
.promise-list { display: grid; gap: 0; margin: 4px 0 0; padding: 0; list-style: none; counter-reset: promises; }
.promise-list li { position: relative; padding: 20px 0 20px 52px; border-bottom: 1px solid var(--line); }
.promise-list li::before { counter-increment: promises; content: "0" counter(promises); position: absolute; top: 21px; left: 0; color: var(--forest-700); font-size: .78rem; font-weight: 900; letter-spacing: .08em; }
.promise-list strong { display: block; margin-bottom: 3px; font-size: 1.05rem; }
.promise-list span { color: var(--muted); font-size: .94rem; }

.scope-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.scope-card { position: relative; min-height: 270px; padding: 34px; transition: background-color .28s ease, transform .28s ease; }
.scope-card:not(:last-child) { border-right: 1px solid var(--line); }
.scope-card > span { display: grid; width: 42px; height: 42px; margin-bottom: 42px; place-items: center; color: var(--forest-950); background: var(--lime); font-size: .76rem; font-weight: 900; }
.scope-card p { color: var(--muted); }
.scope-card .text-link { margin-top: 8px; }

.service-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 22px; }
.service-card { overflow: hidden; color: var(--ink); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft); transition: transform .32s cubic-bezier(.2,.75,.25,1), box-shadow .32s ease; }
.service-card:nth-child(1), .service-card:nth-child(2) { grid-column: span 6; }
.service-card:nth-child(n+3) { grid-column: span 4; }
.service-card__image { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: var(--mint-soft); }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-card__image img { transform: scale(1.025); }
.service-card__body { padding: 30px; }
.service-card__number { display: inline-block; margin-bottom: 20px; color: var(--forest-700); font-size: .76rem; font-weight: 900; letter-spacing: .14em; }
.service-card p { color: var(--muted); }
.service-card--text { display: flex; min-height: 330px; flex-direction: column; justify-content: space-between; padding: 30px; background: var(--mint-soft); }
.service-card--dark { color: var(--white); background: var(--forest-950); border-color: var(--forest-950); }
.service-card--dark h3 { color: var(--white); }
.service-card--dark p { color: rgba(255,255,255,.72); }
.service-card--dark .service-card__number { color: var(--lime); }
.service-card--lime { color: var(--forest-950); background: var(--lime); border-color: var(--lime); }
.service-card--lime p { color: rgba(3,43,36,.76); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--forest-700); font-weight: 900; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.service-card--dark .text-link { color: var(--lime); }
.service-card--lime .text-link { color: var(--forest-950); }

.check-list { display: grid; gap: 11px; margin: 22px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 27px; }
.check-list li::before { content: ""; position: absolute; top: .55em; left: 0; width: 11px; height: 6px; border-bottom: 3px solid var(--forest-700); border-left: 3px solid var(--forest-700); transform: rotate(-45deg); }
.section--green .check-list li::before, .section--ink .check-list li::before, .service-card--dark .check-list li::before { border-color: var(--lime); }

.process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.process__step { position: relative; padding: 36px 26px 36px 0; }
.process__step:not(:last-child) { margin-right: 26px; border-right: 1px solid var(--line-light); }
.process__step::before { display: grid; width: 42px; height: 42px; margin-bottom: 28px; place-items: center; color: var(--forest-950); background: var(--lime); font-size: .82rem; font-weight: 900; counter-increment: process; content: "0" counter(process); transition: transform .28s ease; }
.process { counter-reset: process; }
.process__step p { margin-bottom: 0; color: rgba(255, 255, 255, .72); }

.material-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 74px; align-items: start; }
.material-layout__intro { position: sticky; top: 130px; }
.brand-panel { min-width: 0; }
.brand-panel__label { margin: 0 0 10px; color: var(--forest-950); font-size: .74rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.brand-ticker { --ticker-duration: 26s; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.brand-ticker__group { min-height: 124px; gap: 0; padding: 0; }
.paint-brand-logo { display: grid; width: clamp(170px, 18vw, 220px); min-height: 124px; flex: 0 0 clamp(170px, 18vw, 220px); place-items: center; padding: 22px 25px; border-right: 1px solid var(--line); background: var(--white); }
.paint-brand-logo:nth-child(even) { background: var(--mint-soft); }
.paint-brand-logo img { width: auto; height: 56px; max-width: 185px; object-fit: contain; transition: transform .3s ease; }
.paint-brand-logo img[src*="sigma-coatings"] { height: 48px; }
.material-points { display: grid; gap: 14px; margin-top: 22px; }
.material-point { padding: 22px 24px; background: rgba(255,255,255,.6); border-left: 6px solid var(--forest-700); transition: transform .25s ease, background-color .25s ease; }
.material-point strong { display: block; margin-bottom: 3px; }
.material-point p { margin: 0; color: var(--muted); }
.small-print { color: var(--muted); font-size: .82rem; line-height: 1.55; }
.section--green .small-print, .section--ink .small-print { color: rgba(255,255,255,.6); }

.promise-ticker { --ticker-duration: 38s; color: var(--forest-950); background: var(--lime); border-top: 2px solid var(--forest-950); border-bottom: 2px solid var(--forest-950); }
.promise-ticker__group { min-width: 100vw; min-height: 78px; justify-content: space-around; }
.promise-ticker__group li { display: flex; align-items: center; gap: var(--ticker-gap); font-size: clamp(.9rem, 1.4vw, 1.08rem); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.promise-ticker__group li::after { content: "/"; color: var(--forest-700); font-size: 1.5em; font-weight: 400; }

.local-story { display: grid; grid-template-columns: 1.04fr .96fr; gap: 0; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.local-story__image { position: relative; overflow: hidden; min-height: 540px; }
.local-story__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.75,.25,1); }
.local-story__image figcaption { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 10px 12px; color: rgba(255,255,255,.82); background: rgba(3,43,36,.88); font-size: .73rem; }
.local-story__body { display: flex; flex-direction: column; justify-content: center; padding: 60px; }

.tax-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.tax-card { display: grid; grid-template-columns: 150px 1fr; overflow: hidden; color: var(--ink); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.tax-card__rate { display: grid; place-items: center; padding: 28px 20px; color: var(--white); background: var(--forest-700); text-align: center; }
.tax-card__rate strong { display: block; color: var(--white); font-size: 3.3rem; font-weight: 900; line-height: 1; letter-spacing: -.07em; }
.tax-card__rate span { display: block; margin-top: 8px; font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.tax-card--21 .tax-card__rate { color: var(--forest-950); background: var(--lime); }
.tax-card--21 .tax-card__rate strong { color: var(--forest-950); }
.tax-card__body { padding: 34px; }
.tax-card__body h3 { font-size: 1.65rem; }
.tax-card__body p:last-child { margin-bottom: 0; }

.area-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.area-name-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.area-name { padding: 24px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.area-name strong { display: block; color: var(--lime); font-size: 1.1rem; }
.area-name span { color: rgba(255,255,255,.66); font-size: .9rem; }

.quote-section { color: var(--ink); background: var(--paper-2); }
.quote-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 52px; align-items: start; }
.quote-intro { position: sticky; top: 126px; }
.contact-lines { display: grid; gap: 10px; margin: 30px 0; }
.contact-line { display: flex; min-height: 56px; align-items: center; gap: 13px; padding: 12px 14px; color: var(--forest-950); background: var(--white); border: 1px solid var(--line); font-weight: 900; text-decoration: none; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.contact-line:hover { border-color: var(--forest-700); }
.contact-line__icon { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; color: var(--white); background: var(--forest-700); transition: transform .22s ease; }
.contact-line__icon svg { width: 18px; height: 18px; }
.quote-form { padding: 38px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-section + .form-section { margin-top: 38px; padding-top: 34px; border-top: 1px solid var(--line); }
.form-section h3 { display: flex; align-items: center; gap: 12px; font-size: 1.45rem; }
.form-section h3 span { display: grid; width: 34px; height: 34px; place-items: center; color: var(--forest-950); background: var(--lime); font-size: .8rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-field { display: grid; align-content: start; gap: 7px; min-width: 0; }
.form-field--full { grid-column: 1 / -1; }
.form-field label, .form-field legend { color: var(--forest-950); font-size: .87rem; font-weight: 900; }
.form-field fieldset, fieldset.form-field { margin: 0; padding: 0; border: 0; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(6,61,50,.28);
  border-radius: 3px;
}
.form-field textarea { min-height: 118px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--forest-700); outline: 2px solid rgba(11,107,79,.12); }
.form-field small { color: var(--muted); font-size: .77rem; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 3px; }
.choice { display: flex; min-height: 48px; align-items: center; gap: 10px; padding: 9px 11px; background: var(--paper); border: 1px solid var(--line); font-size: .86rem; font-weight: 700 !important; cursor: pointer; }
.choice input { width: 18px; min-height: auto; height: 18px; flex: 0 0 18px; padding: 0; accent-color: var(--forest-700); }
.required { color: #b42318; }
.privacy-check { display: flex; gap: 11px; margin: 26px 0 20px; color: var(--muted); font-size: .82rem; }
.privacy-check input { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 3px; accent-color: var(--forest-700); }
.form-status { display: none; margin-bottom: 20px; padding: 13px; }
.form-status.is-visible { display: block; }
.form-status--error { color: var(--danger); background: #fff0f0; border: 1px solid rgba(155,44,44,.3); }
.honeypot { position: absolute !important; overflow: hidden !important; width: 1px !important; height: 1px !important; clip: rect(1px,1px,1px,1px) !important; white-space: nowrap !important; }

.faq-list { max-width: 920px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 58px 24px 0; color: var(--forest-950); font-size: 1.08rem; font-weight: 900; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 17px; right: 0; display: grid; width: 38px; height: 38px; place-items: center; color: var(--white); background: var(--forest-700); font-size: 1.45rem; transition: color .25s ease, background-color .25s ease, transform .25s ease; }
.faq-list details[open] summary::after { content: "−"; color: var(--forest-950); background: var(--lime); }
.faq-list details p { max-width: 780px; margin: -6px 0 24px; color: var(--muted); }

.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 34px; padding: 46px; color: var(--white); background: var(--forest-900); box-shadow: 10px 10px 0 var(--lime); }
.cta-band h2 { max-width: 760px; margin-bottom: 10px; color: var(--white); font-size: clamp(2rem, 3.8vw, 3.5rem); }
.cta-band p { max-width: 680px; margin-bottom: 0; color: rgba(255,255,255,.73); }

.page-hero { overflow: hidden; color: var(--white); background: var(--forest-950); }
.page-hero__inner { display: grid; min-height: 560px; grid-template-columns: 1fr .9fr; gap: 54px; align-items: center; }
.page-hero h1 { color: var(--white); font-size: clamp(3rem, 6vw, 5.9rem); }
.page-hero .lead { color: rgba(255,255,255,.78); }
.page-hero__image { overflow: hidden; height: 100%; min-height: 560px; margin-right: calc((min(100vw - 40px, var(--container)) - 100vw) / 2); }
.page-hero__image img { width: 100%; height: 100%; object-fit: cover; animation: scenic-drift 18s ease-in-out infinite alternate; will-change: transform; }
.page-hero .kicker, .page-hero .eyebrow { color: var(--mint); }
.breadcrumbs { padding: 14px 0; background: var(--mint-soft); border-bottom: 1px solid var(--line); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .82rem; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; }
.breadcrumbs a { color: var(--forest-700); font-weight: 800; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 74px; align-items: start; }
.prose { max-width: 790px; }
.prose h2 { margin-top: 62px; font-size: clamp(2rem, 4vw, 3.25rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 35px; }
.prose p, .prose li { color: #405b51; }
.prose ul { display: grid; gap: 9px; padding-left: 22px; }
.prose figure { margin: 38px 0; }
.prose figure img { width: 100%; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.prose figcaption { margin-top: 9px; color: var(--muted); font-size: .8rem; }
.side-card { position: sticky; top: 126px; padding: 30px; color: var(--white); background: var(--forest-900); box-shadow: 8px 8px 0 var(--lime); }
.side-card h3 { color: var(--white); }
.side-card p { color: rgba(255,255,255,.74); }
.side-card .btn { width: 100%; margin-top: 10px; }
.note-card { margin-top: 32px; padding: 24px; background: var(--mint-soft); border-left: 7px solid var(--forest-700); }
.note-card strong { display: block; margin-bottom: 5px; }
.note-card p:last-child { margin-bottom: 0; }
.application-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.application-card { padding: 28px; background: rgba(255,255,255,.07); border: 1px solid var(--line-light); transition: transform .26s ease, background-color .26s ease, border-color .26s ease; }
.application-card h3 { font-size: 1.35rem; }
.application-card p { margin: 0; color: rgba(255,255,255,.7); }

.site-footer { color: var(--white); background: var(--forest-950); }
.footer-main { display: grid; grid-template-columns: 1.35fr .8fr .9fr; gap: 70px; padding: 68px 0 48px; }
.footer-brand .brand__logo { width: 300px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { max-width: 430px; margin-top: 22px; color: rgba(255,255,255,.66); }
.site-footer h3 { margin-bottom: 18px; color: var(--white); font-size: 1rem; letter-spacing: .03em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; margin: 0; padding: 0; color: rgba(255,255,255,.72); list-style: none; font-size: .9rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 22px 0 28px; color: rgba(255,255,255,.58); border-top: 1px solid rgba(255,255,255,.12); font-size: .76rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: var(--lime); }
.photo-credit { max-width: 540px; text-align: right; }

.floating-actions { position: fixed; z-index: 90; right: 18px; bottom: 18px; display: grid; gap: 9px; transition: opacity .22s ease, transform .22s ease; }
.floating-actions.is-hidden { opacity: 0; transform: translateY(14px); pointer-events: none; }
.floating-action { display: grid; width: 52px; height: 52px; place-items: center; color: var(--white); background: var(--forest-700); border: 2px solid var(--white); border-radius: 50%; box-shadow: 0 10px 30px rgba(3,43,36,.25); transition: transform .22s ease, box-shadow .22s ease; }
.floating-action--whatsapp { background: #128c4b; }
.floating-action svg { width: 23px; height: 23px; }

.legal { max-width: 850px; }
.legal h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
.legal h2 { margin-top: 52px; font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
.legal p { color: #405b51; }
.success-panel { max-width: 840px; margin-inline: auto; padding: 55px; background: var(--white); border: 1px solid var(--line); box-shadow: 10px 10px 0 var(--lime); text-align: center; }
.success-panel__icon { display: grid; width: 64px; height: 64px; margin: 0 auto 18px; place-items: center; color: var(--white); background: var(--forest-700); }
.success-panel__icon svg { width: 32px; height: 32px; }
.success-panel .eyebrow { color: var(--forest-700); }
.success-panel .lead { color: var(--muted); }
.success-panel .btn--outline { color: var(--forest-900); border-color: var(--forest-900); }

.motion-enabled .reveal-item {
  transform: translate3d(0, 24px, 0);
  transition: transform .62s cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms);
  will-change: transform;
}
.motion-enabled .reveal-item.is-revealed {
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@keyframes scenic-drift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.055) translate3d(-.4%, -.35%, 0); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translate3d(0, 20px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__copy > *,
  .page-hero__inner > :first-child > * {
    animation: hero-copy-in .68s cubic-bezier(.2,.75,.25,1) both;
  }
  .hero__copy > :nth-child(2), .page-hero__inner > :first-child > :nth-child(2) { animation-delay: 70ms; }
  .hero__copy > :nth-child(3), .page-hero__inner > :first-child > :nth-child(3) { animation-delay: 140ms; }
  .hero__copy > :nth-child(4), .page-hero__inner > :first-child > :nth-child(4) { animation-delay: 210ms; }
  .hero__copy > :nth-child(5) { animation-delay: 280ms; }
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover svg { transform: translateX(3px); }
  .scope-card:hover { z-index: 1; background: var(--mint-soft); transform: translateY(-4px); }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(3,43,36,.14); }
  .process__step:hover::before { transform: translateY(-4px) rotate(-3deg); }
  .paint-brand-logo:hover img { transform: scale(1.06); }
  .material-point:hover { background: var(--white); transform: translateX(5px); }
  .local-story:hover .local-story__image img { transform: scale(1.035); }
  .contact-line:hover { transform: translateX(4px); box-shadow: var(--shadow-soft); }
  .contact-line:hover .contact-line__icon { transform: rotate(-4deg) scale(1.04); }
  .faq-list summary:hover::after { transform: rotate(8deg); }
  .faq-list details[open] summary:hover::after { transform: rotate(0); }
  .application-card:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.32); transform: translateY(-4px); }
  .floating-action:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 16px 34px rgba(3,43,36,.3); }
}

@media (max-width: 1120px) {
  .brand__logo { width: 245px; }
  .nav { gap: 16px; }
  .nav > a:not(.btn) { font-size: .8rem; }
  .hero__grid { min-height: 640px; grid-template-columns: 1fr 1fr; }
  .hero__copy { padding-right: 46px; }
  .quote-layout { grid-template-columns: .82fr 1.18fr; gap: 34px; }
}

@media (max-width: 980px) {
  html { scroll-padding-top: 86px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .topbar p { display: none; }
  .topbar__inner { justify-content: flex-end; }
  .site-header__inner { min-height: 72px; }
  .brand__logo { width: 235px; max-height: 58px; }
  .menu-toggle { display: grid; }
  .nav { position: fixed; z-index: 99; top: 109px; right: 0; bottom: 0; left: 0; display: none; align-content: start; align-items: stretch; gap: 0; padding: 28px 24px 40px; overflow-y: auto; background: var(--paper); }
  .nav.is-open { display: grid; }
  .nav > a:not(.btn) { padding: 17px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav > a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 22px; min-height: 52px; }
  .hero__grid { width: 100%; min-height: auto; grid-template-columns: 1fr; }
  .hero__copy { width: min(calc(100% - 30px), var(--container)); margin-inline: auto; padding: 66px 0 58px; }
  .hero__copy::after { display: none; }
  .hero__media { min-height: 480px; }
  .hero__media img { width: 100%; }
  .brand-intro, .material-layout, .area-layout, .quote-layout, .local-story, .page-hero__inner { grid-template-columns: 1fr; }
  .brand-intro { gap: 40px; }
  .brand-intro__statement { padding-right: 0; padding-bottom: 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .material-layout__intro, .quote-intro, .side-card { position: static; }
  .process { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process__step:nth-child(2) { margin-right: 0; border-right: 0; }
  .process__step:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .local-story__image { min-height: 460px; }
  .tax-card { grid-template-columns: 125px 1fr; }
  .page-hero__inner { padding-top: 65px; }
  .page-hero__image { min-height: 440px; margin: 20px calc((min(100vw - 30px, var(--container)) - 100vw) / 2) 0; }
  .content-grid { grid-template-columns: 1fr; gap: 45px; }
  .side-card { max-width: 650px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .section { padding: 72px 0; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.4rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3.25rem); }
  .topbar__links { width: 100%; justify-content: space-between; }
  .brand__logo { width: 205px; }
  .site-header__inner > .btn { min-height: 44px; padding: 9px 11px; font-size: .78rem; }
  .nav { top: 109px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.55rem); }
  .hero__copy { padding: 54px 0 48px; }
  .hero__media { min-height: 390px; }
  .hero__caption { right: 14px; bottom: 14px; left: 14px; }
  .motion-enabled .reveal-item { transform: translate3d(0, 16px, 0); }
  .motion-enabled .reveal-item.is-revealed { transform: translate3d(0, 0, 0); }
  .hero__media img, .page-hero__image img { animation: none; transform: none; will-change: auto; }
  .scope-grid, .tax-grid, .form-grid, .application-grid { grid-template-columns: 1fr; }
  .scope-card { min-height: 0; padding: 28px; }
  .scope-card:not(:last-child) { border-right: 0; border-bottom: 1px solid var(--line); }
  .scope-card > span { margin-bottom: 24px; }
  .service-card:nth-child(n) { grid-column: 1 / -1; }
  .service-card--text { min-height: 290px; }
  .process { grid-template-columns: 1fr; }
  .process__step, .process__step:not(:last-child) { margin-right: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .process__step:last-child { border-bottom: 0; }
  .paint-brand-logo { width: 170px; flex-basis: 170px; }
  .local-story__image { min-height: 340px; }
  .local-story__body { padding: 34px 25px; }
  .tax-card { grid-template-columns: 1fr; }
  .tax-card__rate { min-height: 120px; }
  .area-name-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 25px 18px; }
  .choice-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .cta-band { align-items: flex-start; flex-direction: column; padding: 32px 24px; }
  .page-hero__inner { padding-top: 55px; }
  .page-hero h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .legal h1 { font-size: clamp(2.15rem, 10vw, 3.2rem); }
  .page-hero__image { min-height: 340px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; padding: 54px 0 38px; }
  .footer-brand { grid-column: auto; }
  .footer-brand .brand__logo { width: 250px; }
  .footer-bottom { flex-direction: column; }
  .photo-credit { max-width: none; text-align: left; }
  .floating-actions { right: 12px; bottom: 12px; grid-template-columns: repeat(2, 48px); }
  .floating-action { width: 48px; height: 48px; }
  .success-panel { padding: 36px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .ticker { overflow-x: auto; contain: none; }
  .ticker__track { width: 100%; animation: none !important; transform: none !important; will-change: auto; }
  .ticker__group { width: 100%; min-width: 0 !important; flex-wrap: wrap; justify-content: center; padding-block: 14px; white-space: normal; }
  .ticker__group[aria-hidden="true"] { display: none !important; }
  .paint-brand-logo { flex-basis: calc(50% - 1px); }
  .motion-enabled .reveal-item, .motion-enabled .reveal-item.is-revealed { transform: none !important; will-change: auto; }
}
