/* =========================================================
   Precision Land Grading, Inc. — Stylesheet
   Industrial / premium identity built around the brand mark:
   black + gold + steel, condensed display type, angled cuts.
   ========================================================= */

:root {
  --black: #0b0b0d;
  --charcoal: #18181c;
  --charcoal-light: #232328;
  --gold: #f2a900;
  --gold-light: #ffcc40;
  --gold-dark: #c98700;
  --steel: #9aa0a8;
  --off-white: #f6f5f1;
  --white: #ffffff;
  --text: #202024;
  --gray: #6b6f76;
  --shadow: rgba(0, 0, 0, 0.35);

  --font-display: 'Anton', sans-serif;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Work Sans', sans-serif;

  --section-pad: 110px;
  --cut: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Offsets anchor-jump targets so the fixed header doesn't cover the
   top of the section (e.g. clicking "Services" in the nav). */
.hero,
.section {
  scroll-margin-top: 100px;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--black);
  line-height: 1.1;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad) 0; position: relative; }

.section-eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--gold);
  display: inline-block;
}
.section-head .section-eyebrow { justify-content: center; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
}

/* ---------- Buttons (clipped-corner industrial style) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-small {
  padding: 11px 24px;
  font-size: 0.85rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 2000;
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  border-radius: 2px;
  font-family: var(--font-head);
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(11,11,13,0.85) 0%, rgba(11,11,13,0) 100%);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 16px 0;
}

.site-header.scrolled {
  background: rgba(11, 11, 13, 0.97);
  box-shadow: 0 2px 20px var(--shadow);
  padding: 8px 0;
  border-bottom: 2px solid var(--gold);
}

.site-header .container { max-width: 1400px; }

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  transition: width 0.3s ease, height 0.3s ease;
}
.site-header.scrolled .logo img { width: 50px; height: 50px; }

.logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  line-height: 1.1;
  color: var(--white);
}

.logo-text strong {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.logo-text small {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.main-nav {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: center;
}

.main-nav a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  transition: color 0.3s ease;
}
.header-phone:hover { color: var(--gold); }
.header-phone svg { width: 18px; height: 18px; color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: 0.3s ease;
}
.nav-open .nav-toggle span { background: var(--gold); }

/* =========================================================
   MARQUEE TICKER
   ========================================================= */
.marquee {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 2px solid var(--gold);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--steel);
  padding: 14px 0;
}
.marquee-item strong { color: var(--gold); margin-right: 10px; }
.marquee-sep {
  color: var(--gold);
  margin: 0 28px;
  font-size: 0.7rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero-video,
.hero-image {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0.65) 0%, rgba(11,11,13,0.55) 45%, rgba(11,11,13,0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  width: 100%;
  padding: 0 24px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  letter-spacing: 0.5px;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 660px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.9);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 78px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--gold);
  animation: bounce 2.2s infinite;
}
.scroll-cue svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 100%; height: 100%;
  background: var(--gold);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  z-index: 0;
}
.about-image img {
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 50px var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.about-content h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin-bottom: 20px;
}
.about-content p { margin-bottom: 16px; color: var(--text); }

.about-badges {
  display: flex;
  gap: 4px;
  margin: 28px 0 32px;
  flex-wrap: wrap;
  background: var(--black);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.about-badge {
  background: var(--black);
  padding: 20px 26px;
  text-align: center;
  min-width: 130px;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.about-badge:last-child { border-right: none; }

.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
}

.about-badge-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--steel);
  margin-top: 6px;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--charcoal);
  padding: 36px 30px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px var(--shadow);
  background: var(--charcoal-light);
}

.service-index {
  position: absolute;
  top: -6px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: rgba(242, 169, 0, 0.14);
  line-height: 1;
  z-index: 0;
  user-select: none;
}

