/* ═══════════════════════════════════════════════════════════
   PULL THROTTLE STUMP GRINDING — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --orange:       #ef6724;
  --orange-dark:  #c9541a;
  --charcoal:     #1c1e1b;
  --charcoal-mid: #272a26;
  --charcoal-lt:  #323630;
  --white:        #ffffff;
  --off-white:    #f2f0ec;
  --text-light:   rgba(255,255,255,0.75);
  --text-muted:   rgba(255,255,255,0.45);
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    12px;
  --shadow:       0 4px 24px rgba(0,0,0,0.35);
  --shadow-sm:    0 2px 10px rgba(0,0,0,0.2);
  --ff-head:      'Bebas Neue', sans-serif;
  --ff-body:      'Open Sans', sans-serif;
  --transition:   0.2s ease;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--charcoal);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── Typography helpers ──────────────────────────────────── */
.section-heading {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400; /* Bebas Neue is single-weight — this is ignored but harmless */
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.section-heading.light { color: var(--white); }
.section-intro {
  font-size: 1.05rem;
  color: #555;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 48px;
  text-align: center;
  line-height: 1.7;
}
.orange { color: var(--orange); }
.white  { color: var(--white); }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-outline-sm {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline-sm:hover { border-color: var(--orange); background: rgba(232,119,34,0.1); }

.btn-link {
  font-family: var(--ff-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.btn-link:hover { color: var(--orange); }

.btn-link-orange {
  font-family: var(--ff-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.btn-link-orange:hover { color: var(--orange-dark); }

.btn-link-light {
  font-family: var(--ff-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.btn-link-light:hover { color: var(--white); }

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

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════════ */

/* The header sits on top of the hero at full height, then
   collapses to a sticky bar on scroll. All transitions are
   driven by JS toggling the .scrolled class on <header>.     */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;

  /* Default (hero-overlay) state */
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background   0.35s ease,
    border-color 0.35s ease,
    height       0.35s ease,
    backdrop-filter 0.35s ease;
}

/* ── Scrolled (sticky) state ── */
.site-header.scrolled {
  background: rgba(28,30,27,0.97);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(255,255,255,0.07);
}

/* ── Inner flex row ── */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  /* Tall transparent state */
  height: var(--nav-h-open, 200px);
  transition: height 0.35s ease;
}
.site-header.scrolled .header-inner {
  height: var(--nav-h-sticky, 90px);
}

/* ── Logo ── */
.logo-img {
  /* Tall state */
  height: 180px;
  width: auto;
  transition: height 0.35s ease, filter 0.35s ease;

  /* Make the logo pop over the hero */
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}
.site-header.scrolled .logo-img {
  height: 70px;
  filter: none;
}

/* ── Nav links ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  border-bottom-color: var(--orange);
}
.site-header.scrolled .nav-link {
  text-shadow: none;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* No padding-top — transparent nav overlays the hero */
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/hero-bg.jpg') center center / cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(20,22,19,0.82) 0%, rgba(20,22,19,0.50) 55%, rgba(20,22,19,0.15) 100%),
    linear-gradient(to bottom, rgba(20,22,19,0.30) 0%, rgba(20,22,19,0.10) 40%, rgba(20,22,19,0.65) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;

  /* Left-aligned */
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 860px;
  padding-bottom: 120px; /* extra room so trust bar overlap doesn't clip content */
}
.hero-headline {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Line 1 — orange */
.hero-headline .line-one {
  display: block;
  font-weight: 400;
  color: var(--orange);
}

/* Line 2 — white, same style */
.hero-headline .line-two {
  display: block;
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  letter-spacing: 0.04em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}

/* ─── Trust bar ──────────────────────────────────────────── */

/*
  The trust bar sits at the very bottom of .hero (which is
  position:relative) and is pushed down 50% of its own height
  so it straddles the hero/content boundary.
  The next section needs matching padding-top to compensate.
*/
.trust-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transform: translateY(50%);
  padding-inline: 24px; /* mirrors .container padding */
}
.trust-inner {
  display: flex;
  align-items: stretch;
  background: rgba(22, 24, 21, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
  /* Center the pill */
  margin-inline: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition);
}
.trust-item:hover {
  background: rgba(255,255,255,0.04);
}

/* Stars variant — stacked: stars row on top, label below */
.trust-item--stars {
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.trust-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.trust-stars svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 3px rgba(239,103,36,0.6));
}
.trust-item--stars strong {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
}
.trust-item strong {
  display: block;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.trust-item span {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.2;
}
.trust-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  opacity: 0.95;
}
.trust-divider {
  width: 1px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
  align-self: stretch;
  margin: 10px 0;
}

/* ═══════════════════════════════════════════════════════════
   WHY SECTION
   ═══════════════════════════════════════════════════════════ */
.why-section {
  position: relative;
  /* Rich dark walnut/wood tone as base */
  background-color: #1a1108;
  /* SVG wood grain pattern layered over the color */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65 0.12' numOctaves='4' seed='8' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0.3'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E"),
    repeating-linear-gradient(
      178deg,
      transparent 0px,
      transparent 28px,
      rgba(255,255,255,0.012) 28px,
      rgba(255,255,255,0.012) 30px,
      transparent 30px,
      transparent 60px,
      rgba(0,0,0,0.08) 60px,
      rgba(0,0,0,0.08) 62px
    ),
    linear-gradient(
      to bottom,
      #2a1a0a 0%,
      #1e1208 40%,
      #150e06 70%,
      #1e1208 100%
    );
  padding: 120px 0 90px;
  text-align: center;
  overflow: hidden;
}

/* subtle warm vignette overlay */
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  z-index: 0;
}

.why-inner {
  position: relative;
  z-index: 1;
}

.why-section .section-heading {
  margin-bottom: 48px;
  /* Warm white with slight glow */
  color: #fff;
  text-shadow: 0 0 40px rgba(239,103,36,0.15);
}

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

.icon-card {
  /* Semi-translucent dark card */
  background: rgba(10, 7, 3, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(239,103,36,0.22);
  border-radius: var(--radius-md);
  padding: 30px 16px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: default;
  transition:
    background   0.25s ease,
    border-color 0.25s ease,
    transform    0.25s ease,
    box-shadow   0.25s ease;
}

.icon-card:hover {
  background: rgba(20, 12, 4, 0.75);
  border-color: rgba(239,103,36,0.55);
  transform: translateY(-3px);
  box-shadow:
    0 6px 24px rgba(0,0,0,0.4),
    0 0 20px rgba(239,103,36,0.12);
}

/* Icon wrapper — orange glow effect */
.icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Soft orange ambient glow behind icon */
  filter: drop-shadow(0 0 6px rgba(239,103,36,0.55))
          drop-shadow(0 0 14px rgba(239,103,36,0.25));
  transition: filter 0.25s ease;
}

.icon-card:hover .icon-wrap {
  filter: drop-shadow(0 0 8px rgba(239,103,36,0.80))
          drop-shadow(0 0 20px rgba(239,103,36,0.40));
}

.icon-wrap svg {
  width: 100%;
  height: 100%;
}

/* Label — title case, white, crisp */
.icon-card span {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.3;
  text-align: center;
}

/* CTA link on dark bg */
.why-cta {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ef6724;
  text-shadow: 0 0 12px rgba(239,103,36,0.4);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.why-cta:hover {
  color: #ff8040;
  text-shadow: 0 0 18px rgba(239,103,36,0.65);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════ */
.services-section {
  background: #f5f3ef;
  padding: 96px 0 88px;
  text-align: center;
}

.services-intro {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 52px;
}
.services-intro .section-heading {
  color: var(--charcoal);
  margin-bottom: 16px;
}
.services-intro .section-intro {
  margin-bottom: 0;
  color: #5a5650;
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.11);
  border-color: rgba(239,103,36,0.30);
}

.service-img-wrap {
  height: 220px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* orange top accent line */
  border-top: 3px solid var(--orange);
}

.service-card-body h3 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.2;
}

.service-card-body p {
  font-size: 0.95rem;
  color: #5a5650;
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   GOLF COURSE SECTION
   ═══════════════════════════════════════════════════════════ */

/* ── Part 1: Parallax band ── */
.golf-parallax {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  background-image: url('img/golf.jpg');
  background-attachment: fixed;
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Gradient overlay — darker on left for text legibility */
.golf-parallax-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,20,10,0.82) 0%, rgba(10,20,10,0.50) 55%, rgba(10,20,10,0.20) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
}

.golf-parallax-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.golf-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid rgba(239,103,36,0.4);
  border-radius: 3px;
  background: rgba(239,103,36,0.08);
}

.golf-parallax-content .section-heading {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.95;
  margin-bottom: 18px;
}

.golf-parallax-content > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.80);
  margin-bottom: 28px;
  line-height: 1.65;
  max-width: 520px;
}

/* ── Part 2: Deep green body ── */
.golf-content {
  background-color: #0f1f0f;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(30,60,20,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(20,50,15,0.4) 0%, transparent 50%);
  padding: 80px 0 0;
}

.golf-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
  padding-bottom: 64px;
}

