/* ============================================================
   OAK ROOTS LLC — MAIN CSS
   Premium Outdoor Living Spaces | Milan, Indiana
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Raleway:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* ════════════════════════════════════════════
     5-COLOR PALETTE — Oak Roots LLC
     ════════════════════════════════════════════ */
  --ivory:        #EDEAE0;   /* Background — main page bg */
  --sand-beige:   #C8BC9A;   /* Warm Sand Beige — tags, borders, warm accents */
  --sage-green:   #8A8A6A;   /* Muted Sage Green — secondary accent, subtle UI */
  --olive-gray:   #636352;   /* Olive Gray — primary CTAs, buttons, active states */
  --dark-olive:   #3C3A28;   /* Dark Olive Brown — text, footer, dark band sections */

  /* Aliases — keep all existing component code working */
  --oak-black:   #0a0a08;         /* pure dark for hero video overlays only */
  --oak-ivory:   #EDEAE0;         /* = --ivory */
  --oak-earth:   #3C3A28;         /* = --dark-olive */
  --oak-cream:   #EDEAE0;         /* ivory for text-on-dark contexts */
  --oak-tan:     #C8BC9A;         /* = --sand-beige */
  --oak-gold:    #636352;         /* = --olive-gray (primary accent) */
  --oak-forest:  #3C3A28;         /* = --dark-olive (dark band sections) */
  --oak-stone:   #8A8A6A;         /* = --sage-green */
  --oak-white:   #FDFAF5;         /* near-white — text on dark backgrounds */
  --oak-dark-overlay: rgba(60,58,40,0.78);  /* dark olive overlay on hero images */

  --font-display:  'Playfair Display', Georgia, serif;
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Raleway', sans-serif;
  --font-impact:   'Bebas Neue', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast:   all 0.2s ease;
  --shadow-gold:  0 4px 30px rgba(99, 99, 82, 0.22);
  --shadow-deep:  0 20px 60px rgba(60,58,40,0.35);

  --max-width: 1320px;
  --section-pad: 88px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--oak-ivory);
  color: var(--oak-earth);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection {
  background: var(--oak-gold);
  color: var(--oak-black);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--oak-gold);
}

.lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--oak-cream);
  opacity: 0.9;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

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

.text-gold   { color: var(--oak-gold); }
.text-cream  { color: var(--oak-cream); }
.text-center { text-align: center; }

.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--oak-gold);
  margin: 20px auto;
}
.gold-rule.left { margin: 20px 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--oak-gold);
  color: var(--oak-black);
}
.btn-gold:hover {
  background: #b8902e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

.btn-white {
  background: transparent;
  color: var(--oak-white);
  border: 2px solid var(--oak-white);
}
.btn-white:hover {
  background: var(--oak-white);
  color: var(--oak-black);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
}

#navbar.scrolled {
  background: rgba(10,10,8,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(212,168,67,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--oak-white);
  letter-spacing: 0.05em;
}
.nav-logo .logo-text span {
  color: var(--oak-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.85);
  transition: var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--oak-gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--oak-gold);
}
.nav-links a:hover::after { width: 100%; }

/* Dropdown */
.nav-dropdown {
  position: relative;
  /* Extend hover zone downward so mouse can travel to the dropdown */
  padding-bottom: 24px;
  margin-bottom: -24px;
}
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after { display: none; }
.nav-dropdown > a .chevron {
  width: 12px;
  height: 12px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.3s;
}
.nav-dropdown:hover > a .chevron {
  transform: rotate(-135deg) translateY(-3px);
}

.dropdown-menu {
  position: absolute;
  /* top: 100% sits right below the nav item; padding-top creates the visual gap */
  top: 100%;
  left: -20px;
  padding-top: 24px; /* transparent bridge — keeps hover alive across the gap */
  background: transparent;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: var(--transition-smooth);
  pointer-events: none;
}
/* The visible box is a pseudo-element so the transparent padding stays clear */
.dropdown-menu::after {
  content: '';
  position: absolute;
  inset: 24px 0 0 0;
  background: rgba(10,10,8,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,168,67,0.2);
  border-top: 2px solid var(--oak-gold);
  z-index: -1;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}
