@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Fira+Sans:wght@400;500;600;700&display=swap");

:root {
  --yellow: #ffe000;
  --yellow-deep: #f3cf00;
  --red: #e12a24;
  --ink: #171715;
  --ink-soft: #2a2a27;
  --paper: #fffdf7;
  --cream: #f3eee1;
  --warm: #e7dfcf;
  --muted: #69665e;
  --line: #d8d0bf;
  --white: #ffffff;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --shadow-sm: 0 10px 28px rgba(23, 23, 21, 0.08);
  --shadow-lg: 0 28px 70px rgba(10, 10, 9, 0.28);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Fira Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

::selection {
  color: var(--ink);
  background: var(--yellow);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.utility-bar {
  color: #f8f5eb;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.utility-inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-inner p {
  margin: 0;
}

.utility-rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 34px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.brand-name {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}

.brand-name small {
  display: block;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
}

.brand-location {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
  background: #ffea3d;
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}

.button:focus-visible,
.text-link:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--red);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--white);
  box-shadow: 2px 2px 0 var(--red);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 84px;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 224, 0, 0.11), transparent 28%),
    linear-gradient(135deg, #191917 0%, #0f0f0e 100%);
}

.hero::before {
  position: absolute;
  top: -40px;
  right: -100px;
  width: 48vw;
  height: 190px;
  content: "";
  opacity: 0.96;
  background: var(--yellow);
  clip-path: polygon(13% 0, 100% 0, 100% 65%, 0 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  height: 18px;
  content: "";
  background: repeating-linear-gradient(135deg, var(--yellow) 0 14px, var(--ink) 14px 28px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  gap: clamp(48px, 6vw, 86px);
  align-items: start;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 4px;
  content: "";
  background: var(--red);
  transform: skewX(-24deg);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 .signal {
  display: block;
  width: fit-content;
  margin-top: 9px;
  padding: 1px 10px 8px;
  color: var(--ink);
  background: var(--yellow);
  transform: rotate(-1deg);
}

.hero-lede {
  max-width: 650px;
  margin: 30px 0 0;
  color: #dedbd1;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: #f4f1e8;
  font-size: 14px;
  font-weight: 600;
}

.hero-points li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 11px;
  height: 11px;
  content: "";
  background: var(--yellow);
  border: 2px solid var(--ink);
  outline: 1px solid var(--yellow);
  transform: rotate(45deg);
}

.hero-jump {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration-thickness: 2px;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.hero-source {
  margin: 14px 0 0;
  color: #8f8c83;
  font-size: 10px;
  line-height: 1.4;
}

.hero-jump span {
  font-size: 20px;
  line-height: 1;
}

.hero-action {
  position: relative;
}

.hero-media {
  position: relative;
  overflow: hidden;
  margin: 0 0 0 34px;
  border: 6px solid var(--paper);
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.15deg);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(8, 8, 7, 0.76) 100%);
}

.hero-media > img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
}

