:root {
  --bg: #020202;
  --panel: #070707;
  --panel-soft: #10100d;
  --ink: #f5f2e9;
  --muted: #c9c4b9;
  --yellow: #efb517;
  --yellow-deep: #b57900;
  --line: rgba(239, 181, 23, 0.74);
  --white-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  --condensed: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --body: "Oswald", Arial, sans-serif;
  --marker: "Permanent Marker", "Comic Sans MS", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  margin: 0;
  min-width: 320px;
  width: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 170px 170px,
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 140px 140px,
    var(--bg);
  color: var(--ink);
  font-family: var(--body);
  letter-spacing: 0;
  max-width: 100%;
  position: relative;
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip !important;
  }
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(239, 181, 23, 0.035) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
}

.section-shell {
  width: min(1320px, calc(100% - 42px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  width: min(1320px, calc(100% - 42px));
  min-height: 108px;
  margin-inline: auto;
  padding: 18px 0;
  background: rgba(2, 2, 2, 0.74);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: min-height 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  border-color: rgba(239, 181, 23, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 220px;
  font-family: var(--condensed);
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-main {
  font-size: clamp(1.95rem, 4vw, 3rem);
  line-height: 0.88;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.15);
}

.brand-tag,
.paint-label,
.tier-tag {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  background: var(--yellow);
  font-family: var(--marker);
  line-height: 1;
  transform: rotate(-2deg);
}

.brand-tag {
  min-width: 92px;
  padding: 8px 14px 10px;
  font-size: 1.05rem;
}

.brand-tag::before,
.paint-label::before,
.tier-tag::before {
  content: "";
  position: absolute;
  inset: -4px -9px;
  z-index: -1;
  background:
    linear-gradient(94deg, transparent 0 4%, var(--yellow) 4% 92%, transparent 92%),
    linear-gradient(177deg, transparent 0 8%, rgba(0, 0, 0, 0.18) 8% 13%, transparent 13% 100%);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 64px);
  font-family: var(--condensed);
  text-transform: uppercase;
  font-size: 1.15rem;
}

.site-nav a {
  position: relative;
  color: var(--ink);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.site-nav a.is-current {
  color: var(--yellow);
}

.header-cta {
  justify-self: end;
  min-width: 190px;
  padding: 17px 20px;
  border: 2px solid var(--line);
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 1.15rem;
  line-height: 1.02;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(239, 181, 23, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #080808;
  color: var(--yellow);
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
  align-items: end;
  min-height: 650px;
  padding: 48px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 50px 0 76px 54px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 135px;
  width: 34px;
  height: 54px;
  background:
    linear-gradient(90deg, transparent 42%, #fff 42% 48%, transparent 48%),
    linear-gradient(35deg, transparent 45%, #fff 45% 51%, transparent 51%),
    linear-gradient(-35deg, transparent 45%, #fff 45% 51%, transparent 51%);
  transform: rotate(-11deg);
  opacity: 0.86;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  text-transform: uppercase;
}

.eyebrow strong {
  color: var(--yellow);
}

.hero h1,
.section-heading h2,
.about h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--condensed);
  font-weight: 400;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(5.4rem, 13vw, 10.25rem);
  line-height: 0.78;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
  text-shadow: 4px 4px 0 rgba(255, 255, 255, 0.08);
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--yellow);
  font-family: var(--marker);
  font-size: 0.58em;
  font-style: normal;
  text-transform: uppercase;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -48px;
  bottom: -19px;
  height: 13px;
  background: var(--ink);
  clip-path: polygon(0 44%, 84% 28%, 100% 48%, 17% 78%);
}

.hero-text {
  max-width: 560px;
  margin: 54px 0 34px;
  color: var(--muted);
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  line-height: 1.45;
}

.paint-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 92px;
  padding: 18px 30px;
  border: 0;
  color: #070707;
  background: var(--yellow);
  box-shadow: 0 8px 0 rgba(122, 80, 0, 0.36), inset 0 0 0 2px rgba(0, 0, 0, 0.13);
  transform: rotate(-0.5deg);
}

.paint-button::before {
  content: "";
  position: absolute;
  inset: -5px -8px;
  z-index: -1;
  border: 1px solid rgba(239, 181, 23, 0.25);
  background:
    linear-gradient(90deg, transparent 0 2%, var(--yellow) 2% 96%, transparent 96%),
    repeating-linear-gradient(178deg, rgba(0, 0, 0, 0.11) 0 1px, transparent 1px 5px);
  transform: rotate(0.8deg);
}

.paint-button svg {
  width: 44px;
  height: 44px;
  stroke-width: 2.2;
  flex: 0 0 auto;
}

.paint-button span {
  display: grid;
  gap: 2px;
  text-align: left;
}

.paint-button strong {
  font-family: var(--condensed);
  font-size: clamp(1.65rem, 3vw, 2.12rem);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}

.paint-button small {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  min-height: 630px;
  overflow: hidden;
}

.hero-art::before {
  content: none;
  display: none;
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: min(680px, 108%);
  max-width: none;
  margin-left: 0;
  filter: none;
  mix-blend-mode: normal;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  border: 2px solid var(--line);
  border-radius: 18px 18px 9px 9px;
  box-shadow: inset 0 0 0 1px rgba(239, 181, 23, 0.16), var(--shadow);
  overflow: hidden;
}

.stat-card {
  min-height: 235px;
  padding: 38px 32px 31px;
  background: rgba(4, 4, 4, 0.72);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card svg {
  width: 54px;
  height: 54px;
  color: var(--yellow);
  stroke-width: 1.8;
  margin-bottom: 20px;
}

.stat-card strong {
  display: block;
  font-family: var(--condensed);
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.stat-card span {
  display: block;
  margin: 14px 0 8px;
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.stat-card p,
.service-card p,
.about p,
.process-step p,
.final-cta p {
  color: var(--muted);
  line-height: 1.5;
}

.stat-card p {
  margin: 0;
  font-size: 1.1rem;
}

.brand-strip {
  padding: 52px 0 46px;
  text-align: center;
}

.brand-strip p {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 26px;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 1.4rem;
  text-transform: uppercase;
}

.brand-strip p span {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--yellow);
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 7vw, 72px);
}

.brand-logos strong {
  position: relative;
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  line-height: 1;
}

.brand-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-item img {
  width: clamp(38px, 4.8vw, 62px);
  height: clamp(38px, 4.8vw, 62px);
  object-fit: contain;
  flex: 0 0 auto;
}

.services {
  padding: 24px 0 46px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.paint-label {
  min-width: 230px;
  padding: 8px 22px 11px;
  color: #050505;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
}

.section-heading h2 {
  position: relative;
  display: block;
  margin-top: 20px;
  font-size: clamp(5.4rem, 14vw, 8.7rem);
  line-height: 0.82;
}

.section-heading h2::before,
.section-heading h2::after {
  content: "";
  position: absolute;
  top: 44%;
  width: 48px;
  height: 54px;
  background:
    linear-gradient(90deg, transparent 43%, var(--ink) 43% 50%, transparent 50%),
    linear-gradient(35deg, transparent 45%, var(--ink) 45% 51%, transparent 51%),
    linear-gradient(-35deg, transparent 45%, var(--ink) 45% 51%, transparent 51%);
  opacity: 0.86;
}

.section-heading h2::before {
  left: -70px;
  transform: rotate(-55deg);
}

.section-heading h2::after {
  right: -70px;
  transform: rotate(55deg);
}

.section-heading p {
  margin: 12px 0 30px;
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 32px;
  margin-top: 26px;
}

.service-card {
  position: relative;
  grid-column: span 2;
  min-height: 500px;
  padding: 38px 36px 32px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.005)),
    var(--panel);
  box-shadow: inset 0 0 0 1px rgba(239, 181, 23, 0.13);
}

.service-card::after,
.final-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.service-card::after {
  inset: 8px;
  border: 1px solid rgba(239, 181, 23, 0.12);
}

.service-card-wide {
  grid-column: span 3;
  min-height: 345px;
}

.tier-tag {
  position: absolute;
  top: 28px;
  left: 50%;
  min-width: 164px;
  padding: 10px 24px 12px;
  font-size: 1.55rem;
  transform: translateX(-50%) rotate(-3deg);
}

.service-card > svg {
  display: block;
  width: 88px;
  height: 88px;
  margin: 78px auto 24px;
  color: var(--yellow);
  stroke-width: 1.4;
}

.service-card h3,
.process-step h3 {
  margin: 0 0 20px;
  font-family: var(--condensed);
  font-weight: 400;
  line-height: 0.98;
  text-align: center;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: clamp(2.1rem, 3vw, 2.85rem);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.2;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 17px;
  height: 17px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
}

.service-card li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.34em;
  width: 11px;
  height: 6px;
  border-left: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
  transform: rotate(-42deg);
}

.service-card p {
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.service-card p strong {
  display: block;
  margin-bottom: 5px;
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
}

.service-card-wide {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  column-gap: 34px;
  align-items: center;
}

.service-card-wide .tier-tag {
  top: 31px;
  left: 50%;
}

.service-card-wide > svg {
  grid-row: span 3;
  margin: 0;
}

.service-card-wide h3 {
  text-align: left;
  margin-top: 50px;
}

.service-card-wide ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card-wide p {
  grid-column: 1 / -1;
}

.about {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
  padding: 26px 0 42px;
}

.about-photo {
  position: relative;
}

.about-photo::before {
  content: none;
  display: none;
}

.about-photo img {
  position: relative;
  aspect-ratio: 1;
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  filter: none;
}

.about-copy .paint-label {
  min-width: 236px;
  margin-bottom: 18px;
}

.about h2 {
  font-size: clamp(3.3rem, 6vw, 5rem);
  line-height: 0.94;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  margin-top: 22px;
}

.about-columns p {
  margin: 0;
  font-size: clamp(1.06rem, 2vw, 1.22rem);
}

.about-columns p + p {
  padding-left: 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.19);
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 16px 0 30px;
}

.process-step {
  border-top: 2px solid var(--line);
  padding-top: 19px;
}

.process-step span {
  color: var(--yellow);
  font-family: var(--marker);
  font-size: 1.25rem;
}

.process-step h3 {
  margin: 8px 0 8px;
  text-align: left;
  font-size: 2.35rem;
}

.process-step p {
  margin: 0;
  font-size: 1.08rem;
}

.testimonial {
  padding: 16px 0 34px;
  scroll-margin-top: 110px;
}

.testimonial-heading {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-bottom: 26px;
  text-align: center;
}

.testimonial-heading .paint-label {
  min-width: 190px;
}

.testimonial-heading h2 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(3.6rem, 8vw, 6.6rem);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
}

.testimonial blockquote {
  margin: 0;
  padding: 26px 34px;
  border-left: 4px solid var(--yellow);
  color: var(--ink);
  font-family: var(--marker);
  font-size: clamp(1.3rem, 3vw, 2.05rem);
  text-align: center;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  margin-bottom: 32px;
  padding: 34px 44px;
  border: 2px solid var(--line);
  border-radius: 9px;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px rgba(239, 181, 23, 0.12), var(--shadow);
}

.final-cta::after {
  inset: 8px;
  border: 1px solid rgba(239, 181, 23, 0.11);
}

.cta-icon {
  display: grid;
  place-items: center;
  width: clamp(120px, 16vw, 185px);
  aspect-ratio: 1;
  color: var(--ink);
}

.cta-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.15;
}