.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: rgba(253,250,245,0.8);
  transition: var(--transition-fast);
}
.dropdown-menu a:hover {
  color: var(--oak-gold);
  background: rgba(212,168,67,0.06);
  padding-left: 30px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-phone {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--oak-cream);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover { color: var(--oak-gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--oak-cream);
  transition: var(--transition-smooth);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--oak-black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--oak-cream);
  transition: color 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.mobile-menu.open nav a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu nav a:hover { color: var(--oak-gold); }
.mobile-menu-sub {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(212,168,67,0.2);
  width: 100%;
}
.mobile-menu-sub a {
  font-family: var(--font-sans) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.7) !important;
}
.mobile-gold-line {
  width: 40px;
  height: 1px;
  background: var(--oak-gold);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-wrap .hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.60) 0%,
      rgba(0,0,0,0.58) 40%,
      rgba(0,0,0,0.85) 100%
    ),
    radial-gradient(
      ellipse 75% 60% at 50% 60%,
      rgba(0,0,0,0.50) 0%,
      rgba(0,0,0,0) 72%
    );
  z-index: 1;
}
/* Keep hero copy crisp and readable over the video */
.hero-content .hero-eyebrow,
.hero-content .hero-title,
.hero-content .hero-sub {
  text-shadow: 0 2px 12px rgba(0,0,0,0.85), 0 1px 30px rgba(0,0,0,0.65);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 40px 100px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--oak-gold);
  margin-bottom: 20px;
  opacity: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--oak-white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  overflow: visible;
}

.hero-title .line {
  display: block;
  overflow: visible;
  padding-bottom: 0.12em;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(253,250,245,0.82);
  letter-spacing: 0.05em;
  margin-bottom: 44px;
  opacity: 0;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: scrollBounce 2s ease-in-out infinite 2s;
}
.scroll-indicator span {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.5);
}
.scroll-indicator .arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--oak-gold);
  border-bottom: 2px solid var(--oak-gold);
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ============================================================
   BRAND STATEMENT SECTION
   ============================================================ */
#brand-statement {
  background: #EAE6D8;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#brand-statement::before {
  content: 'OAK ROOTS';
  position: absolute;
  font-family: var(--font-display);
  font-size: 18vw;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.brand-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--oak-white);
  max-width: 780px;
  margin: 0 auto 70px;
  line-height: 1.4;
  position: relative;
}
.brand-quote::before, .brand-quote::after {
  content: '"';
  color: var(--oak-gold);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.4em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.stats-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 33.33%;
  width: 1px;
  height: 100%;
  background: rgba(212,168,67,0.3);
}
.stats-grid::after {
  content: '';
  position: absolute;
  top: 0;
  left: 66.66%;
  width: 1px;
  height: 100%;
  background: rgba(212,168,67,0.3);
}

.stat-item {
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-line {
  width: 30px;
  height: 2px;
  background: var(--oak-gold);
  margin-bottom: 16px;
}
.stat-number {
  font-family: var(--font-impact);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--oak-gold);
  line-height: 1;
  letter-spacing: 0.04em;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,250,245,0.65);
  margin-top: 8px;
}

/* ============================================================
   FEATURED SERVICE — COMPLETE OUTDOOR LIVING
   ============================================================ */
#featured-service {
  background: var(--oak-black);
  padding: var(--section-pad) 0;
}

.featured-service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.featured-img-wrap {
  position: relative;
  height: 620px;
  overflow: hidden;
}
.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.featured-img-wrap:hover img {
  transform: scale(1.04);
}

.featured-text {
  padding: 60px 70px;
  background: var(--oak-forest);
}

.featured-tag {
  display: inline-block;
  background: var(--oak-gold);
  color: var(--oak-black);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.featured-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--oak-white);
  margin-bottom: 20px;
}

.featured-text p {
  color: rgba(245,240,232,0.8);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.feature-list {
  margin-bottom: 36px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.85);
  border-bottom: 1px solid rgba(212,168,67,0.1);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✓';
  color: var(--oak-gold);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
#services-grid {
  background: var(--oak-black);
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--oak-white);
  margin: 16px 0 16px;
}
.section-header p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--oak-stone);
  max-width: 540px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
/* Flagship service spans two columns so 7 cards fill the grid with no empty cell */
.services-grid .service-card:first-child {
  grid-column: span 2;
}