.service-icon {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(242, 169, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  z-index: 1;
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.service-card p {
  position: relative;
  z-index: 1;
  color: var(--steel);
  font-size: 0.93rem;
  margin-bottom: 0;
}
.service-card p + p { margin-top: 10px; }
.service-card a { color: var(--gold); font-weight: 600; }
.service-card a:hover { color: var(--gold-light); }

.service-list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--steel);
  font-size: 0.88rem;
  line-height: 1.5;
}
.service-list li + li { margin-top: 6px; }
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--gold);
}
.service-card-cta .service-list { display: none; }

.service-card-cta {
  background: var(--gold);
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.service-card-cta h3 { color: var(--black); font-size: 1.5rem; }
.service-card-cta p { color: rgba(11,11,13,0.75); margin-bottom: 22px; }
.service-card-cta:hover { transform: translateY(-6px); background: var(--gold-light); }

/* =========================================================
   BEFORE / AFTER SLIDER
   ========================================================= */
.transformations { background: var(--black); }
.transformations .section-eyebrow { color: var(--gold); }
.transformations .section-eyebrow::before { background: var(--gold); }
.transformations .section-head h2,
.transformations .section-head p { color: var(--white); }
.transformations .section-sub { color: var(--steel); }

.ba-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  cursor: ew-resize;
  user-select: none;
  border: 2px solid var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.ba-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

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

.ba-before {
  clip-path: inset(0 50% 0 0);
}

.ba-label {
  position: absolute;
  top: 18px;
  padding: 7px 18px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
}
.ba-label-after { right: 18px; }
.ba-label-before { left: 18px; background: var(--black); color: var(--gold); border: 1px solid var(--gold); }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translateX(-50%);
}

.ba-handle::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--gold);
  transform: translateX(-50%);
}

.ba-handle svg {
  position: relative;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  padding: 11px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { background: var(--off-white); }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  background: transparent;
  border: 2px solid var(--black);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.gallery-filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.gallery-filter-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.gallery-item.is-hidden { display: none; }

.gallery-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.gallery-more-wrap.is-hidden { display: none; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 0 solid var(--gold);
  transition: border-width 0.25s ease;
  pointer-events: none;
}
.gallery-item:hover::after { border-width: 4px; }

.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(11,11,13,0.92), transparent);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.gallery-grid.showing-all .gallery-item figcaption { display: none; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-us { background: var(--black); }
.why-us .section-eyebrow { color: var(--gold); }
.why-us .section-eyebrow::before { background: var(--gold); }
.why-us .section-head h2 { color: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  text-align: center;
  padding: 30px 20px;
}

.why-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.why-card:hover .why-icon { transform: rotate(-8deg) scale(1.06); background: var(--gold); color: var(--black); }
.why-icon svg { width: 30px; height: 30px; }

.why-card h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.why-card p { color: var(--steel); font-size: 0.92rem; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { background: var(--off-white); }

.reviews .section-head h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}
.reviews .section-head .stars { color: var(--gold); }

.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews-grid {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 12px;
  scrollbar-width: none;
}
.reviews-grid::-webkit-scrollbar { display: none; }

.reviews-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(11,11,13,0.15);
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.reviews-arrow svg { width: 20px; height: 20px; }
.reviews-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

.review-card {
  background: var(--white);
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-top: 3px solid var(--gold);
}

.review-card .stars {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: var(--gold);
}

.review-card p {
  color: var(--text);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 16px;
}

.review-author {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--black);
  font-size: 0.9rem;
}

.review-badge {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  background: rgba(242,169,0,0.12);
  padding: 2px 8px;
}

.reviews-cta { text-align: center; margin-top: 40px; }

/* =========================================================
   VETERAN DISCOUNT BADGE / HERO PILLS
   ========================================================= */
.veteran-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--steel);
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.veteran-badge svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }

.hero-badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 22px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242,169,0,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-rating .stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.hero-rating-text { font-weight: 600; letter-spacing: 0.5px; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: var(--gold);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 60%; height: 100%;
  background: rgba(11,11,13,0.06);
  clip-path: polygon(30% 0, 100% 0, 70% 100%, 0 100%);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-banner-text h2 {
  color: var(--black);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.cta-banner-text p {
  color: rgba(11,11,13,0.8);
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cta-banner .btn-primary { background: var(--black); color: var(--gold); border-color: var(--black); }
.cta-banner .btn-primary:hover { background: var(--charcoal); }
.cta-banner .btn-outline { color: var(--black); border-color: var(--black); }
.cta-banner .btn-outline:hover { background: rgba(11,11,13,0.1); color: var(--black); border-color: var(--black); }

/* =========================================================
   SERVICE AREA
   ========================================================= */
.areas { background: var(--white); }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-pill {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 12px 24px;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.area-pill:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.areas-note {
  text-align: center;
  margin-top: 28px;
  color: var(--gray);
}
.areas-note a { color: var(--gold-dark); font-weight: 700; text-decoration: underline; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--off-white); }

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

.faq-item {
  background: var(--white);
  border: 1px solid rgba(11,11,13,0.08);
  padding: 0 28px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 36px 20px 0;
  position: relative;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  color: var(--black);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 18px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--gold-dark);
}
.faq-item[open] summary::after { content: '\2212'; }

.faq-item p {
  padding: 0 0 22px;
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

.contact-list {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
}
.contact-list svg { width: 22px; height: 22px; color: var(--gold-dark); flex-shrink: 0; }
.contact-list a:hover { color: var(--gold-dark); }

.contact-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* ---------- Quote request form ---------- */
.quote-form {
  margin: 28px 0 32px;
}
.quote-form-row {
  display: flex;
  gap: 16px;
}
.quote-form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.quote-form-field label {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
  color: var(--black);
  margin-bottom: 6px;
}
.quote-form-field input,
.quote-form-field select,
.quote-form-field textarea {
  border: 2px solid #ddd;
  background: var(--white);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.quote-form-field input:focus,
.quote-form-field select:focus,
.quote-form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.quote-form-field textarea { resize: vertical; }
.quote-form-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 12px;
}

.contact-hours {
  background: var(--black);
  color: var(--white);
  padding: 40px;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}
.contact-hours h3 {
  color: var(--white);
  font-family: var(--font-head);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.map-embed {
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 18px;
  line-height: 0;
}
.map-embed iframe { display: block; filter: grayscale(0.2) contrast(1.05); }

.map-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 28px;
}

.location-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--steel);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.location-badge svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding-top: 70px;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand { display: flex; flex-direction: column; }
.footer-brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-logo-emblem {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.92rem; margin-bottom: 20px; }

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4, .footer-contact h4 {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links a, .footer-contact a, .footer-contact span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
}
.footer-bottom p {
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255,255,255,0.4);
}

/* =========================================================
   MOBILE CALL BUTTON
   ========================================================= */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--gold);
  color: var(--black);
  padding: 14px 22px;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.mobile-call-btn svg { width: 18px; height: 18px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* Nav collapses to the off-canvas menu earlier than the rest of the
   layout breakpoints — the nav items alone need more room than the
   1200px container provides, so this prevents it wrapping and
   overlapping the hero content on common laptop/tablet widths. */
@media (max-width: 1300px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80%);
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    border-left: 2px solid var(--gold);
    z-index: 1050;
  }
  .main-nav a { color: var(--white); font-size: 1.1rem; }
  .nav-open .main-nav { transform: translateX(0); }

  .header-phone { display: none; }
  .nav-toggle { display: flex; }

  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 900px) {
  :root { --section-pad: 70px; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-form-row { flex-direction: column; gap: 0; }
  .about-image { order: -1; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .review-card { flex-basis: 82%; min-width: 0; }
  .reviews-arrow { width: 36px; height: 36px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }

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

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

  .mobile-call-btn { display: flex; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }

  .reviews-carousel { position: relative; }
  .review-card { flex-basis: 92%; }
  .reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  }
  .reviews-arrow-prev { left: 0; }
  .reviews-arrow-next { right: 0; }

  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .footer-inner { grid-template-columns: 1fr; }
  .about-badges { flex-direction: column; }
  .about-badge { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .contact-hours { padding: 28px; }
}