.final-cta h2 {
  font-size: clamp(3.5rem, 8vw, 6.4rem);
  line-height: 0.82;
}

.final-cta h2 em {
  display: block;
  color: var(--yellow);
  font-family: var(--marker);
  font-size: 0.58em;
  font-style: normal;
}

.final-cta p {
  max-width: 570px;
  margin: 18px 0 0;
  font-size: 1.2rem;
}

.final-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  align-self: center;
  justify-items: stretch;
  min-width: min(100%, 430px);
  transform: translateY(-10px);
}

.final-actions .paint-button {
  width: 100%;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 24px;
  border: 2px solid var(--line);
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.44);
  font-family: var(--condensed);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(239, 181, 23, 0.13);
}

.contact-button svg {
  width: 25px;
  height: 25px;
  stroke-width: 2;
}

.booking-panel {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 10px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #020202;
  box-shadow: inset 0 0 0 1px rgba(239, 181, 23, 0.12);
  scroll-margin-top: 100px;
}

.booking-panel .calendly-inline-widget {
  min-width: 280px;
  height: min(78vh, 740px);
  border-radius: 6px;
  overflow: hidden;
}

.page-hero {
  padding: 86px 0 48px;
}

.page-hero-inner {
  display: grid;
  gap: 22px;
  max-width: 980px;
}

