/* ============================================================
   PRIMARY ONE AUTO — SHARED STYLESHEET
   Fonts: Barlow Condensed (headings), Inter (body)
   Colors: #0D0D0D black | #C4A265 antique gold | #C8102E red | #FFFFFF white
============================================================ */

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0D0D0D;
  --gold:    #C4A265;
  --gold-lt: #d4b880;
  --red:     #C8102E;
  --red-lt:  #D92640;
  --white:   #FFFFFF;
  --text:    #1A1A1A;
  --muted:   #6B6B6B;
  --rule:    #E0E0E0;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.35em;
}
.section-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: var(--gold);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-heading.visible::after { width: 100%; }

.rule { border: none; border-top: 1px solid var(--rule); margin: 0; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85em 2em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  min-height: 48px;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-lt);
  border-color: var(--red-lt);
}

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

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: rgba(196,162,101,0.08);
}

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

/* ============================================================
   HEADER / NAV
============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 162, 101, 0.2);
  transition: box-shadow 0.3s;
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.wordmark {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* Logo image — replaces text wordmark */
.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.site-logo {
  height: 52px;
  width: auto;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text-top {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.logo-text-top .wm-name { color: var(--white); }
.logo-text-top .wm-num  { color: #ABABAB; }
.logo-text-bottom {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-brand .site-logo { height: 48px; width: auto; }
.footer-brand .logo-text-top { font-size: 1.3rem; }
.footer-brand .logo-text-bottom { font-size: 0.8rem; }
@media (max-width: 768px) {
  .site-logo { height: 44px; width: auto; }
}
.wordmark-top {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
.wordmark-bottom {
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.wordmark-top .wm-name { color: var(--white); }
.wordmark-top .wm-num  { color: #ABABAB; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.5em 0.85em;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-phone {
  flex-shrink: 0;
  margin-left: 1.5rem;
}
.nav-phone a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  padding: 0.5em 1.1em;
  transition: background 0.2s, border-color 0.2s;
}
.nav-phone a:hover {
  background: var(--red-lt);
  border-color: var(--red-lt);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--black);
  border-top: 1px solid rgba(196,162,101,0.2);
  padding: 1.5rem 2rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-phone {
  margin-top: 1.5rem;
  font-size: 1.6rem;
  color: var(--gold);
  border-bottom: none;
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   HERO (index.html)
============================================================ */
#hero {
  /* Path is relative to this file (public/src/css/), not to the page. */
  --hero-photo: url('../../uploads/hero-truck.jpg');
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-photo {
  position: absolute;
  inset: 0;
  /* The photo comes from --hero-photo, set on #hero above. Declare it HERE in
     this stylesheet, not in a style="" attribute in the HTML: a relative url()
     inside a custom property is resolved against the sheet that uses it, so a
     path written in index.html resolves to src/css/… and 404s.
     The scrims below sit on top of it, so headline contrast survives any image. */
  background-image:
    /* left-to-right scrim keeps the headline legible over a busy photo */
    linear-gradient(to right,
      rgba(13,13,13,0.94) 0%,
      rgba(13,13,13,0.78) 34%,
      rgba(13,13,13,0.34) 66%,
      rgba(13,13,13,0.12) 100%),
    /* bottom lift so the CTAs and trust strip never float on a bright patch */
    linear-gradient(to top,
      rgba(13,13,13,0.85) 0%,
      rgba(13,13,13,0.20) 38%,
      rgba(13,13,13,0) 70%),
    var(--hero-photo, none),
    /* fallback body: an off-centre warm pool suggesting a lit garage at night */
    radial-gradient(120% 90% at 78% 38%, rgba(196,162,101,0.20) 0%, rgba(196,162,101,0.06) 34%, rgba(13,13,13,0) 68%),
    linear-gradient(118deg, #060606 0%, #131313 42%, #1e1c19 72%, #0a0a0a 100%);
  background-size: cover, cover, cover, cover, cover;
  background-position: center, center, 72% center, center, center;
  background-repeat: no-repeat;
}

/* A faint diagonal rake — reads as brushed metal rather than a flat black box.
   Sits under the content, above the background. */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    118deg,
    rgba(255,255,255,0.020) 0px,
    rgba(255,255,255,0.020) 1px,
    rgba(255,255,255,0) 1px,
    rgba(255,255,255,0) 7px);
  pointer-events: none;
}

/* Vignette: pulls the eye to the headline and stops the edges feeling open. */
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(115% 85% at 42% 52%, rgba(0,0,0,0) 42%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.hero-accent-bar {
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(
    to bottom left,
    rgba(196,162,101,0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero-headline {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 0.92;
  margin-bottom: 1.5rem;
  font-size: clamp(3.8rem, 9vw, 8rem);
  max-width: 700px;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-sub.hero-sub-makes {
  margin-top: -1.75rem;
  margin-bottom: 2.5rem;
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
  color: var(--gold);
  letter-spacing: 0.02em;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-cue .arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(196,162,101,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (max-width: 768px) {
  #hero { min-height: 85vh; min-height: 85dvh; }
  .hero-photo-label { display: none; }
  .hero-accent-bar { display: none; }
  .hero-content { padding: 0 1.5rem 4rem; }
  .scroll-cue { right: 1.5rem; }
  .hero-headline { font-size: clamp(3rem, 12vw, 5rem); }
}

/* ============================================================
   PAGE HERO (interior pages: about, services, reviews, contact)
============================================================ */
.page-hero {
  position: relative;
  background: var(--black);
  padding: 12rem 2rem 5rem;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(13,13,13,0.92) 0%,
      rgba(13,13,13,0.70) 50%,
      rgba(13,13,13,0.40) 100%
    ),
    linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #0d0d0d 100%);
}
.page-hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 30%, rgba(196,162,101,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
.page-hero-inner .hero-eyebrow { margin-bottom: 1rem; }
.page-hero-inner h1 {
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 0.92;
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 1.25rem;
}
.page-hero-inner h1 em {
  font-style: normal;
  color: var(--gold);
}
.page-hero-inner .hero-sub {
  margin-bottom: 0;
  max-width: 560px;
}

.nd-hero-awards {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.nd-hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  text-align: right;
}
.nd-hero-badges {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.nd-hero-badges a { display: block; opacity: 0.92; transition: opacity 0.2s; }
.nd-hero-badges a:hover { opacity: 1; }
.nd-hero-badges img { display: block; }

@media (max-width: 768px) {
  .page-hero { padding: 10rem 1.5rem 4rem; min-height: 44vh; }
  .page-hero--awards { padding-bottom: 9rem; }
  .nd-hero-awards { bottom: 1.5rem; right: 1.5rem; gap: 0.5rem; }
  .nd-hero-badges img { width: 56px; height: 56px; }
  .nd-hero-title { font-size: 0.65rem; }
}

/* ============================================================
   SECTION SCAFFOLDING
============================================================ */
.section-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
}
.section-header-right {
  text-align: right;
}
.section-header-right p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 340px;
  margin-left: auto;
  line-height: 1.7;
}
.section-header-right a {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.section-header-right a:hover { opacity: 0.7; }

.section-heading { font-size: clamp(2.4rem, 5vw, 3.8rem); }

@media (max-width: 768px) {
  .section-header { grid-template-columns: 1fr; }
  .section-header-right { text-align: left; }
  .section-header-right p { margin-left: 0; }
}

/* ============================================================
   TRUST BAR
============================================================ */
#trust {
  background: var(--black);
  border-top: 1px solid rgba(196,162,101,0.25);
  padding: 3rem 2rem;
}

.trust-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  text-align: center;
  padding: 1rem 1.5rem;
  position: relative;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(196,162,101,0.2);
}

.trust-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-suffix {
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0.05em;
}
.trust-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

@media (max-width: 768px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3)::before,
  .trust-item:nth-child(4)::before {
    top: 0; left: 0; right: 0; bottom: auto;
    width: 100%; height: 1px;
  }
}

/* ============================================================
   SERVICES GRID (homepage preview + services page)
============================================================ */
#services-preview {
  padding: 7rem 2rem;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.service-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:last-child { border-right: none; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover::before { height: 100%; }
.service-card:hover { background: #fafafa; }

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  display: block;
}
.service-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3rem;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.service-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.service-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
  margin-top: auto;
}
.service-card:hover .service-link { gap: 0.7rem; }
.service-link::after { content: '→'; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: none; }
  .service-card:nth-child(3), .service-card:nth-child(4) {
    border-top: 1px solid var(--rule);
  }
}
@media (max-width: 768px) {
  #services-preview { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .service-card:last-child { border-bottom: none; }
  .service-card:nth-child(3) { border-top: none; }
}

/* ============================================================
   SERVICES PAGE — full grid (3 cols)
============================================================ */
#services-full {
  padding: 7rem 2rem;
  background: var(--white);
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  margin-top: 4rem;
}
.services-full-grid .service-card:nth-child(3n) { border-right: none; }
.services-full-grid .service-card:nth-child(n+4) {
  border-top: 1px solid var(--rule);
}

@media (max-width: 1024px) {
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid .service-card:nth-child(3n) { border-right: 1px solid var(--rule); }
  .services-full-grid .service-card:nth-child(2n) { border-right: none; }
  .services-full-grid .service-card:nth-child(n+3) { border-top: 1px solid var(--rule); }
}
@media (max-width: 768px) {
  #services-full { padding: 5rem 1.5rem; }
  .services-full-grid { grid-template-columns: 1fr; }
  .services-full-grid .service-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .services-full-grid .service-card { border-top: none !important; }
  .services-full-grid .service-card:last-child { border-bottom: none; }
}

/* Services page price badge */
.service-price {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,162,101,0.08);
  border: 1px solid rgba(196,162,101,0.25);
  padding: 0.25em 0.75em;
  margin-bottom: 1rem;
  align-self: flex-start;
}

/* Services page — service area note */
.service-area-note {
  background: var(--black);
  padding: 4rem 2rem;
  text-align: center;
}
.service-area-note .section-inner { position: relative; }
.service-area-note h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.service-area-note p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
#why {
  background: var(--black);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
#why::before {
  content: 'PRIMARY ONE';
  position: absolute;
  bottom: -0.1em;
  left: -0.02em;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(6rem, 16vw, 14rem);
  text-transform: uppercase;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

#why .section-inner { position: relative; z-index: 1; }
#why .section-heading { color: var(--white); font-size: clamp(2.4rem, 5vw, 3.8rem); }
#why .section-label { color: var(--gold); }

.why-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.why-intro p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.8;
  align-self: end;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(196,162,101,0.2);
}

.why-col {
  padding: 3rem 2.5rem 2.5rem;
  border-right: 1px solid rgba(196,162,101,0.1);
}
.why-col:last-child { border-right: none; }

.why-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 4rem;
  color: rgba(196,162,101,0.55);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}
.why-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.why-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}
.why-text strong {
  color: var(--gold);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-col { border-right: none; border-bottom: 1px solid rgba(196,162,101,0.1); }
  .why-col:last-child { border-bottom: none; }
  .why-intro { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 768px) {
  #why { padding: 5rem 1.5rem; }
}

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials {
  padding: 7rem 2rem;
  background: var(--white);
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
.testimonials-header a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  flex-shrink: 0;
  margin-bottom: 0.35rem;
  transition: opacity 0.2s;
}
.testimonials-header a:hover { opacity: 0.7; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.testimonial-card {
  background: #f8f8f7;
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.2s;
}
.testimonial-card:hover { background: #f3f2f0; }

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.5rem;
}
.star { color: var(--gold); font-size: 1rem; }

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 2rem;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 5rem;
  color: rgba(196,162,101,0.15);
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.author-loc {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  #testimonials { padding: 5rem 1.5rem; }
  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
}

.nextdoor-divider {
  margin: 5rem 0 3rem;
  padding-top: 4.5rem;
  border-top: 1px solid var(--rule);
}
.nd-label { color: #00b34a; }
.nd-subheading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--text);
  margin: 0.5rem 0 0.9rem;
}
.nd-subheading-sub {
  font-size: 0.92rem;
  color: var(--muted);
}
.nd-subheading-sub a {
  color: #00b34a;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,179,74,0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.nd-subheading-sub a:hover { border-bottom-color: #00b34a; }

.nd-fave-awards {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nd-fave-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  max-width: 80px;
}
.nd-fave-badges {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.nd-fave-badges a { display: block; opacity: 0.9; transition: opacity 0.2s; }
.nd-fave-badges a:hover { opacity: 1; }
.nd-fave-badges img { display: block; }

.nd-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00b34a;
  margin-bottom: 1.25rem;
}
.nd-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00b34a;
  flex-shrink: 0;
}

/* ============================================================
   BIG CTA SECTION
============================================================ */
#cta {
  background: var(--black);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
#cta::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(196,162,101,0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 0.92;
}
.cta-headline em {
  font-style: normal;
  color: var(--gold);
}

.cta-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  line-height: 1.7;
}

.cta-side {
  text-align: center;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.cta-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  #cta { padding: 5rem 1.5rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-side { align-items: flex-start; }
}

/* ============================================================
   QUICK FORM (in CTA section)
============================================================ */
.quick-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,162,101,0.2);
  padding: 2rem;
  max-width: 340px;
  width: 100%;
}
.quick-form h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.form-field { margin-bottom: 0.75rem; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.7em 1em;
  outline: none;
  transition: border-color 0.2s;
  min-height: 44px;
  appearance: none;
  resize: vertical;
}
.form-field select option { background: var(--black); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.quick-form .btn {
  width: 100%;
  justify-content: center;
  display: block;
  text-align: center;
  margin-top: 0.25rem;
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: #080808;
  border-top: 1px solid rgba(196,162,101,0.15);
  padding: 5rem 2rem 2rem;
}

.footer-top {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .wordmark-top { font-size: 1.3rem; }
.footer-brand .wordmark-bottom { font-size: 0.8rem; }

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(196,162,101,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s;
}
.social-link:hover {
  background: rgba(196,162,101,0.1);
  border-color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.footer-contact a { color: rgba(255,255,255,0.45); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1320px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}
.footer-lic {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  #footer { padding: 4rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   ABOUT PAGE
============================================================ */
#about-story {
  padding: 7rem 2rem;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-photo-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 60%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(196,162,101,0.2);
  margin: 1.5rem;
}
.about-photo-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
}

.about-text h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-text p strong { color: var(--text); font-weight: 600; }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-placeholder { aspect-ratio: 16/9; max-height: 400px; }
}
@media (max-width: 768px) {
  #about-story { padding: 5rem 1.5rem; }
}

/* Credentials strip */
#credentials {
  background: var(--black);
  padding: 4rem 2rem;
}
.credentials-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(196,162,101,0.2);
  border-bottom: 1px solid rgba(196,162,101,0.2);
}
.cred-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(196,162,101,0.1);
  text-align: center;
}
.cred-item:last-child { border-right: none; }
.cred-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.cred-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.cred-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