.service-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,8,0.55);
  transition: background 0.4s ease;
  z-index: 1;
}
.service-card:hover::before {
  background: rgba(10,10,8,0.30);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover img {
  transform: scale(1.07);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 24px;
  z-index: 2;
  border-bottom: 2px solid transparent;
  transition: border-color 0.4s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--oak-gold);
  transition: width 0.5s ease;
  z-index: 3;
}
.service-card:hover::after { width: 100%; }

.service-card:hover { transform: translateY(-6px); }
.service-card { transition: transform 0.4s ease; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--oak-white);
  margin-bottom: 6px;
}
.service-card p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(245,240,232,0.75);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}
.service-card-arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oak-gold);
  transition: gap 0.3s ease;
}
.service-card:hover .service-card-arrow { gap: 14px; }

/* ============================================================
   WHY OAK ROOTS — FEATURE STRIPS
   ============================================================ */
#why-oak-roots {
  background: var(--oak-black);
  padding: var(--section-pad) 0;
}

.feature-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 4px;
}
.feature-strip:last-child { margin-bottom: 0; }
.feature-strip.reverse { direction: rtl; }
.feature-strip.reverse > * { direction: ltr; }

.feature-strip-img {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.feature-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.feature-strip-img:hover img { transform: scale(1.04); }

.feature-strip-text {
  padding: 80px;
  background: var(--oak-forest);
}
.feature-strip.reverse .feature-strip-text { background: #1e2a1f; }

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.feature-strip-text h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: var(--oak-white);
  margin-bottom: 20px;
}
.feature-strip-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(245,240,232,0.8);
}

/* ============================================================
   GALLERY TEASER
   ============================================================ */
#gallery-teaser {
  background: var(--oak-black);
  padding: var(--section-pad) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px;
  margin-bottom: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 5; }
.gallery-item:nth-child(2) { grid-column: span 3; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 4; }

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,8,0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oak-gold);
  margin-bottom: 8px;
}
.gallery-item-overlay p {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--oak-white);
}

/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */
#reviews {
  background: var(--ivory);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.reviews-track-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 120px, black calc(100% - 120px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 120px, black calc(100% - 120px), transparent);
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollReviews 40s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }

@keyframes scrollReviews {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,67,0.15);
  padding: 26px 30px;
  width: 300px;
  flex-shrink: 0;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--oak-gold);
  opacity: 0.2;
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.review-stars span {
  color: var(--oak-gold);
  font-size: 0.85rem;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(245,240,232,0.9);
  margin-bottom: 20px;
}

.review-author {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oak-gold);
}

.reviews-google-attr {
  text-align: center;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.reviews-google-attr img {
  height: 22px;
  display: inline-block;
}
.reviews-google-attr span {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(245,240,232,0.6);
  letter-spacing: 0.1em;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
#process {
  background: var(--oak-black);
  padding: var(--section-pad) 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 70px;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--oak-gold), var(--oak-gold), var(--oak-gold), transparent);
  opacity: 0.35;
}

.process-step {
  text-align: center;
  padding: 0 30px;
  position: relative;
}

.process-number {
  font-family: var(--font-impact);
  font-size: 5rem;
  color: var(--oak-gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 8px;
}
.process-dot {
  width: 16px;
  height: 16px;
  background: var(--oak-gold);
  border-radius: 50%;
  margin: 0 auto 28px;
  box-shadow: 0 0 20px rgba(212,168,67,0.4);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--oak-white);
  margin-bottom: 14px;
}
.process-step p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.75;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  position: relative;
  padding: 130px 40px;
  text-align: center;
  overflow: hidden;
}
#cta-banner .cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#cta-banner .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
}
#cta-banner .cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,8,0.80);
}
#cta-banner .cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
#cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--oak-white);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
#cta-banner p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(245,240,232,0.8);
  margin-bottom: 44px;
}
#cta-banner .cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark-olive);
  border-top: 1px solid rgba(200,188,154,0.18);
  padding: 90px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px 70px;
}

.footer-logo img {
  height: 48px;
  margin-bottom: 16px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--oak-white);
  margin-bottom: 14px;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--oak-stone);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212,168,67,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oak-stone);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}