.page-kicker {
  color: var(--yellow);
  font-family: var(--marker);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(5.2rem, 12vw, 10rem);
  font-weight: 400;
  line-height: 0.84;
  text-transform: uppercase;
}

.page-hero p,
.content-page p,
.detail-card p,
.outcome-box p {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

.content-page {
  display: grid;
  gap: 34px;
  padding: 10px 0 58px;
}

.copy-block,
.detail-card,
.outcome-banner {
  border: 2px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.005)),
    var(--panel);
  box-shadow: inset 0 0 0 1px rgba(239, 181, 23, 0.12);
}

.copy-block {
  padding: clamp(24px, 4vw, 46px);
}

.copy-block h2,
.detail-card h2,
.outcome-banner h2 {
  margin: 0 0 14px;
  font-family: var(--condensed);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.copy-block h3,
.detail-card h3 {
  margin: 24px 0 10px;
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 400;
  text-transform: uppercase;
}

.copy-block p,
.detail-card p {
  margin: 0 0 18px;
}

.copy-block ul,
.detail-card ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.copy-block li,
.detail-card li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.35;
}

.copy-block li::before,
.detail-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.24em;
  width: 16px;
  height: 16px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
}

.copy-block li::after,
.detail-card li::after,
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.42em;
  width: 9px;
  height: 5px;
  border-left: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
  transform: rotate(-42deg);
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: rgba(239, 181, 23, 0.28);
}