/* Copy column */
.golf-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.golf-copy p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}
.golf-cta-btn {
  margin-top: 8px;
  align-self: flex-start;
}

/* Stats column */
.golf-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-self: start;
  position: sticky;
  top: 110px; /* clears sticky nav */
}
.golf-stat {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,0.03);
  transition: background 0.2s ease;
}
.golf-stat:last-child { border-bottom: none; }
.golf-stat:hover { background: rgba(255,255,255,0.06); }
.golf-stat-num {
  font-family: var(--ff-head);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--orange);
  letter-spacing: 0.03em;
}
.golf-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.45;
}

/* ── Horizontal photo strip ── */
.golf-strip-wrap {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 8px;
}
.golf-strip {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.golf-strip::-webkit-scrollbar { display: none; }

.golf-strip-item {
  flex: 0 0 auto;
  width: calc((100vw - 15px) / 6); /* 6 across on wide desktop, gaps account for scrollbar */
  min-width: 200px;
  max-width: 300px;
  height: 390px;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
}
.golf-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.golf-strip-item:hover img {
  transform: scale(1.04);
}

/* Strip nav arrows */
.strip-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15,31,15,0.88);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.strip-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.strip-btn--left  { left: 12px; }
.strip-btn--right { right: 12px; }

/* Mobile: parallax falls back to scroll on iOS */
@media (max-width: 768px) {
  .golf-parallax {
    background-attachment: scroll;
    height: auto;
    padding: 80px 0;
  }
  .golf-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .golf-stats {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .golf-stat { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.07); }
  .golf-stat:last-child { border-right: none; }
  .golf-strip-item { width: 42vw; min-width: 160px; height: 260px; }
}