.footer-social a:hover {
  border-color: var(--oak-gold);
  color: var(--oak-gold);
  background: rgba(212,168,67,0.08);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oak-gold);
  margin-bottom: 24px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--oak-stone);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul a:hover {
  color: var(--oak-gold);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--oak-stone);
}
.footer-contact-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a:hover { color: var(--oak-gold); }

.footer-map {
  width: 100%;
  height: 160px;
  border: none;
  filter: grayscale(60%) opacity(0.75);
  margin-top: 20px;
  transition: filter 0.3s;
}
.footer-map:hover { filter: grayscale(0%) opacity(1); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(140,128,112,0.6);
  letter-spacing: 0.06em;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(60,58,40,0.22), rgba(60,58,40,0.82));
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 40px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  /* Centre the H1 and description */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Keep breadcrumb left-aligned */
.page-hero-content .breadcrumb {
  align-self: flex-start;
  text-align: left;
}
.page-hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  color: var(--oak-white);
  margin: 16px 0 20px;
  line-height: 1.15;
  max-width: 900px;
  overflow: visible;
  word-break: normal;
  hyphens: none;
}
.page-hero-content .lead {
  max-width: 680px;
  text-align: center;
}

/* ============================================================
   CONTENT SECTIONS (inner pages)
   ============================================================ */
.content-section {
  padding: var(--section-pad) 0;
  background: var(--oak-black);
}
.content-section.alt { background: var(--oak-forest); }
.content-section.dark { background: #060604; }

.content-block {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}
.content-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--oak-white);
  margin-bottom: 20px;
}
.content-block h2.gold { color: var(--oak-gold); }
.content-block p {
  color: rgba(245,240,232,0.82);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-img {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.col-img:hover img { transform: scale(1.04); }

.col-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--oak-white);
  margin: 16px 0 20px;
}
.col-text p {
  color: rgba(245,240,232,0.82);
  line-height: 1.9;
  margin-bottom: 24px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-full {
  padding: var(--section-pad) 0;
  background: var(--oak-black);
}

.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(212,168,67,0.3);
  background: transparent;
  color: var(--oak-stone);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--oak-gold);
  color: var(--oak-gold);
  background: rgba(212,168,67,0.06);
}

