/* ==========================================================================
   Mr. Striper — stylesheet
   ========================================================================== */

:root {
  --yellow: #fdc705;
  --yellow-deep: #e0ad00;
  --black: #0d0d0d;
  --charcoal: #1c1c1e;
  --asphalt: #2a2a2d;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --ink: #17171a;
  --gray-mid: #696259;
  --border-soft: #e3e3e0;
  --red: #c22a22;
  --blue: #1959a8;

  --font-head: 'Anton', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --max: 1140px;
  --radius: 10px;
  --shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#hero,
#about,
#services {
  scroll-margin-top: 79px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  line-height: 1.12;
}

p {
  margin: 0 0 1em;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 3px;
  background: var(--yellow);
}

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

section {
  padding: 84px 0;
}

#services {
  padding-top: 32px;
}

#work-reel {
  padding-top: 56px;
  background: var(--black);
}

#how-it-works {
  padding-top: 56px;
}

#trust-strip {
  padding-top: 56px;
}

/* ---------- Trust badges ---------- */
.trust-badges {
  background: var(--charcoal);
  padding: 26px 0;
}

.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 22px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white);
  white-space: nowrap;
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--yellow);
  flex-shrink: 0;
}

/* ---------- Hazard stripe divider ---------- */
.stripe-divider {
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow),
    var(--yellow) 18px,
    var(--black) 18px,
    var(--black) 36px
  );
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn-primary:hover {
  background: var(--yellow-deep);
  border-color: var(--yellow-deep);
  box-shadow: 0 10px 20px -8px rgba(253, 199, 5, 0.55);
}

.btn-outline-navy {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline-navy:hover {
  background: var(--black);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-navy {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-navy:hover {
  background: #000;
  border-color: #000;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.55);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

/* ---------- Logo ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  width: 150px;
  height: 150px;
  border-radius: 22px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--black);
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-logo {
  height: 46px;
  width: auto;
  display: block;
}

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--black);
}

.announcement-bar a {
  display: block;
  padding: 8px 24px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}

.announcement-bar a:hover {
  color: var(--yellow);
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--yellow);
  border-bottom: 3px solid var(--black);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav.main-nav a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  border-color: var(--black);
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--black);
  white-space: nowrap;
}

.header-phone svg {
  width: 16px;
  height: 16px;
  fill: var(--black);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  position: relative;
  transition: 0.2s ease;
}

.nav-toggle span::before {
  content: "";
  position: absolute;
  top: -7px;
}

.nav-toggle span::after {
  content: "";
  position: absolute;
  top: 7px;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--black);
  padding: 72px 0 64px;
  text-align: center;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.6rem;
  max-width: 760px;
  margin: 0 auto 18px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 0 auto 14px;
  font-size: 1.02rem;
}

.page-hero p:last-child {
  margin-bottom: 0;
}

/* ---------- Service detail sections ---------- */
.service-feature-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.4;
}

.service-feature-list svg {
  width: 18px;
  height: 18px;
  stroke: var(--yellow-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

.section-dark .service-feature-list svg {
  stroke: var(--yellow);
}

.service-faq {
  margin-top: 26px;
  padding: 16px 20px;
  border-left: 3px solid var(--yellow);
  background: rgba(13, 13, 13, 0.04);
  border-radius: 0 8px 8px 0;
}

.section-dark .service-faq {
  background: rgba(255, 255, 255, 0.05);
}

.service-faq .service-faq-q {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
  margin: 0 0 6px;
}

.section-dark .service-faq .service-faq-q {
  color: var(--white);
}

.service-faq .service-faq-a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--gray-mid);
  margin: 0;
}

.section-dark .service-faq .service-faq-a {
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 114px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(13, 13, 13, 0.97) 0%, rgba(13, 13, 13, 0.9) 30%, rgba(13, 13, 13, 0.58) 58%, rgba(13, 13, 13, 0.3) 100%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.25) 0%, rgba(13, 13, 13, 0) 35%, rgba(13, 13, 13, 0.4) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 620px;
}

.hero h1 {
  font-size: 2.9rem;
  color: var(--white);
}

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

.final-cta h2 .accent {
  color: var(--yellow);
}

.hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  max-width: 52ch;
}

.hero p strong {
  color: var(--white);
}

.hero .hero-trust {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero .hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.hero .hero-trust svg {
  width: 15px;
  height: 15px;
  stroke: var(--yellow);
  flex-shrink: 0;
}

/* ---------- Alternating content sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split.reverse .split-art {
  order: 2;
}

.split.reverse .split-copy {
  order: 1;
}

.split-art {
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
}

.photo-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.photo-frame.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Illustrated before/after panels ---------- */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  aspect-ratio: 4 / 3;
  background: var(--black);
}

.ba-panel {
  position: relative;
  overflow: hidden;
}

.ba-panel svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ba-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  padding: 8px 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.ba-before {
  background: rgba(0, 0, 0, 0.55);
}

.ba-after {
  background: var(--yellow-deep);
  color: var(--black);
}

.split-copy p strong {
  color: var(--black);
}

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

.section-soft {
  background: var(--off-white);
  padding-top: 56px;
}

/* ---------- Dark feature section ---------- */
.section-dark {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.88);
}

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