/* ═══════════════════════════════════════════════════════════
   DIFFERENTIATORS — "No Runaround. No Waiting. Just Done."
   ═══════════════════════════════════════════════════════════ */
.diff-section {
  background: #f5f3ef;
  padding: 100px 0 96px;
  overflow: hidden;
}

/* ── Headline block: two-column — big statement left, owner copy right ── */
.diff-headline-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.diff-headline {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.88;
  white-space: nowrap;
}
.diff-line {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--charcoal);
}
.diff-line.orange { color: var(--orange); }

/* Owner strip — vertical bar + paragraph */
.diff-owner-strip {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.diff-owner-bar {
  flex-shrink: 0;
  width: 3px;
  align-self: stretch;
  background: var(--orange);
  border-radius: 2px;
  min-height: 60px;
}
.diff-owner-strip p {
  font-size: 1.05rem;
  color: #4a4540;
  line-height: 1.8;
  max-width: 540px;
}

/* ── 2×2 card grid ── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.diff-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  border-left: 3px solid var(--orange);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.diff-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.diff-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-top: 2px;
  filter: drop-shadow(0 0 6px rgba(239,103,36,0.45))
          drop-shadow(0 0 14px rgba(239,103,36,0.20));
  transition: filter 0.25s ease;
}
.diff-card:hover .diff-card-icon {
  filter: drop-shadow(0 0 8px rgba(239,103,36,0.75))
          drop-shadow(0 0 20px rgba(239,103,36,0.35));
}
.diff-card-icon svg {
  width: 100%;
  height: 100%;
}

.diff-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.diff-card-body h3 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.diff-card-body p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .diff-headline-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .diff-headline { white-space: normal; }
  .diff-line { font-size: clamp(2.8rem, 8vw, 4rem); }
}
@media (max-width: 640px) {
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card { flex-direction: column; gap: 16px; padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   BEFORE & AFTER
   ═══════════════════════════════════════════════════════════ */
.before-after-section {
  background: var(--off-white);
  padding: 96px 0 80px;
  text-align: center;
}
.before-after-section .section-heading {
  color: var(--charcoal);
  margin-bottom: 12px;
}

/* Carousel */
.carousel-wrap {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.ba-slide {
  display: none;
  animation: fadeIn 0.4s ease;
}
.ba-slide.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.ba-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--charcoal);
}
.ba-before,
.ba-after {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(28,30,27,0.8);
  color: var(--white);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.15);
}