.masonry-grid {
  column-count: 3;
  column-gap: 8px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.masonry-item.tall { aspect-ratio: 3/4; }
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.masonry-item:hover img { transform: scale(1.06); }
.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,8,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--oak-white);
  letter-spacing: 0.08em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 28px;
  right: 36px;
  font-size: 2rem;
  color: var(--oak-cream);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-close:hover { color: var(--oak-gold); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.contact-form-wrap {
  background: rgba(45,61,46,0.4);
  border: 1px solid rgba(212,168,67,0.15);
  padding: 50px;
}
.contact-form-wrap h2 {
  font-size: 2rem;
  color: var(--oak-white);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oak-gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(10,10,8,0.6);
  border: 1px solid rgba(212,168,67,0.25);
  padding: 14px 18px;
  color: var(--oak-cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--oak-gold);
}
.form-group select option { background: var(--oak-black); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============================================================
   PAVER SWATCHES
   ============================================================ */
.paver-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 50px 0;
}
.paver-swatch {
  cursor: pointer;
  text-align: center;
  position: relative;
}
.paver-swatch-color {
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.paver-swatch:hover .paver-swatch-color {
  border-color: var(--oak-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.paver-swatch-tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--oak-gold);
  color: var(--oak-black);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
  pointer-events: none;
}
.paver-swatch:hover .paver-swatch-tooltip { opacity: 1; }
.paver-swatch-name {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--oak-cream);
  margin-top: 10px;
  letter-spacing: 0.06em;
}

/* ============================================================
   AREA PAGES
   ============================================================ */
.service-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin: 50px 0;
}
.service-highlight-card {
  background: rgba(99,99,80,0.09);
  border: 1px solid rgba(99,99,80,0.18);
  padding: 40px;
  transition: var(--transition-smooth);
}
.service-highlight-card:hover {
  border-color: rgba(99,99,80,0.40);
  background: rgba(99,99,80,0.16);
}
.service-highlight-card h3 {
  font-size: 1.3rem;
  color: var(--oak-earth);
  margin-bottom: 14px;
}
.service-highlight-card p {
  font-size: 0.9rem;
  color: rgba(60,58,40,0.75);
  line-height: 1.8;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1100px) {
  :root { --section-pad: 66px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-service-inner { grid-template-columns: 1fr; }
  .featured-img-wrap { height: 420px; clip-path: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feature-strip, .feature-strip.reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-strip-img { height: 360px; }
  .feature-strip-text { padding: 50px 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 50px; }
  .paver-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 48px; }

  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links, .nav-cta .nav-phone { display: none; }
  /* Keep the CTA button but smaller on mobile */
  .nav-cta .btn { font-size: 0.68rem; padding: 10px 18px; }
  .hamburger { display: flex; }

  /* Logo always visible on mobile */
  .nav-logo img { height: 42px; }
  .nav-logo .logo-text { font-size: 1.2rem; }

  /* Navbar hides when scrolling down on mobile, reveals on scroll up */
  #navbar.nav-hidden {
    transform: translateY(-100%);
  }
  #navbar {
    transition: transform 0.35s ease, background 0.4s ease, padding 0.4s ease;
  }

  .hero-content { padding: 0 24px 80px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 260px; justify-content: center; }

  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stats-grid::before, .stats-grid::after { display: none; }
  .stat-item { padding: 24px 20px; border-bottom: 1px solid rgba(212,168,67,0.15); }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 300px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item { grid-column: span 1 !important; aspect-ratio: 4/3; }

  .masonry-grid { column-count: 2; }

  /* Footer: stack all columns, logo+NAP grouped together at top */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* On mobile reorder so logo is directly above contact/NAP */
  .footer-grid > div:nth-child(1) { order: 1; } /* Logo/About */
  .footer-grid > div:nth-child(4) { order: 2; } /* Contact/NAP */
  .footer-grid > div:nth-child(2) { order: 3; } /* Services */
  .footer-grid > div:nth-child(3) { order: 4; } /* Company */

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

  .two-col { padding: 0 24px; }
  .col-img { height: 300px; }
  .page-hero-content { padding: 0 24px 60px; }

  /* Page hero: keep H1 centred on mobile */
  .page-hero-content .breadcrumb { align-self: center; }

  .paver-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid-2 { grid-template-columns: 1fr; }
  .contact-layout { padding: 0 24px; }
  .contact-form-wrap { padding: 32px 24px; }

  .featured-text { padding: 40px 28px; }

  #cta-banner { padding: 80px 24px; }
  #cta-banner .cta-btns { flex-direction: column; align-items: center; }

  .service-highlights { grid-template-columns: 1fr; }

  /* Services page cards: single column on mobile */
  .services-list { grid-template-columns: 1fr; gap: 8px; }
  .service-list-item .sli-img { height: 200px; }

  /* Mobile footer: the .footer-logo-mobile-label shows the brand name
     above the NAP block so it reads as: [Logo] → [Address/Phone] */
  .footer-logo-mobile-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--oak-white);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212,168,67,0.2);
  }
}

/* Hide the mobile label on desktop */
.footer-logo-mobile-label { display: none; }

/* ============================================================
   REDUCED MOTION ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reviews-track { animation: none; }
  .scroll-indicator { animation: none; }
}

/* ============================================================
   IVORY + OLIVE PALETTE — THEME OVERRIDES
   ============================================================ */

/* ── Buttons ───────────────────────────────────────────────── */
.btn-gold {
  background: var(--oak-gold);
  color: var(--oak-white);
}
.btn-gold:hover {
  background: var(--oak-forest);
  box-shadow: 0 4px 30px rgba(99,99,80,0.25);
}
.btn-outline {
  color: var(--oak-gold);
  border-color: var(--oak-gold);
}
.btn-outline:hover {
  background: var(--oak-gold);
  color: var(--oak-white);
}

/* ── Navbar (scrolled = ivory) ─────────────────────────────── */
#navbar.scrolled {
  background: rgba(237,234,224,0.97);
  border-bottom: 1px solid rgba(99,99,80,0.18);
}

/* Nav links: cream by default (readable over dark hero images) */
.nav-links a {
  color: rgba(253,250,245,0.88);
}
/* Nav links: dark olive when scrolled over ivory background */
#navbar.scrolled .nav-links a {
  color: rgba(60,58,40,0.85);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--oak-gold);
}
#navbar.scrolled .nav-links a:hover,
#navbar.scrolled .nav-links a.active {
  color: var(--oak-gold);
}
.nav-links a::after { background: var(--oak-gold); }

