:root {
  --ink: #17120f;
  --muted: #685f58;
  --paper: #fbf3eb;
  --white: #ffffff;
  --forest: #201916;
  --moss: #5f6f45;
  --yellow: #ff5a14;
  --rust: #d13e11;
  --line: #e1d1c7;
  --success: #246b3d;
  --error: #9f241a;
  --shadow: 0 14px 42px rgba(23, 18, 15, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(14, 11, 10, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

#quote {
  scroll-margin-top: 96px;
}

#quote-form {
  scroll-margin-top: 96px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

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

.brand strong {
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.nav a:hover {
  color: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: #160f0a;
  background: var(--yellow);
  box-shadow: 0 7px 20px rgba(255, 90, 20, 0.28);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.dark-button {
  color: var(--white);
  background: var(--forest);
  border: 1px solid rgba(23, 18, 15, 0.2);
}

.floating-quote {
  position: fixed;
  z-index: 30;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  color: #160f0a;
  background: var(--yellow);
  border: 1px solid rgba(22, 15, 10, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(23, 18, 15, 0.24);
  font-weight: 900;
  line-height: 1;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.floating-quote:hover,
.floating-quote:focus-visible {
  background: #ff6c2e;
  transform: translateY(-1px);
}

.floating-quote:focus-visible {
  outline: 3px solid rgba(255, 90, 20, 0.34);
  outline-offset: 3px;
}

.floating-quote.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  visibility: hidden;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 10, 9, 0.94) 0%, rgba(13, 10, 9, 0.74) 38%, rgba(13, 10, 9, 0.16) 74%),
    linear-gradient(0deg, rgba(13, 10, 9, 0.58) 0%, rgba(13, 10, 9, 0) 42%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 82px);
  padding-top: 88px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 9vw, 6.7rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

.hero-truck {
  display: block;
  width: min(620px, 100%);
  aspect-ratio: 3 / 2;
  margin: 0 0 18px;
  object-fit: cover;
  border: 2px solid rgba(255, 90, 20, 0.72);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.slogan {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 90, 20, 0.92);
  border-radius: 8px;
  font-size: clamp(1.1rem, 2.2vw, 1.48rem);
  font-weight: 900;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(650px, 100%);
  margin: 34px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.trust-strip div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip dt {
  font-weight: 900;
}

.trust-strip dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0;
}

.section-band {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 84px);
  align-items: start;
}

.split > p,
.quote-copy > p {
  color: var(--muted);
  font-size: 1.12rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 270px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(23, 33, 29, 0.06);
}

.service-card .icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 900;
}

.service-card p,
.steps p,
.price-panel li,
.footer p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
}

.gallery-section .section-heading p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

.gallery-carousel {
  display: grid;
  gap: 18px;
}

.gallery-carousel-frame {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-slide {
  margin: 0;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.before-after-panel {
  position: relative;
  height: clamp(360px, 38vw, 520px);
  min-height: 0;
  overflow: hidden;
  background: var(--forest);
}

.before-after-panel span {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  color: #160f0a;
  background: var(--yellow);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.before-after-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.gallery-slide figcaption {
  display: grid;
  gap: 4px;
  padding: 22px;
}

.gallery-slide strong {
  font-size: 1.22rem;
}

.gallery-slide figcaption span {
  color: var(--muted);
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.gallery-control {
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: var(--forest);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.gallery-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  background: rgba(23, 18, 15, 0.24);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.gallery-dot.is-active {
  background: var(--yellow);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 18px;
}

.price-panel,
.quote-callout,
.quote-form {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-panel {
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background: var(--forest);
}

.price-panel ul {
  display: grid;
  gap: 14px;
  padding-left: 20px;
  margin: 22px 0 0;
}

.price-panel li {
  color: rgba(255, 255, 255, 0.78);
}

.quote-callout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 44px);
  background: var(--white);
}

.quote-callout p:not(.quote-mark) {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.quote-mark {
  margin-bottom: -22px;
  color: var(--rust);
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.8;
}

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

.area-list li {
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: stretch;
}

.quote-copy {
  display: flex;
  flex-direction: column;
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  font-weight: 900;
}

.contact-options a {
  color: var(--forest);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  margin-bottom: 34px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
  font-weight: 900;
}

.contact-art {
  display: block;
  width: min(520px, 100%);
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd2c7;
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfcf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(255, 90, 20, 0.28);
  border-color: var(--yellow);
}

input.input-error,
textarea.input-error {
  border-color: var(--error);
}

.recaptcha-field {
  min-height: 78px;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-note a {
  color: var(--rust);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--error);
}

.footer {
  color: rgba(255, 255, 255, 0.82);
  background: #111a17;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.legal-footer-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.footer a,
.legal-footer-links a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.copyright {
  color: rgba(255, 255, 255, 0.68);
}

.legal-header {
  position: sticky;
}

.legal-page {
  padding-top: 76px;
}

.legal-content {
  max-width: 860px;
}

.legal-content h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.legal-content h2 {
  margin-top: 44px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.legal-content p {
  color: var(--muted);
  font-size: 1.04rem;
}

.legal-content a {
  color: var(--rust);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  font-weight: 900;
}

.thank-you-content {
  min-height: calc(100vh - 260px);
  display: grid;
  align-content: center;
}

.thank-you-actions {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
    min-height: auto;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding-top: 6px;
  }

  .nav a {
    flex: 0 0 auto;
    padding-right: 8px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    align-self: end;
    margin: 0 auto;
    padding: 160px 0 48px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(13, 10, 9, 0.95) 0%, rgba(13, 10, 9, 0.74) 52%, rgba(13, 10, 9, 0.2) 100%),
      linear-gradient(90deg, rgba(13, 10, 9, 0.5), rgba(13, 10, 9, 0.12));
  }

  .split,
  .pricing-layout,
  .quote-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 13px;
  }

  .hero {
    min-height: 610px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .nav a[href="#photos"],
  .nav a[href="#areas"] {
    display: none;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-truck {
    display: none;
  }

  .hero-actions {
    margin: 22px 0;
  }

  .service-grid,
  .steps,
  .area-list {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .trust-strip div {
    padding: 12px 8px;
    text-align: center;
  }

  .trust-strip dt {
    font-size: 0.88rem;
  }

  .trust-strip dd {
    font-size: 0.76rem;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .before-after-panel,
  .before-after-panel img {
    height: clamp(300px, 82vw, 470px);
    min-height: 0;
  }

  .trust-strip div {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
  }

  .trust-strip div:last-child {
    border-right: 0;
  }

  .section-inner {
    padding: 46px 0;
  }

  .service-card,
  .steps li,
  .price-panel,
  .quote-callout,
  .quote-form {
    padding: 20px;
  }

  .service-card,
  .steps li {
    min-height: 0;
  }

  .service-card .icon,
  .steps span {
    margin-bottom: 16px;
  }

  .quote-callout p:not(.quote-mark) {
    font-size: 1.14rem;
  }

  .quote-copy {
    display: block;
  }

  .contact-art {
    display: none;
  }

  .contact-options,
  .social-links {
    margin-top: 18px;
  }

  .social-links {
    margin-bottom: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .legal-footer-links {
    justify-content: flex-start;
  }

  .floating-quote {
    right: 16px;
    bottom: 20px;
    min-height: 48px;
    max-width: calc(100vw - 32px);
    padding: 0 17px;
    font-size: 0.94rem;
  }
}