.split-copy h2 {
  font-size: 2.1rem;
}

.section-dark .split-art {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.section-dark p strong {
  color: var(--white);
}

/* ---------- Services ---------- */
.services-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.services-head h2 {
  font-size: 2.1rem;
}

.services-head p {
  color: var(--gray-mid);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3.4;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.15) 0%, rgba(13, 13, 13, 0.4) 45%, rgba(13, 13, 13, 0.94) 100%);
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

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

.card-photo-1 { background-image: url("images/hero-lot.webp"); background-position: center 30%; }
.card-photo-2 { background-image: url("images/restriping-lines.webp"); background-position: center 30%; }
.card-photo-3 { background-image: url("images/ada-stalls.webp"); background-position: center 35%; }
.card-photo-4 { background-image: url("images/fire-lane-curb.webp"); background-position: 60% 50%; }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.6);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--black);
}

.service-card h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- Trust strip ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.trust-item .service-icon {
  margin-bottom: 4px;
}

.trust-item h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--white);
  margin: 0;
}

.trust-item p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 26ch;
  margin: 0;
}

/* ---------- How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}

.step-rule {
  width: 44px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ---------- Work reel ---------- */
.reel-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.reel-head h2 {
  font-size: 2.1rem;
}

.reel-head p {
  color: rgba(255, 255, 255, 0.75);
}

.reel {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.reel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: reelFade 28s ease infinite;
}

.reel-slide:nth-child(1) { animation-delay: 0s; }
.reel-slide:nth-child(2) { animation-delay: 4s; }
.reel-slide:nth-child(3) { animation-delay: 8s; }
.reel-slide:nth-child(4) { animation-delay: 12s; }
.reel-slide:nth-child(5) { animation-delay: 16s; }
.reel-slide:nth-child(6) { animation-delay: 20s; }
.reel-slide:nth-child(7) { animation-delay: 24s; }

@keyframes reelFade {
  0% { opacity: 0; }
  3.57% { opacity: 1; }
  10.71% { opacity: 1; }
  14.29% { opacity: 0; }
  100% { opacity: 0; }
}

.reel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 22px 16px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0) 0%, rgba(13, 13, 13, 0.85) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
}

.reel-dots {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: flex;
  gap: 6px;
}

.reel-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: reelDot 28s linear infinite;
}

.reel-dots span:nth-child(1) { animation-delay: 0s; }
.reel-dots span:nth-child(2) { animation-delay: 4s; }
.reel-dots span:nth-child(3) { animation-delay: 8s; }
.reel-dots span:nth-child(4) { animation-delay: 12s; }
.reel-dots span:nth-child(5) { animation-delay: 16s; }
.reel-dots span:nth-child(6) { animation-delay: 20s; }
.reel-dots span:nth-child(7) { animation-delay: 24s; }

@keyframes reelDot {
  0% { background: var(--yellow); }
  14.29% { background: var(--yellow); }
  14.3% { background: rgba(255, 255, 255, 0.4); }
  100% { background: rgba(255, 255, 255, 0.4); }
}

/* ---------- Owner section ---------- */
.owner-section {
  background: var(--yellow);
  padding: 60px 0 90px;
  text-align: center;
}

.owner-section > .wrap > h2 {
  display: inline-block;
  color: var(--black);
  margin-bottom: 34px;
  font-size: 2.1rem;
}

.owner-section > .wrap > h2::after {
  content: "";
  display: block;
  width: 75%;
  height: 7px;
  background: var(--black);
  border-radius: 4px;
  margin: 16px auto 0;
}