/* Phone CTA: cream over hero, dark when scrolled */
.nav-phone { color: rgba(253,250,245,0.88); }
#navbar.scrolled .nav-phone { color: var(--oak-earth); }
.nav-phone:hover { color: var(--oak-gold); }

/* Hamburger: cream over hero, dark when scrolled */
.hamburger span { background: rgba(253,250,245,0.9); }
#navbar.scrolled .hamburger span { background: var(--oak-earth); }

/* Dropdown — ivory box, dark text, proper stacking */
.dropdown-menu {
  z-index: 1100;
}
.dropdown-menu::after {
  background: rgba(237,234,224,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(99,99,80,0.22);
  border-top-color: var(--oak-gold);
}
.dropdown-menu a {
  color: rgba(60,58,40,0.82);
  position: relative;
  z-index: 1;
}
.dropdown-menu a:hover {
  color: var(--oak-gold);
  background: rgba(99,99,80,0.07);
}

/* ── Content sections ──────────────────────────────────────── */
.content-section { background: var(--ivory); }
.content-section.alt { background: #EAE6D8; } /* warm sand tint — subtle alternation */

.col-text h2, .content-block h2 { color: var(--oak-earth); }
.col-text p, .content-block p {
  color: rgba(60,58,40,0.80);
}

.section-header h2 { color: var(--oak-earth); }
.section-header p { color: rgba(60,58,40,0.65); }

/* ── Page hero: keep lead text readable over dark overlay ──── */
.page-hero-content .lead { color: rgba(253,250,245,0.90); }
.lead { color: rgba(60,58,40,0.82); }

/* ── Services grid (homepage) ──────────────────────────────── */
#services-grid { background: var(--oak-ivory); }
.section-header h2 { color: var(--oak-earth); }

/* ── Why Oak Roots strips ──────────────────────────────────── */
#why-oak-roots { background: var(--oak-ivory); }
.feature-strip-text { background: #EAE6D8; }
.feature-strip.reverse .feature-strip-text { background: var(--ivory); }

/* ── Featured service ──────────────────────────────────────── */
#featured-service { background: var(--oak-ivory); }
.featured-text { background: #EAE6D8; }

/* ── Gallery ───────────────────────────────────────────────── */
.gallery-full { background: var(--oak-ivory); }
.filter-btn {
  border-color: rgba(99,99,80,0.3);
  color: rgba(60,58,40,0.65);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--oak-gold);
  color: var(--oak-gold);
  background: rgba(99,99,80,0.07);
}
#gallery-teaser { background: var(--oak-ivory); }

/* ── Process ───────────────────────────────────────────────── */
#process { background: var(--oak-ivory); }
.process-step h3 { color: var(--oak-earth); }
.process-step p { color: rgba(60,58,40,0.7); }
.process-grid::before {
  background: linear-gradient(to right, transparent, var(--oak-gold), var(--oak-gold), transparent);
}

/* ── Stats (brand statement stays dark) ───────────────────── */
.stat-label { color: rgba(253,250,245,0.65); }

/* ── Contact form ──────────────────────────────────────────── */
.contact-form-wrap {
  background: rgba(99,99,80,0.08);
  border-color: rgba(99,99,80,0.2);
}
.contact-form-wrap h2 { color: var(--oak-earth); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(237,234,224,0.85);
  border-color: rgba(99,99,80,0.25);
  color: var(--oak-earth);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(60,58,40,0.4); }
.form-group select option { background: var(--oak-ivory); color: var(--oak-earth); }

/* ── Footer (stays dark, only accent updated) ──────────────── */
#footer { border-top-color: rgba(99,99,80,0.2); }
.footer-social a { border-color: rgba(99,99,80,0.3); }
.footer-social a:hover {
  border-color: var(--oak-gold);
  color: var(--oak-gold);
  background: rgba(99,99,80,0.08);
}
.footer-col h4 { color: var(--oak-gold); }
.footer-col ul a:hover { color: var(--oak-gold); }
.footer-contact-item a:hover { color: var(--oak-gold); }
.footer-bottom { border-top-color: rgba(255,255,255,0.07); }
.lightbox-close:hover { color: var(--oak-gold); }

/* ── Site map / service area ───────────────────────────────── */
.service-area-section { background: #EAE6D8; }
.service-area-cities {
  flex-wrap: wrap;
  gap: 12px;
}
.city-tag {
  border-color: rgba(253,250,245,0.3);
  color: rgba(253,250,245,0.80);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 200px;
}
.city-tag:hover {
  border-color: var(--oak-cream);
  color: var(--oak-cream);
}
@media (max-width: 600px) {
  .city-tag { font-size: 0.68rem; padding: 7px 12px; letter-spacing: 0.08em; max-width: 100%; }
  .service-area-cities { gap: 10px; }
  .service-area-section { padding: 60px 20px; }
}

/* ── Page hero hero-CTA button ─────────────────────────────── */
.hero-cta-wrap {
  margin-top: 28px;
}
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(253,250,245,0.50);
  color: var(--oak-white);
  background: transparent;
  transition: var(--transition-smooth);
  cursor: pointer;
}
.btn-hero-cta:hover {
  background: var(--oak-gold);
  border-color: var(--oak-gold);
  color: var(--oak-white);
}

/* ── Review cards — light themed ──────────────────────────── */
.review-card {
  background: #EAE6D8;
  border: 1px solid rgba(99,99,82,0.22);
}
.review-card::before { color: var(--olive-gray); opacity: 0.20; }
.review-stars span { color: var(--olive-gray); }
.review-text { color: rgba(60,58,40,0.82); font-style: italic; }
.review-author { color: var(--olive-gray); }
.reviews-google-attr span { color: rgba(60,58,40,0.55); }

/* ── Scroll-progress bar ───────────────────────────────────── */
#scroll-progress { background: var(--olive-gray); }

/* ═══════════════════════════════════════════════════════════
   FULL 5-COLOR PALETTE — final pass overrides
   Ivory · Sand Beige · Sage Green · Olive Gray · Dark Olive
   ═══════════════════════════════════════════════════════════ */

/* Footer: warm ivory text on dark olive background */
.footer-logo-text { color: var(--ivory); }
.footer-tagline { color: var(--sand-beige); }
.footer-col h4 { color: var(--sand-beige); }
.footer-col ul a { color: rgba(200,188,154,0.75); }
.footer-col ul a:hover { color: var(--ivory); }
.footer-contact-item { color: rgba(200,188,154,0.80); }
.footer-contact-item a:hover { color: var(--ivory); }
.footer-bottom p { color: rgba(200,188,154,0.5); }
.footer-bottom { border-top-color: rgba(200,188,154,0.12); }
.footer-social a {
  border-color: rgba(200,188,154,0.25);
  color: rgba(200,188,154,0.65);
}
.footer-social a:hover {
  border-color: var(--sand-beige);
  color: var(--sand-beige);
  background: rgba(200,188,154,0.08);
}

/* Brand quote section: dark text on sand beige background */
.brand-quote { color: var(--dark-olive); }
.stat-number { color: var(--olive-gray); }
.stat-label { color: rgba(60,58,40,0.60); }
.stat-line { background: var(--olive-gray); }
.gold-rule { background: var(--olive-gray); }
.stats-grid::before,
.stats-grid::after { background: rgba(99,99,82,0.22); }

/* Process section: ivory themed */
.process-number { color: rgba(99,99,82,0.22); }
.process-dot {
  background: var(--olive-gray);
  box-shadow: 0 0 20px rgba(99,99,82,0.35);
}
#process { background: var(--ivory); }
.process-step h3 { color: var(--dark-olive); }
.process-step p { color: rgba(60,58,40,0.68); }

/* Feature strips text panels — light bg, dark text */
.feature-strip-text h2 { color: var(--dark-olive); }
.feature-strip-text p { color: rgba(60,58,40,0.78); }

/* Featured service text panel — light bg, dark text */
.featured-text h2 { color: var(--dark-olive); }
.featured-text p { color: rgba(60,58,40,0.78); }
.feature-list li { color: rgba(60,58,40,0.82); border-bottom-color: rgba(99,99,82,0.18); }
.feature-list li::before { color: var(--olive-gray); }
.featured-tag {
  background: var(--olive-gray);
  color: var(--ivory);
}

/* CTA banner */
#cta-banner .cta-bg::after { background: rgba(60,58,40,0.80); }

/* Service cards on homepage */
.service-card h3 { color: var(--ivory); }
.service-card p { color: rgba(237,234,224,0.75); }
.service-card-arrow { color: var(--sand-beige); }
.service-card::after { background: var(--sand-beige); }
.service-card::before { background: rgba(60,58,40,0.50); }

/* Gallery overlay */
.gallery-item-overlay span { color: var(--sand-beige); }
.gallery-item-overlay p { color: var(--ivory); }
.masonry-item-overlay { background: rgba(60,58,40,0.52); }
.masonry-item-overlay span { color: var(--ivory); }
.gallery-full { background: var(--ivory); }

/* Filter buttons */
.filter-btn {
  border-color: rgba(99,99,82,0.28);
  color: rgba(60,58,40,0.65);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--olive-gray);
  color: var(--olive-gray);
  background: rgba(99,99,82,0.07);
}

/* Contact form on dark/light */
.contact-form-wrap {
  background: rgba(99,99,82,0.07);
  border-color: rgba(99,99,82,0.20);
}
.form-group label { color: var(--olive-gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--olive-gray); }

/* Mobile menu: dark olive background */
.mobile-menu { background: var(--dark-olive); }
.mobile-menu nav a { color: rgba(237,234,224,0.90); }
.mobile-menu nav a:hover { color: var(--sand-beige); }
.mobile-menu-sub a { color: rgba(200,188,154,0.70) !important; }
.mobile-gold-line { background: var(--sand-beige); }

/* Loader uses dark olive */
#loader { background: var(--dark-olive); }

/* Eyebrow labels */
.eyebrow { color: var(--olive-gray); }

/* ============================================================
   HERO — all text, boxes & buttons white (over the video)
   ============================================================ */
#hero .hero-eyebrow,
#hero .hero-title,
#hero .hero-title .line,
#hero .hero-sub,
#hero .scroll-indicator span {
  color: #ffffff !important;
  opacity: 1 !important;
}
#hero .hero-btns .btn {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}
#hero .hero-btns .btn:hover {
  background: #ffffff !important;
  color: #0a0a08 !important;
}
#hero .scroll-indicator .arrow {
  border-right-color: #ffffff !important;
  border-bottom-color: #ffffff !important;
}