/* Carousel buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(28,30,27,0.85);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition), transform var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}
.carousel-btn:hover { background: var(--orange); transform: translateY(-50%) scale(1.05); }
.carousel-btn--prev { left: -22px; }
.carousel-btn--next { right: -22px; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background var(--transition);
}
.dot.active { background: var(--orange); }

/* ═══════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════ */
.reviews-section {
  background: var(--charcoal-mid);
  padding: 96px 0 80px;
  text-align: center;
}
.reviews-section .section-heading { margin-bottom: 12px; }
.reviews-intro {
  color: rgba(255,255,255,0.55);
  margin-bottom: 52px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--charcoal-lt);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}
.review-source { height: 22px; }
.google-logo { height: 20px; width: auto; }
.review-stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
}
.review-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
}
.reviewer {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE AREA
   ═══════════════════════════════════════════════════════════ */
.service-area-section {
  background: var(--off-white);
  padding: 96px 0;
}
.service-area-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Map image — left column */
.service-area-map img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  display: block;
}

/* Text column */
.service-area-text .section-heading {
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.0;
}
.service-area-base {
  font-size: 0.97rem;
  color: #5a5650;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* County pills row */
.area-counties {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.area-counties span {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: rgba(239,103,36,0.10);
  border: 1px solid rgba(239,103,36,0.30);
  padding: 5px 12px;
  border-radius: 4px;
}
.area-dot {
  color: var(--orange) !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
}

/* Cities line */
.area-cities {
  font-size: 0.93rem;
  color: #5a5650;
  line-height: 1.7;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.area-cities-label {
  font-weight: 700;
  color: var(--charcoal);
  margin-right: 4px;
}


/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about-section {
  position: relative;
  background-color: #1a1108;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65 0.12' numOctaves='4' seed='12' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0.3'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E"),
    repeating-linear-gradient(
      176deg,
      transparent 0px,
      transparent 32px,
      rgba(255,255,255,0.010) 32px,
      rgba(255,255,255,0.010) 34px,
      transparent 34px,
      transparent 66px,
      rgba(0,0,0,0.07) 66px,
      rgba(0,0,0,0.07) 68px
    ),
    linear-gradient(
      to bottom,
      #241608 0%,
      #1a1108 40%,
      #130d06 70%,
      #1a1108 100%
    );
  padding: 96px 0;
  overflow: hidden;
}

/* Vignette overlay — same as why-section */
.about-wood-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0,0,0,0.40) 100%);
  pointer-events: none;
  z-index: 0;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: center;
}