@media (max-width: 768px) {
  #credentials { padding: 3rem 1.5rem; }
  .credentials-inner { grid-template-columns: repeat(2, 1fr); }
  .cred-item:nth-child(2) { border-right: none; }
  .cred-item:nth-child(3),
  .cred-item:nth-child(4) { border-top: 1px solid rgba(196,162,101,0.1); }
  .cred-item:nth-child(4) { border-right: none; }
}

/* Team photo gallery on about page */
#team-photos {
  padding: 7rem 2rem;
  background: #f8f8f7;
}
.team-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.team-photo-item {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 60%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo-item img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

@media (max-width: 768px) {
  #team-photos { padding: 5rem 1.5rem; }
  .team-photo-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   REVIEWS PAGE
============================================================ */
#reviews-full {
  padding: 7rem 2rem;
  background: var(--white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
/* An odd number of reviews would leave a hole in the last row, so the final
   card spans the full width and reads as a featured one. */
.testimonial-card-wide { grid-column: 1 / -1; }
/* Gold on the off-white card fails contrast; this is the darkened brand tone. */
.review-more-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: #7A5B23;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid rgba(122, 91, 35, 0.35);
  padding-bottom: 2px;
}
.review-more-link:hover { border-bottom-color: #7A5B23; }
.google-cta-bar {
  background: #f8f8f7;
  border-top: 1px solid var(--rule);
  padding: 4rem 2rem;
  text-align: center;
}
.google-cta-bar h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.google-cta-bar p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.rating-big {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}
.rating-detail {
  text-align: left;
}
.rating-detail .stars { margin-bottom: 0.35rem; }
.rating-detail span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  #reviews-full { padding: 5rem 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
  .overall-rating { flex-wrap: wrap; gap: 1.5rem; }
  .overall-rating > div[aria-hidden] { display: none; }
}

/* ============================================================
   REVIEWS PAGE HERO — trust badges + eyebrow
============================================================ */
.reviews-hero-eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.reviews-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.reviews-trust-badges {
  display: flex;
  gap: 2rem;
  margin: 1.75rem 0 1.5rem;
  flex-wrap: wrap;
}
.reviews-trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.reviews-trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.reviews-trust-item span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.35;
}

@media (max-width: 768px) {
  .reviews-trust-badges { gap: 1.25rem; }
  .reviews-trust-icon { width: 40px; height: 40px; }
  .reviews-trust-item span { font-size: 0.72rem; }
}

/* ============================================================
   FULL BANNER (reviews page — above "Have More to Share?")
============================================================ */

/* Part 1: truck hero */
.full-banner-hero {
  position: relative;
  padding: 4.5rem 2rem 3.5rem;
  overflow: hidden;
  background: var(--black);
  background-size: cover;
  background-position: 65% center;
}
.full-banner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(13,13,13,0.97) 0%, rgba(13,13,13,0.82) 38%, rgba(13,13,13,0.35) 72%, rgba(13,13,13,0.08) 100%),
    linear-gradient(to bottom, rgba(13,13,13,0.15) 0%, rgba(13,13,13,0.0) 40%, rgba(13,13,13,0.50) 100%);
}
.full-banner-content {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}
.full-banner-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.full-banner-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.full-banner-headline {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 0.94;
  margin-bottom: 1.75rem;
}
.full-banner-headline em {
  font-style: normal;
  color: var(--gold);
}
.full-banner-badges {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.full-banner-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.full-banner-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.full-banner-badge span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.35;
}
.full-banner-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 460px;
}