/* Brand-statement: single centered stat (Google rating only) */
.stats-grid.single {
  grid-template-columns: 1fr;
  max-width: 360px;
}
.stats-grid.single::before,
.stats-grid.single::after {
  display: none;
}

/* ============================================================
   CONTACT PAGE — force dark, readable text on the ivory bg
   ============================================================ */
.contact-layout h2,
.contact-layout h3,
.contact-layout p,
.contact-layout strong,
.contact-layout label,
.contact-layout span:not(.icon),
.contact-layout .footer-contact-item a:not(.btn) {
  color: var(--oak-earth) !important;
}
.contact-layout .eyebrow { color: var(--olive-gray) !important; }
.contact-layout a[href^="tel:"] { color: var(--olive-gray) !important; }

/* ============================================================
   FIX: About "Areas We Proudly Serve" dark band — light text
   ============================================================ */
.service-area-section .eyebrow { color: var(--sand-beige) !important; }
.service-area-section h2 { color: var(--ivory) !important; }
.service-area-section p { color: rgba(237,234,224,0.82) !important; }
.service-area-section .city-tag { color: rgba(237,234,224,0.9) !important; border-color: rgba(237,234,224,0.35) !important; }
.service-area-section .city-tag:hover { background: rgba(237,234,224,0.12) !important; color:#fff !important; }

/* FIX: footer bottom accent link readable on the dark footer */
.footer-bottom a { color: var(--sand-beige) !important; }

/* FIX: homepage "Serving Milan, IN & Surrounding Communities" dark band
   — brighter, clearly visible city-tag boxes and text */
.city-band .city-tag {
  color: rgba(255,255,255,0.92) !important;
  border-color: rgba(255,255,255,0.4) !important;
  background: rgba(255,255,255,0.06) !important;
}
.city-band .city-tag:hover {
  color: #fff !important;
  border-color: var(--sand-beige) !important;
  background: rgba(255,255,255,0.14) !important;
}