.credibility-strip span {
  display: grid;
  gap: 6px;
  padding: 24px;
  background: var(--panel);
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  text-transform: uppercase;
}

.credibility-strip small {
  color: var(--muted);
  font-family: var(--body);
  font-size: 1rem;
  text-transform: none;
}

.detail-grid {
  display: grid;
  gap: 28px;
}

.detail-card {
  position: relative;
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.detail-card header {
  display: grid;
  gap: 12px;
}

.detail-card .tier-tag {
  position: static;
  justify-self: start;
  transform: rotate(-2deg);
}

.best-for {
  padding: 16px 18px;
  border-left: 4px solid var(--yellow);
  background: rgba(239, 181, 23, 0.08);
  color: var(--ink);
  font-size: 1.14rem;
}

.outcome-box {
  padding: 18px;
  border: 1px solid rgba(239, 181, 23, 0.45);
  background: rgba(0, 0, 0, 0.32);
}

.outcome-box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 1.35rem;
  font-weight: 400;
  text-transform: uppercase;
}

.outcome-banner {
  padding: clamp(26px, 4vw, 44px);
  text-align: center;
}

.outcome-lines {
  display: grid;
  gap: 8px;
  margin: 12px 0 26px;
  color: var(--ink);
  font-family: var(--marker);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.site-footer {
  width: min(1320px, calc(100% - 42px));
  margin: 0 auto;
  padding: 12px 0 38px;
  color: rgba(245, 242, 233, 0.62);
  font-size: 1rem;
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 82px;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 82px 18px auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(3, 3, 3, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 1.35rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 20px;
  }

  .hero-copy {
    padding: 30px 0 10px;
  }

  .hero-copy::before {
    left: -8px;
    top: 112px;
    width: 26px;
    height: 42px;
  }

  .hero h1 {
    max-width: 850px;
  }

  .hero-art {
    justify-content: center;
    min-height: 420px;
    margin-top: -8px;
  }

  .hero-art::before {
    left: calc(50% - 28px);
    right: auto;
    bottom: 170px;
    width: min(55vw, 360px);
    transform: translateX(-50%) rotate(7deg);
  }

  .hero-art img {
    width: min(640px, 104%);
    margin-left: 0;
  }

  .stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card:nth-child(2) {
    border-right: 0;
  }

  .stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .service-card,
  .service-card-wide {
    grid-column: span 3;
  }

  .service-card-wide {
    display: block;
  }

  .service-card-wide > svg {
    margin: 78px auto 24px;
  }

  .service-card-wide h3 {
    margin-top: 0;
    text-align: center;
  }

  .service-card-wide ul {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-columns: 230px 1fr;
    gap: 38px;
  }

  .about-photo img {
    width: 230px;
    height: 230px;
  }

  .final-cta {
    grid-template-columns: auto 1fr;
  }

  .final-actions {
    grid-column: 1 / -1;
    justify-self: start;
    width: min(100%, 430px);
  }

  .booking-panel {
    scroll-margin-top: 86px;
  }

  .credibility-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .section-shell,
  .site-header,
  .site-footer {
    width: min(100% - 28px, 520px);
  }

  .site-header {
    min-height: 74px;
    gap: 16px;
    padding: 12px 0;
  }

  .brand {
    gap: 8px;
  }

  .brand-main {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .brand-tag {
    min-width: 70px;
    padding: 7px 10px 8px;
    font-size: 0.86rem;
  }

  .site-nav {
    inset: 74px 14px auto;
  }

  .hero {
    padding-top: 4px;
    border-bottom: 0;
  }

  .hero-copy {
    padding-top: 20px;
  }

  .hero-copy::before {
    display: none;
  }

  .eyebrow {
    max-width: 320px;
    margin-bottom: 20px;
    font-size: 0.98rem;
  }

  .hero h1 {
    font-size: clamp(4.15rem, 18vw, 6.2rem);
  }

  .hero h1 em::after {
    right: -20px;
    bottom: -12px;
    height: 8px;
  }

  .hero-text {
    margin: 38px 0 24px;
    font-size: 1.2rem;
  }

  .paint-button {
    width: 100%;
    min-height: 78px;
    gap: 13px;
    padding: 16px 18px;
  }

  .paint-button svg {
    width: 34px;
    height: 34px;
  }

  .paint-button strong {
    font-size: 1.48rem;
  }

  .paint-button small {
    font-size: 0.82rem;
  }

  .hero-art {
    min-height: 335px;
    margin-top: -2px;
  }

  .hero-art::before {
    left: calc(50% + 8px);
    right: auto;
    bottom: 205px;
    width: 215px;
    border-width: 8px;
    transform: translateX(-50%) rotate(7deg);
  }

  .hero-art img {
    width: min(470px, 118%);
  }

  .stats-panel {
    grid-template-columns: 1fr;
    margin-top: 8px;
    border-radius: 12px;
  }

  .stat-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 18px;
    min-height: 0;
    padding: 25px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .stat-card svg {
    grid-row: 1 / span 3;
    width: 50px;
    height: 50px;
    margin: 0;
  }

  .stat-card strong {
    font-size: 3.15rem;
  }

  .stat-card span {
    margin: 8px 0 4px;
  }

  .brand-strip {
    padding: 36px 0 30px;
  }

  .brand-strip p {
    font-size: 1.05rem;
  }

  .brand-strip p span {
    width: 18px;
  }

  .brand-logos {
    gap: 20px 28px;
  }

  .brand-logos strong {
    font-size: 2rem;
  }

  .section-heading h2 {
    font-size: clamp(4.9rem, 22vw, 6.6rem);
  }

  .section-heading h2::before,
  .section-heading h2::after {
    width: 30px;
    height: 36px;
  }

  .section-heading h2::before {
    left: -40px;
  }

  .section-heading h2::after {
    right: -40px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card,
  .service-card-wide {
    grid-column: auto;
    min-height: 0;
    padding: 32px 26px 28px;
  }

  .service-card > svg,
  .service-card-wide > svg {
    width: 74px;
    height: 74px;
    margin: 72px auto 22px;
  }

  .tier-tag {
    top: 24px;
    min-width: 150px;
    font-size: 1.32rem;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
  }

  .about-photo img {
    width: min(270px, 72vw);
    height: min(270px, 72vw);
  }

  .about-copy {
    width: 100%;
  }

  .about h2 {
    font-size: clamp(2.85rem, 13vw, 4.25rem);
  }

  .about-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-columns p + p {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.19);
  }

  .process {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .testimonial blockquote {
    padding: 20px 0 20px 20px;
    text-align: left;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 22px;
  }

  .cta-icon {
    width: 104px;
  }

  .final-cta h2 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .final-actions {
    justify-self: stretch;
    width: 100%;
    transform: none;
  }

  .contact-button {
    min-height: 54px;
    font-size: 1.38rem;
  }

  .booking-panel {
    padding: 6px;
    scroll-margin-top: 76px;
  }

  .booking-panel .calendly-inline-widget {
    height: 690px;
  }

  .page-hero {
    padding: 44px 0 28px;
  }

  .page-hero h1 {
    font-size: clamp(4.5rem, 18vw, 6.4rem);
  }

  .copy-block,
  .detail-card,
  .outcome-banner {
    padding: 24px 20px;
  }

  .credibility-strip {
    grid-template-columns: 1fr;
  }

  .credibility-strip span {
    padding: 20px;
  }
}

@media (max-width: 410px) {
  .hero h1 {
    font-size: 3.95rem;
  }

  .paint-label {
    min-width: 196px;
  }

  .section-heading h2::before,
  .section-heading h2::after {
    display: none;
  }

  .service-card {
    padding-inline: 21px;
  }
}