.media-kicker {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.media-title {
  display: block;
  margin-top: 3px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.media-chip {
  flex: 0 0 auto;
  padding: 7px 9px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-vehicle {
  position: absolute;
  z-index: 5;
  top: 274px;
  right: -34px;
  width: 190px;
  filter: drop-shadow(0 12px 10px rgba(0, 0, 0, 0.35));
  transform: rotate(-3deg);
}

.lead-card {
  position: relative;
  z-index: 4;
  width: calc(100% - 22px);
  margin: -30px 22px 0 0;
  padding: 27px 30px 24px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--warm);
  border-top: 8px solid var(--yellow);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lead-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.lead-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.form-step {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: #504d46;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffefa;
  border: 1px solid #bbb3a4;
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.03);
  transition: border 150ms ease, box-shadow 150ms ease;
}

.field textarea {
  min-height: 82px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--ink);
}

.lead-card .button {
  width: 100%;
  margin-top: 17px;
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.form-status {
  display: none;
  margin: 15px 0 0;
  padding: 12px 14px;
  color: var(--ink);
  background: #edf7df;
  border-left: 4px solid #5f861c;
  font-size: 13px;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.proof-rail {
  position: relative;
  z-index: 4;
  background: var(--yellow);
  border-bottom: 1px solid #d5bc00;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-item {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 28px;
  border-right: 1px solid rgba(23, 23, 21, 0.24);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-value {
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.proof-copy {
  max-width: 165px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.proof-stars {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  letter-spacing: 1px;
}

.section {
  padding: 110px 0;
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-rule {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 56px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label::before {
  width: 30px;
  height: 4px;
  content: "";
  background: currentColor;
  transform: skewX(-25deg);
}

.section-dark .section-label {
  color: var(--yellow);
}

.section-title {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-title em {
  color: var(--red);
  font-style: normal;
}

.section-dark .section-title em {
  color: var(--yellow);
}

.section-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.section-dark .section-intro {
  color: #c8c4b9;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

a.feature-card {
  display: block;
  min-height: 330px;
  color: inherit;
  text-decoration: none;
}

.card-link {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card.is-dark .card-link {
  color: var(--yellow);
  border-top-color: rgba(255, 255, 255, 0.2);
}

.feature-card.is-yellow .card-link {
  color: var(--ink);
  border-top-color: rgba(23, 23, 21, 0.25);
}

.feature-card:hover {
  box-shadow: 0 18px 38px rgba(23, 23, 21, 0.13);
  transform: translateY(-5px);
}

.feature-card::after {
  position: absolute;
  right: -24px;
  bottom: -38px;
  width: 120px;
  height: 120px;
  content: "";
  opacity: 0.08;
  background: repeating-linear-gradient(135deg, var(--ink) 0 6px, transparent 6px 14px);
  border-radius: 50%;
}

.feature-card.is-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.feature-card.is-yellow {
  background: var(--yellow);
  border-color: #d5bc00;
}

.feature-number {
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  margin-bottom: 54px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.feature-card.is-yellow .feature-number {
  color: var(--white);
  background: var(--ink);
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.feature-card.is-dark p {
  color: #c9c5bb;
}

.feature-card.is-yellow p {
  color: #3e3b34;
}

.craft-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.craft-media {
  position: relative;
  min-height: 470px;
}

.craft-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 48%, var(--ink) 100%);
}

.craft-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px 64px 62px 42px;
}

.craft-copy::before {
  position: absolute;
  top: 0;
  right: 34px;
  width: 78px;
  height: 9px;
  content: "";
  background: var(--red);
}

.craft-quote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.craft-quote strong {
  color: var(--yellow);
  font-weight: inherit;
}

.craft-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #c7c4ba;
  font-size: 16px;
}

.metric-stage {
  padding: 38px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.metric-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 110px;
  gap: 20px;
  align-items: center;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-row:last-of-type {
  border-bottom: 0;
}

.metric-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric-track {
  height: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 999px;
}

.metric-bar {
  display: block;
  height: 100%;
  background: #8d8b83;
  border-radius: inherit;
}

.metric-bar.is-yellow {
  background: var(--yellow);
}

.metric-value {
  color: #bcb8ad;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.metric-row.is-highlight .metric-label,
.metric-row.is-highlight .metric-value {
  color: var(--yellow);
}

.source-note {
  margin: 16px 0 0;
  color: #8a867c;
  font-size: 11px;
  line-height: 1.5;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.coverage-pill {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.coverage-pill span {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.price-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 20px;
  padding: 32px 38px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: 8px 8px 0 var(--ink);
}

.price-callout h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.price-callout p {
  margin: 8px 0 0;
  font-size: 14px;
}

.price-value {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-align: right;
}

.price-value small {
  display: block;
  margin-top: 8px;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.process-grid::before {
  position: absolute;
  top: 31px;
  right: 15%;
  left: 15%;
  height: 2px;
  content: "";
  background: var(--line);
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--red);
  font-family: var(--display);
  font-size: 27px;
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.process-step p {
  max-width: 280px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.owner-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.owner-media {
  position: relative;
  padding: 18px;
}

.owner-media::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--yellow);
  border-radius: 50% 50% 44% 56% / 58% 42% 58% 42%;
  transform: rotate(-5deg);
}

.owner-media > img:first-child {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 7px solid var(--paper);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

.owner-car {
  position: absolute;
  z-index: 2;
  right: -38px;
  bottom: -18px;
  width: 190px;
  filter: drop-shadow(0 12px 10px rgba(0, 0, 0, 0.28));
}

.owner-kicker {
  margin: 0 0 15px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.owner-copy h2 {
  max-width: 660px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 6vw, 74px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.owner-copy h2 span {
  color: var(--red);
}

.owner-copy > p:not(.owner-kicker) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.owner-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 800;
}

.owner-signature::before {
  width: 42px;
  height: 5px;
  content: "";
  background: var(--yellow);
  border: 1px solid var(--ink);
  transform: skewX(-24deg);
}

.rental-board {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.rental-intro,
.rental-flow {
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-lg);
}

.rental-intro {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(15, 15, 14, 0.04), rgba(15, 15, 14, 0.92)),
    url("/assets/bedbugs-hero.jpg") center / cover;
  box-shadow: var(--shadow-lg);
}

.rental-intro .tag {
  width: fit-content;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rental-intro h3 {
  max-width: 500px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.93;
  text-transform: uppercase;
}

.rental-flow {
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.rental-flow h3 {
  margin: 0 0 32px;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: rental-flow;
}

.flow-list li {
  position: relative;
  min-height: 70px;
  padding: 0 0 24px 60px;
  border-left: 2px solid rgba(23, 23, 21, 0.38);
  counter-increment: rental-flow;
}

.flow-list li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.flow-list li::before {
  position: absolute;
  top: -3px;
  left: -22px;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  content: counter(rental-flow);
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
}

.flow-list strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.flow-list span {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.5;
}

.faq-wrap {
  max-width: 930px;
  margin: 0 auto;
}

.faq-wrap .section-heading {
  display: block;
  margin-bottom: 40px;
  text-align: center;
}

.faq-wrap .section-label {
  margin-bottom: 18px;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.1;
  list-style: none;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--body);
  font-size: 22px;
  font-weight: 500;
  transition: transform 180ms ease;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 760px;
  padding: 0 52px 26px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  color: var(--ink);
  background: var(--yellow);
}

.cta-band::before {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: 180px;
  content: "";
  opacity: 0.13;
  background: repeating-linear-gradient(135deg, var(--ink) 0 8px, transparent 8px 18px);
  transform: rotate(8deg);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 82px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.cta-actions {
  display: flex;
  min-width: 250px;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  text-align: center;
}

.cta-actions .text-link {
  justify-content: center;
}

.site-footer {
  padding: 60px 0 82px;
  color: #d2cec3;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
}

.footer-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 4px;
}

.footer-lockup img {
  width: 28px;
  height: 42px;
  object-fit: contain;
}

.footer-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.footer-name small {
  display: block;
  margin-top: 4px;
  font-family: var(--body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-brand p {
  max-width: 480px;
  margin: 20px 0 0;
  color: #a9a59b;
  font-size: 13px;
}

.footer-contact {
  display: grid;
  justify-content: end;
  gap: 8px;
  text-align: right;
  font-size: 13px;
}

.footer-contact strong {
  margin-bottom: 5px;
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact a {
  text-underline-offset: 4px;
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  padding-top: 22px;
  color: #77746c;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.mobile-sticky {
  display: none;
}

.preview-page {
  min-height: 100vh;
  padding: 72px 0;
  background: var(--cream);
}

.preview-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.preview-head h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(60px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.86;
  text-transform: uppercase;
}

.preview-head h1 span {
  color: var(--red);
}

.preview-head p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.preview-card {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.preview-card:hover {
  box-shadow: 10px 10px 0 var(--yellow);
  transform: translateY(-6px);
}

.preview-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

.preview-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 360px;
}

.preview-card-wide img {
  height: 100%;
  min-height: 360px;
}

.preview-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.preview-card small {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.preview-card h2 {
  margin: 14px 0 10px;
  font-family: var(--display);
  font-size: 40px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.preview-card p {
  margin: 0;
  color: #bdb9af;
  font-size: 13px;
}

.preview-card b {
  margin-top: auto;
  padding-top: 26px;
  color: var(--yellow);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.reveal {
  animation: rise-in 700ms both cubic-bezier(0.2, 0.65, 0.3, 1);
}

.reveal-delay-1 {
  animation-delay: 120ms;
}

.reveal-delay-2 {
  animation-delay: 220ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
    padding-top: 0;
  }

  .hero-action {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 20px;
    align-items: center;
  }

  .hero-media {
    margin: 0;
  }

  .hero-media > img {
    height: 410px;
  }

  .hero-vehicle {
    top: auto;
    right: 47%;
    bottom: -12px;
    width: 165px;
  }

  .lead-card {
    width: 100%;
    margin: 0;
  }

  .section-heading {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .craft-copy {
    padding: 48px 42px 48px 24px;
  }

  .coverage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-card {
    min-height: 360px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .preview-card img {
    height: 100%;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 72px;
  }

  .shell {
    width: min(100% - 30px, 650px);
  }

  .utility-bar {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 29px;
    height: 43px;
  }

  .brand-name {
    font-size: 21px;
  }

  .brand-location,
  .header-actions .text-link,
  .header-actions .button span {
    display: none;
  }

  .header-actions .button {
    min-width: 48px;
    min-height: 44px;
    padding: 10px 14px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .hero {
    padding: 46px 0 64px;
  }

  .hero::before {
    top: -25px;
    right: -95px;
    width: 310px;
    height: 90px;
  }

  .hero::after {
    width: 58%;
    height: 10px;
  }

  .hero-grid {
    gap: 40px;
  }

  .eyebrow {
    margin-bottom: 19px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(55px, 17vw, 76px);
  }

  .hero h1 .signal {
    width: 100%;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 17px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-jump {
    margin-top: 24px;
  }

  .hero-action {
    display: block;
  }

  .hero-media {
    margin: 0 5px;
    transform: rotate(0.6deg);
  }

  .hero-media > img {
    height: 245px;
  }

  .hero-media figcaption {
    right: 13px;
    bottom: 12px;
    left: 13px;
  }

  .media-title {
    font-size: 20px;
  }

  .media-chip {
    display: none;
  }

  .hero-vehicle {
    right: -3px;
    bottom: auto;
    top: 188px;
    width: 122px;
  }

  .lead-card {
    width: calc(100% - 12px);
    margin: -15px auto 0;
    padding: 23px 20px 21px;
  }

  .lead-card h2 {
    font-size: 27px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .field-full {
    grid-column: auto;
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-item {
    min-width: 0;
    min-height: 102px;
    flex-direction: column;
    gap: 5px;
    padding: 15px 6px;
    text-align: center;
  }

  .proof-value {
    max-width: 100%;
    font-size: 33px;
    white-space: nowrap;
  }

  .proof-copy {
    max-width: 105px;
    font-size: 9px;
  }

  .proof-stars {
    font-size: 8px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 38px;
  }

  .section-label {
    margin: 0 0 18px;
  }

  .section-title {
    font-size: clamp(45px, 14vw, 61px);
  }

  .section-intro {
    margin-top: 19px;
    font-size: 16px;
  }

  .feature-grid,
  .process-grid,
  .owner-panel,
  .rental-board,
  .footer-grid,
  .cta-inner,
  .preview-head {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 12px;
  }

  .feature-card {
    min-height: 0;
    padding: 24px;
  }

  a.feature-card {
    min-height: 280px;
  }

  .feature-number {
    width: 39px;
    height: 39px;
    margin-bottom: 28px;
  }

  .feature-card h3 {
    font-size: 28px;
  }

  .craft-panel {
    grid-template-columns: 1fr;
  }

  .craft-media {
    min-height: 300px;
  }

  .craft-media::after {
    background: linear-gradient(180deg, transparent 45%, var(--ink) 100%);
  }

  .craft-copy {
    margin-top: -55px;
    padding: 40px 25px 34px;
  }

  .craft-copy::before {
    right: 25px;
  }

  .craft-quote {
    font-size: 43px;
  }

  .metric-stage {
    padding: 24px 18px;
  }

  .metric-row {
    grid-template-columns: 1fr 74px;
    gap: 10px;
    padding: 18px 0;
  }

  .metric-track {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .metric-value {
    font-size: 24px;
  }

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

  .coverage-pill {
    min-height: 90px;
    font-size: 20px;
  }

  .price-callout {
    grid-template-columns: 1fr;
    padding: 27px 24px;
  }

  .price-value {
    text-align: left;
  }

  .process-grid {
    gap: 34px;
  }

  .process-grid::before {
    top: 32px;
    bottom: 32px;
    left: calc(50% - 1px);
    width: 2px;
    height: auto;
  }

  .process-step {
    padding: 0 22px 22px;
    background: var(--cream);
  }

  .section:not(.section-cream) .process-step {
    background: var(--paper);
  }

  .owner-panel {
    gap: 52px;
  }

  .owner-media {
    width: min(360px, 90%);
    margin: 0 auto;
  }

  .owner-car {
    right: -26px;
    width: 145px;
  }

  .owner-copy h2 {
    font-size: clamp(48px, 15vw, 64px);
  }

  .rental-board {
    gap: 16px;
  }

  .rental-intro {
    min-height: 390px;
    padding: 28px;
  }

  .rental-intro h3 {
    font-size: 51px;
  }

  .rental-flow {
    padding: 34px 28px;
  }

  .faq-item summary {
    padding: 20px 0;
    font-size: 22px;
  }

  .faq-answer {
    padding-right: 10px;
  }

  .cta-band {
    padding: 58px 0;
  }

  .cta-band h2 {
    font-size: clamp(50px, 16vw, 67px);
  }

  .cta-actions {
    min-width: 0;
  }

  .footer-contact {
    justify-content: start;
    text-align: left;
  }

  .site-footer {
    padding-bottom: 46px;
  }

  .mobile-sticky {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    min-height: 72px;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.25);
  }

  .mobile-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
  }

  .mobile-sticky a:last-child {
    color: var(--ink);
    background: var(--yellow);
  }

  .preview-page {
    padding: 52px 0;
  }

  .preview-head {
    align-items: start;
  }

  .preview-card {
    display: flex;
    min-height: 450px;
  }

  .preview-card img {
    height: 220px;
  }

  .preview-card-wide img {
    min-height: 0;
  }
}

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