:root {
  --ink: #17201d;
  --muted: #58645f;
  --paper: #fbfaf7;
  --surface: #eef3ef;
  --line: #d7ded8;
  --accent: #b24f34;
  --accent-dark: #873820;
  --green: #275f5d;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(23, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 1px solid rgba(223, 208, 190, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font-weight: 800;
  box-shadow: inset 0 -7px 0 rgba(0, 0, 0, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(168, 78, 43, 0.1);
}

.site-nav .nav-phone {
  color: var(--white);
  background: var(--green);
}

.site-nav .nav-phone:hover {
  color: var(--white);
  background: #315242;
}

.nav-toggle {
  display: none;
  min-height: 44px;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(38px, 7vw, 96px) clamp(18px, 6vw, 80px);
  background:
    linear-gradient(90deg, rgba(23, 32, 29, 0.86), rgba(23, 32, 29, 0.46), rgba(251, 250, 247, 0.1)),
    radial-gradient(circle at 78% 40%, rgba(178, 79, 52, 0.26), transparent 34%),
    linear-gradient(135deg, #123c3a, #275f5d 48%, #edf2ef 49%, #fbfaf7);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--paper), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd5bf;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: var(--accent);
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.final-cta .btn.secondary,
.subpage-hero .btn.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.hero-summary {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-summary div {
  padding: 16px;
  background: rgba(23, 32, 29, 0.24);
}

.hero-summary strong,
.hero-summary span {
  display: block;
}

.hero-summary span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.paint-roll {
  position: absolute;
  right: clamp(30px, 9vw, 130px);
  top: 18%;
  width: clamp(150px, 22vw, 320px);
  height: clamp(150px, 22vw, 320px);
  border: 28px solid rgba(255, 250, 241, 0.2);
  border-radius: 50%;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.22);
}

.paint-line {
  position: absolute;
  right: -8vw;
  width: 42vw;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.2);
  transform: rotate(-16deg);
}

.line-one {
  top: 44%;
}

.line-two {
  top: 54%;
  background: rgba(168, 78, 43, 0.36);
}

.line-three {
  top: 64%;
  background: rgba(66, 103, 86, 0.34);
}

.section,
.services-band,
.trust-strip,
.quick-request,
.faq,
.work-list,
.values,
.contact-layout,
.final-cta,
.subpage-hero {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 6vw, 80px);
}

.section {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr);
  gap: clamp(26px, 7vw, 96px);
  align-items: start;
}

.section-label {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.section-copy {
  max-width: 860px;
}

.section-copy p,
.trust-strip p,
.subpage-hero p,
.final-cta p,
.request-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.services-band {
  background: var(--surface);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-grid span {
  color: var(--accent);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--accent-dark);
  font-weight: 900;
}

.steps {
  max-width: 900px;
}

.steps ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 190px;
  padding: 58px 22px 22px;
  border-top: 3px solid var(--accent);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 32, 29, 0.08);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 18px;
  left: 22px;
  color: var(--accent);
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 8px;
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  color: var(--white);
  background: var(--green);
}

.trust-strip .eyebrow {
  color: #dbf0e5;
}

.trust-strip p {
  color: rgba(255, 255, 255, 0.84);
}

.quick-request {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.request-form {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

.phone-fallback {
  color: var(--accent-dark);
  font-weight: 900;
}

.faq {
  background: var(--paper);
}

details {
  max-width: 920px;
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  min-height: 56px;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 900;
}

details p {
  max-width: 760px;
  color: var(--muted);
}

.final-cta {
  text-align: center;
  background: var(--surface);
}

.final-cta h2,
.final-cta p,
.final-cta .hero-actions {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 28px;
  padding: 36px clamp(18px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.84);
  background: var(--ink);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer a,
.site-footer span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.subpage-hero {
  min-height: 430px;
  display: grid;
  align-content: center;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.96), rgba(255, 250, 241, 0.86)),
    repeating-linear-gradient(-14deg, rgba(168, 78, 43, 0.2) 0 18px, rgba(66, 103, 86, 0.15) 18px 36px);
}

.subpage-hero h1 {
  max-width: 900px;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  color: var(--ink);
}

.subpage-hero p {
  max-width: 760px;
}

.subpage-hero .btn {
  width: fit-content;
}

.work-list,
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  padding-top: 1px;
  padding-bottom: 1px;
}

.work-list article,
.values article {
  padding: clamp(28px, 5vw, 54px);
  background: var(--paper);
}

.work-list ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.work-list li + li {
  margin-top: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 40px;
}

.contact-details,
.contact-note {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

dt {
  color: var(--muted);
  font-weight: 900;
}

dd {
  margin: 2px 0 0;
}

.contact-note p {
  color: var(--muted);
}

.contact-request {
  background: var(--surface);
}

.reveal {
  animation: riseIn 720ms ease both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 6px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-request,
  .trust-strip,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding: 32px 18px 38px;
    align-items: start;
  }

  .hero::after {
    height: 40px;
  }

  .hero-content {
    padding-top: 4px;
  }

  h1 {
    font-size: clamp(2.1rem, 12vw, 3.15rem);
    line-height: 1.03;
  }

  .hero-text {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-summary {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .hero-summary div {
    padding: 12px 14px;
  }

  .paint-roll {
    right: -62px;
    top: 12px;
    width: 150px;
    height: 150px;
    border-width: 18px;
  }

  .paint-line {
    display: none;
  }

  .section,
  .services-band,
  .trust-strip,
  .quick-request,
  .faq,
  .work-list,
  .values,
  .contact-layout,
  .final-cta,
  .subpage-hero {
    padding: 46px 18px;
  }

  .section,
  .steps ol,
  .work-list,
  .values,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .steps li {
    min-height: auto;
  }

  .subpage-hero {
    min-height: 360px;
  }

  .subpage-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .site-footer {
    gap: 18px;
  }
}