/* Part 3: Google rating bar */
.full-banner-rating {
  background: var(--black);
  border-top: 1px solid rgba(196,162,101,0.2);
  padding: 2.5rem 2rem;
}
.full-banner-rating-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.full-banner-rating-score {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}
.full-banner-rating-detail {
  flex: 1;
}
.full-banner-rating-detail .stars { margin-bottom: 0.4rem; }
.full-banner-rating-detail .star { font-size: 1.25rem; }
.full-banner-rating-detail span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}
.full-banner-google-btn {
  border: 1px solid rgba(255,255,255,0.45);
  padding: 1.1rem 2rem;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.full-banner-google-btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.8);
}
.full-banner-arrow { font-size: 1.4rem; font-weight: 400; line-height: 1; }

@media (max-width: 768px) {
  .full-banner-hero { padding: 3.5rem 1.5rem 3rem; }
  .full-banner-badges { gap: 1.25rem; }
  .full-banner-badge-icon { width: 40px; height: 40px; }
  .full-banner-rating-inner { flex-wrap: wrap; gap: 1.5rem; }
  .full-banner-rating-score { font-size: 3.8rem; }
  .full-banner-google-btn { width: 100%; }
}

/* ============================================================
   NEXTDOOR AWARDS BANNER
============================================================ */
.nd-banner {
  background: #080808;
  border-top: 1px solid rgba(196,162,101,0.55);
  border-bottom: 1px solid rgba(196,162,101,0.55);
  padding: 2rem 2rem;
  position: relative;
  overflow: hidden;
}
.nd-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,162,101,0.11) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(196,162,101,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.nd-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nd-banner-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.nd-banner-logo span {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #00b34a;
  line-height: 1;
  letter-spacing: -0.02em;
}
.nd-banner-text { flex: 1; }
.nd-banner-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}
.nd-banner-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.nd-banner-sep {
  width: 1px;
  height: 80px;
  background: rgba(196,162,101,0.3);
  flex-shrink: 0;
}
.nd-banner-faves {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}
.nd-banner-faves a { display: block; opacity: 0.95; transition: opacity 0.2s; }
.nd-banner-faves a:hover { opacity: 1; }
.nd-banner-faves img { display: block; }