/* Photo */
.about-img {
  position: relative;
}
.about-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  /* Warm orange border echo */
  box-shadow:
    0 0 0 3px rgba(239,103,36,0.30),
    0 16px 48px rgba(0,0,0,0.55);
}

/* Text */
.about-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid rgba(239,103,36,0.40);
  border-radius: 3px;
  background: rgba(239,103,36,0.08);
}

.about-text .section-heading {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.0;
}

.about-text p {
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 18px;
}
.about-text p:last-of-type { margin-bottom: 32px; }

/* Service area map link */
.service-area-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  transition: color 0.2s ease, letter-spacing 0.2s ease;
}
.service-area-link:hover {
  color: var(--orange-dark);
  letter-spacing: 0.12em;
}


/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  background: #1e1710;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

/* Warm orange radial glow — centered behind the headline */
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 120% at 50% 40%,
      rgba(239,103,36,0.22) 0%,
      rgba(239,103,36,0.10) 35%,
      transparent 70%
    );
  pointer-events: none;
}

/* Top + bottom orange rule lines */
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}
.cta-banner::before { top: 0; }
.cta-banner::after  { bottom: 0; }

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Headline */
.cta-banner-text h2 {
  font-family: var(--ff-head);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 20px;
}
.cta-highlight {
  color: var(--orange);
}
.cta-banner-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.75;
}

/* Two-button row */
.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Phone call button — large, solid orange */
.cta-btn-call {
  background: var(--orange);
  color: var(--white);
  font-size: 0.88rem;
  padding: 18px 36px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cta-btn-call:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}
.cta-phone-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Form link button — ghost */
.cta-btn-form {
  background: transparent;
  color: var(--white);
  font-size: 0.88rem;
  padding: 17px 32px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.30);
  display: inline-flex;
  align-items: center;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.cta-btn-form:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .cta-btn-call, .cta-btn-form { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-inner {
  display: grid;
  /* Logo col wider, two link cols equal and tighter */
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px 64px;
  padding-top: 72px;
  padding-bottom: 56px;
  align-items: start;
}

/* Logo column */
.footer-logo img {
  height: 125px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}
.footer-logo p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
  margin-top: 4px;
}

/* Thin orange rule under logo — visual anchor */
.footer-logo::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  margin-top: 20px;
  opacity: 0.7;
}

/* Link/contact columns */
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px; /* optical alignment with logo text */
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
  line-height: 1.4;
}
.footer-links a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.4;
}
.footer-contact a {
  color: var(--orange);
  font-weight: 600;
}
.footer-contact a:hover { color: var(--orange-dark); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bar span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .icon-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px 48px; }
  .footer-logo { grid-column: span 2; }
  .footer-logo img { height: 100px; }

  /* Slightly reduce the open logo on tablet */
  .logo-img { height: 140px; }
  .header-inner { height: 160px; }
  .site-header.scrolled .header-inner { height: 80px; }
  .site-header.scrolled .logo-img { height: 60px; }
}

/* Mobile */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }

  /* Reduce open logo on mobile so it doesn't overwhelm */
  .logo-img { height: 100px; }
  .header-inner { height: 120px; }
  .site-header.scrolled .header-inner { height: 70px; }
  .site-header.scrolled .logo-img { height: 50px; }

  .hero-content { padding-bottom: 24px; max-width: 100%; }
  .hero-headline { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-headline .line-two { font-size: clamp(2rem, 9vw, 3rem); }

  .trust-bar { padding-inline: 0; }
  .trust-inner { width: 100%; border-radius: 0; flex-wrap: wrap; justify-content: center; }
  .trust-divider { display: none; }
  .trust-item { padding: 12px 20px; }

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

  .ba-frame { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }
  .service-area-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img img { height: 340px; }
  .about-img img { height: 300px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo { grid-column: auto; }
  .footer-logo img { height: 90px; }
  .carousel-btn--prev { left: 8px; }
  .carousel-btn--next { right: 8px; }
}

@media (max-width: 480px) {
  .icon-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 16px; }
}