.owner-card {
  background: var(--charcoal);
  border-radius: 16px;
  box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.5);
  padding: 44px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.owner-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.owner-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--yellow);
}

.owner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-top .eyebrow {
  margin-bottom: 4px;
}

.owner-top h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0;
  color: var(--white);
}

.owner-card p {
  color: rgba(255, 255, 255, 0.85);
}

.owner-sign {
  color: var(--yellow);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-top: 18px;
  margin-bottom: 0;
}

/* ---------- FAQ ---------- */
.faq-head {
  text-align: center;
  margin-bottom: 40px;
}

.faq-head h2 {
  font-size: 2.1rem;
}

.faq-head .eyebrow {
  justify-content: center;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--black);
  padding: 18px 20px;
  cursor: pointer;
}

.faq-q .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--yellow-deep);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
  background: var(--yellow);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-a-inner {
  padding: 0 20px 18px;
  color: var(--gray-mid);
  font-size: 0.95rem;
}

/* ---------- Service area band ---------- */
.area-band {
  background: linear-gradient(120deg, var(--black), var(--charcoal) 75%);
  color: var(--white);
  text-align: center;
  padding: 56px 0 74px;
}

.area-band .eyebrow {
  justify-content: center;
  color: var(--yellow);
}

.area-band .eyebrow::before {
  background: var(--yellow);
}

.area-band h2 {
  color: var(--white);
  font-size: 1.9rem;
}

.area-band p {
  max-width: 700px;
  margin: 0 auto 8px;
  color: rgba(255, 255, 255, 0.85);
}

.area-band .cta-row {
  justify-content: center;
  margin-top: 28px;
}

.area-photo {
  max-width: 480px;
  margin: 32px auto 0;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--yellow);
  box-shadow: var(--shadow);
}

.area-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 56px 0 84px;
}

.final-cta h2 {
  color: var(--white);
  font-size: 2.1rem;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
}

.cta-row-center {
  justify-content: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  max-width: 640px;
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-details-block h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
}

.contact-details-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-details-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
}

.contact-details-list svg {
  width: 18px;
  height: 18px;
  fill: var(--black);
  flex-shrink: 0;
}

.contact-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-soft);
}

.contact-hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-hours-list li span:first-child {
  font-weight: 700;
  color: var(--black);
}

.contact-hours-list li span:last-child {
  color: var(--gray-mid);
}

.contact-service-area {
  font-size: 0.92rem;
  color: var(--gray-mid);
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--border-soft);
  border-radius: 6px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(253, 199, 5, 0.3);
}

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

.contact-form .btn {
  width: 100%;
  margin-top: 4px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 16px 0 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  min-height: 1.2em;
}

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

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

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--yellow);
  color: rgba(13, 13, 13, 0.75);
  padding: 50px 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
}

.footer-contact h4 {
  font-family: var(--font-body);
  color: var(--black);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}

.footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}

.footer-contact svg {
  width: 15px;
  height: 15px;
  fill: var(--black);
  flex-shrink: 0;
}

.footer-links h4 {
  font-family: var(--font-body);
  color: var(--black);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer-links li a {
  font-size: 0.92rem;
  color: rgba(13, 13, 13, 0.75);
  transition: color 0.15s ease;
}

.footer-links li a:hover {
  color: var(--black);
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(13, 13, 13, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.footer-social a:hover {
  background: var(--black);
  border-color: var(--black);
}

.footer-social a:hover svg {
  fill: var(--white);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: var(--black);
}

.footer-bottom {
  border-top: 1px solid rgba(13, 13, 13, 0.15);
  padding: 18px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(13, 13, 13, 0.65);
}

.footer-bottom a {
  color: rgba(13, 13, 13, 0.85);
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 40px;
  }

  .contact-form {
    max-width: none;
  }

  .split.reverse .split-art,
  .split.reverse .split-copy {
    order: initial;
  }

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

  .hero h1,
  .page-hero h1 {
    font-size: 2.3rem;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 720px) {
  nav.main-nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--yellow);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 3px solid var(--black);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  nav.main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  nav.main-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .header-phone span.phone-text {
    display: none;
  }

  .header-actions .btn-navy {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .services-grid,
  .trust-grid,
  .steps-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .owner-card {
    padding: 28px 22px;
  }

  .owner-top {
    flex-wrap: wrap;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 1.9rem;
  }
}