@media (max-width: 900px) {
  .nd-banner-logo span { font-size: 1.6rem; }
  .nd-banner-inner { gap: 1.5rem; }
}
@media (max-width: 768px) {
  .nd-banner { padding: 2rem 1.5rem; }
  .nd-banner-inner { flex-wrap: wrap; gap: 1.25rem; }
  .nd-banner-sep { display: none; }
  .nd-banner-logo { width: 100%; }
  .nd-banner-text { width: 100%; flex: unset; }
  .nd-banner-faves { width: 100%; justify-content: flex-start; }
  .nd-banner-faves img { width: 72px; height: 72px; }
}

/* ============================================================
   CONTACT PAGE
============================================================ */
#contact-section {
  padding: 7rem 2rem;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 2rem;
}
.contact-phone-big {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 2.5rem;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-phone-big:hover { color: var(--gold-lt); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-detail-text h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-detail-text p,
.contact-detail-text a {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.contact-detail-text a:hover { color: var(--text); }

/* Contact form (full) */
.contact-form-wrap {
  background: #f8f8f7;
  padding: 2.5rem;
}
.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.contact-form .form-field { margin-bottom: 1rem; }
.contact-form .form-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--rule);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75em 1em;
  outline: none;
  transition: border-color 0.2s;
  min-height: 44px;
  appearance: none;
  resize: vertical;
}
.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder { color: #bbb; }
.contact-form .form-field input:focus,
.contact-form .form-field select:focus,
.contact-form .form-field textarea:focus { border-color: var(--gold); }
.contact-form .form-field textarea { min-height: 120px; }
.contact-form .btn {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  #contact-section { padding: 5rem 1.5rem; }
  .contact-form-wrap { padding: 1.75rem 1.5rem; }
}

/* Map embed */
#map-section {
  background: var(--black);
  padding: 0;
  line-height: 0;
}
#map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(20%) invert(5%);
}
@media (max-width: 768px) {
  #map-section iframe { height: 280px; }
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.anim-ready.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-ready.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-ready.fade-up.delay-1 { transition-delay: 0.1s; }
.anim-ready.fade-up.delay-2 { transition-delay: 0.2s; }
.anim-ready.fade-up.delay-3 { transition-delay: 0.3s; }
.anim-ready.fade-up.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SMS QUICK-MESSAGE MODAL
============================================================ */
.sms-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.82);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.sms-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.sms-panel {
  background: var(--white);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(18px);
  transition: transform 0.22s;
}
.sms-overlay.open .sms-panel {
  transform: translateY(0);
}
.sms-panel-head {
  background: var(--red);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.sms-panel-head h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}
.sms-panel-head p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  margin: 0.3rem 0 0;
  line-height: 1.5;
}
.sms-panel-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-top: -2px;
}
.sms-panel-close:hover { color: var(--white); }
.sms-panel-body {
  padding: 1.75rem;
}
.sms-form .form-field { margin-bottom: 0.9rem; }
.sms-form .form-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.sms-form .form-field input,
.sms-form .form-field select,
.sms-form .form-field textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--rule);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.7em 0.9em;
  outline: none;
  transition: border-color 0.2s;
  min-height: 44px;
  appearance: none;
  resize: vertical;
  border-radius: 0;
}
.sms-form .form-field input::placeholder,
.sms-form .form-field textarea::placeholder { color: #bbb; }
.sms-form .form-field input:focus,
.sms-form .form-field select:focus,
.sms-form .form-field textarea:focus { border-color: var(--red); outline: none; }
.sms-form .form-field textarea { min-height: 80px; }
.sms-form .sms-submit {
  width: 100%;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
}
.sms-note {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .sms-panel-body { padding: 1.25rem; }
  .sms-panel-head { padding: 1rem 1.25rem; }
}
