/* ============================================================
   WOLF'S CORNER CONSTRUCTION — Master Stylesheet
   Custom Build | SEO/AEO Optimized | Mobile-First
   ============================================================ */

/* --- Design Tokens --- */
:root {
  /* Brand Colors */
  --navy: #1B3A5C;
  --navy-dark: #0F2840;
  --navy-light: #2A5080;
  --steel: #4A6D8C;
  --silver: #B8C4CE;
  --cream: #FFFFFF;
  --sand: #FFFFFF;
  --surface-alt: #F2F2F2;
  --white: #FFFFFF;
  --charcoal: #1A1A1A;
  --text: #333333;
  --text-light: #666666;
  --border: #E0E0E0;
  --success: #2D8C3C;
  --error: #D32F2F;

  /* Typography — industrial signage fonts (Apr 25 client direction) */
  --font-heading: 'Big Shoulders Display', 'Arial Black', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', sans-serif;

  /* Layout */
  --container: 1200px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;
  --header-height: 80px;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);

  /* Border Radius — sharp/rectangular per Apr 25 2026 client direction (bold/masculine) */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 2px;
  --radius-xl: 2px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--navy-light);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-light {
  color: var(--text-light);
}

.text-white {
  color: var(--white);
}

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-sand {
  background: var(--surface-alt);
}

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

.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: var(--white);
}

.section-cream {
  background: var(--surface-alt);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.55;
  margin-top: 1rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-navy .section-label {
  color: var(--silver);
}

.section-navy .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.section-navy .card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.section-navy .card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.section-navy .card p {
  color: rgba(255, 255, 255, 0.78);
}

/* Where We Work — parallax photo bg with solid navy cards */
.where-we-work {
  position: relative;
  background-color: var(--navy-dark);
  background-image: url('../images/where-we-work-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.where-we-work::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 40, 64, 0.92) 0%, rgba(0, 0, 0, 0.9) 100%);
  pointer-events: none;
  z-index: 1;
}
.where-we-work > .container {
  position: relative;
  z-index: 2;
}
.where-we-work .card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.where-we-work .card:hover {
  background: var(--navy-light);
  border-color: rgba(255, 255, 255, 0.18);
}
@media (max-width: 768px) {
  .where-we-work {
    background-attachment: scroll;
  }
}

/* --- Grid System --- */
.grid {
  display: grid;
  gap: 2rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-cream {
  background: var(--cream);
  color: var(--navy-dark);
  border-color: var(--cream);
}

.btn-cream:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Header (Floating / Shrinking — inspired by 21st.dev header-2) --- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header.menu-open {
  background: rgba(255, 255, 255, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 24px;
  transition: padding 0.3s ease, height 0.3s ease;
}

/* Header keeps full width and height on scroll — only opacity/blur changes */

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.logo-full {
  height: 56px;
  width: auto;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.logo-mark {
  height: 40px;
  width: auto;
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Full logo stays visible on scroll — no swap to brandmark */

/* Desktop Nav — Ghost button style */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--charcoal);
  background: var(--surface-alt);
}

.nav-links a.active {
  color: var(--navy);
  background: var(--surface-alt);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  padding: 6px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  color: var(--charcoal);
}

.nav-dropdown-menu a:hover {
  background: var(--surface-alt);
  color: var(--charcoal);
}

/* Header CTA buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-cta-outline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.header-cta-outline:hover {
  background: var(--surface-alt);
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.header-cta {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--white) !important;
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.header-cta:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white) !important;
}

/* Mobile Toggle — Animated SVG hamburger (from 21st.dev MenuToggleIcon) */
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}

.mobile-toggle:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.mobile-toggle svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
}

.mobile-toggle svg line {
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.mobile-toggle.active .line-top {
  transform: translateY(5px) rotate(45deg);
}

.mobile-toggle.active .line-mid {
  opacity: 0;
}

.mobile-toggle.active .line-bot {
  transform: translateY(-5px) rotate(-45deg);
}

/* Mobile Nav — Full-screen overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1rem 1rem 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-links a {
  display: block;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  padding: 16px 14px;
  min-height: 48px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--navy);
  background: var(--surface-alt);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 1rem;
}

.mobile-nav-actions .btn {
  width: 100%;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  padding: 12px 24px;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 20s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 40, 64, 0.92) 0%,
    rgba(27, 58, 92, 0.75) 50%,
    rgba(15, 40, 64, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1150px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* Hero social proof badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 8px 20px 8px 8px;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  background: var(--navy-dark);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero p {
  color: var(--silver);
  font-size: 1.3rem;
  line-height: 1.55;
  margin-top: 1rem;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.breadcrumbs a {
  color: var(--silver);
}

.breadcrumbs a:hover {
  color: var(--white);
}

.breadcrumbs span {
  color: var(--steel);
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--surface-alt);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--navy);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card-img {
  transform: scale(1.04);
}

.card-body {
  padding: 2rem;
}

.card-body h3 {
  margin-bottom: 0.75rem;
}

.card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap var(--transition), color var(--transition);
}

.card-link:hover {
  gap: 0.85rem;
  color: var(--navy-light);
}

/* Service Card Variant — numbered, gradient bg */
.card-service {
  background: var(--surface-alt);
  border: none;
  position: relative;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.card-service::before {
  content: attr(data-number);
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 0.05em;
}

.card-service:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(27, 58, 92, 0.12);
}

.card-service .card-icon {
  width: 48px;
  height: 48px;
  color: var(--navy);
  margin-bottom: 2rem;
}

.card-service h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.card-service p {
  color: var(--text-light);
  font-size: 0.95rem;
  flex-grow: 1;
}

.card-service .card-link {
  margin-top: auto;
  padding-top: 1.5rem;
}

/* --- Split Layout --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

/* --- Stats / Feature Grid --- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--transition);
}

.feature-item:hover .feature-icon {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.05);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-item h4 {
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- Process Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 2rem;
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  letter-spacing: 0.02em;
}

.process-step h4 {
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) {
  .testimonial-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testimonial-grid-4 { grid-template-columns: 1fr; }
}

.testimonial-grid-4 .testimonial {
  padding: 1.75rem;
}
.testimonial-grid-4 .testimonial blockquote {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Google reviews badge */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.25rem;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}
.google-badge:hover {
  border-color: var(--charcoal);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.google-g {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.google-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.google-badge-stars {
  color: #F5A623;
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.google-badge-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-top: 2px;
}

.testimonial {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.testimonial:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--navy);
  opacity: 0.08;
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: #F5A623;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}

.testimonial blockquote {
  font-size: 1rem;
  font-style: normal;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}

.testimonial-location {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* ============================================================
   GOOGLE-STYLE REVIEW CARDS
   Matches Google's review layout in Wolf's Corner branding
   ============================================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 1100px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .review-grid { grid-template-columns: 1fr; }
}

.review-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: left;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  border-color: var(--charcoal);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  background: var(--navy);
  flex-shrink: 0;
  text-transform: uppercase;
  line-height: 1;
}
.review-avatar-navy { background: var(--navy); }
.review-avatar-navy-light { background: var(--navy-light); }
.review-avatar-steel { background: var(--steel); }
.review-avatar-charcoal { background: var(--charcoal); }

.review-meta {
  flex: 1;
  min-width: 0;
}
.review-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.review-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 3px;
  line-height: 1.3;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}
.review-stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 1.5px;
  line-height: 1;
}
.review-date {
  font-size: 0.82rem;
  color: var(--text-light);
}

.review-subtitle {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 1rem;
  flex: 1;
}

.review-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 6px;
  margin-top: auto;
}
.review-photo {
  display: block;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-alt);
  transition: transform 0.4s ease;
}
.review-photo:hover {
  transform: scale(1.04);
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
}

.faq-question:hover {
  color: var(--navy);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 1rem;
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 1.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 40, 64, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* --- Contact Form --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 58, 92, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* --- CTA Banner --- */
.cta-banner {
  background-color: var(--navy-dark);
  background-image: url('../images/contracting-hero.jpg');
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 40, 64, 0.92) 0%, rgba(0, 0, 0, 0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

.cta-banner > .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--silver);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: var(--silver);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: var(--silver);
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  color: var(--silver);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--silver);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--navy);
  color: var(--white);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--silver);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .stagger-1, .stagger-2, .stagger-3, .stagger-4 {
    transition-delay: 0s;
  }
  html {
    scroll-behavior: auto;
  }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4,
  .stat-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --header-height: 70px;
  }

  .container {
    padding: 0 16px;
  }

  /* Header Mobile */
  .header {
    border-radius: 0 !important;
    max-width: 100% !important;
    top: 0 !important;
    border: none;
    border-bottom: 1px solid transparent;
  }

  .header.scrolled {
    border-bottom-color: var(--border);
    border-radius: 0 !important;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2rem;
    white-space: normal;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4,
  .split {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 2rem;
  }

  .stat-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Trust Bar */
  .trust-bar-inner {
    gap: 1.25rem;
    justify-content: center;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery labels always visible on mobile (no hover) */
  .gallery-item::after {
    opacity: 1;
  }
  .gallery-item-label {
    opacity: 1;
    transform: translateY(0);
    font-size: 0.85rem;
    bottom: 12px;
    left: 12px;
  }

  /* Hide video hero on mobile — use static image fallback */
  .hero-video {
    display: none;
  }

  /* Parallax doesn't work well on mobile — disable */
  .cta-banner {
    background-attachment: scroll;
  }

  /* Equipment scroll — manual swipe on mobile */
  .equipment-track {
    animation: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 16px;
  }
  .equipment-card {
    width: 260px;
    height: 180px;
    scroll-snap-align: start;
  }

  /* Testimonial quote mark smaller on mobile */
  .testimonial::before {
    font-size: 3rem;
    top: -10px;
  }

  /* Before/After slider — larger handle for touch */
  .ba-handle::after {
    width: 52px;
    height: 52px;
  }

  /* Quote form inputs — ensure 44px min touch target */
  .quote-form-group input,
  .quote-form-group select,
  .quote-form-group textarea {
    min-height: 44px;
    font-size: 16px; /* Prevents iOS auto-zoom */
  }
}

@media (max-width: 480px) {
  .stat-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .equipment-card {
    width: 220px;
    height: 160px;
  }
}

/* ============================================================
   SERVICE AREA PAGES
   ============================================================ */
.nearby-areas a {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 18px;
  background: var(--surface-alt);
  border-radius: 100px;
  color: var(--text);
  transition: all var(--transition);
  text-decoration: none;
}

.nearby-areas a:hover {
  background: var(--navy);
  color: var(--white);
}

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

/* ============================================================
   STATS COUNTER SECTION
   ============================================================ */
.stats-bar {
  padding: 100px 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  position: relative;
  text-align: center;
  padding: 32px 24px;
  color: var(--white);
}

.stat-item:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 4.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin-bottom: 0;
  font-feature-settings: 'tnum';
}

.stat-number::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--white);
  margin: 1.25rem auto 1.25rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats-bar {
    padding: 70px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 36px 16px;
  }
  .stat-item:nth-child(3)::before {
    display: none;
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 480px) {
  .stat-number::after {
    margin: 1rem auto;
    width: 36px;
  }
  .stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
  }
}

/* ============================================================
   VIDEO HERO BACKGROUND
   ============================================================ */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 177.78vh;
  height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
}

/* ============================================================
   GALLERY HOVER ZOOM EFFECT
   ============================================================ */
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}

.gallery-item img {
  transition: transform 0.6s ease, filter 0.6s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 20, 40, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PARALLAX CTA SECTION
   ============================================================ */
.cta-banner {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* ============================================================
   EQUIPMENT HORIZONTAL SCROLL
   ============================================================ */
.equipment-scroll {
  padding: 80px 0;
  background: var(--surface-alt);
  overflow: hidden;
}

.equipment-track {
  display: flex;
  gap: 24px;
  animation: equipmentScroll 30s linear infinite;
  width: max-content;
}

.equipment-track:hover {
  animation-play-state: paused;
}

.equipment-card {
  flex-shrink: 0;
  width: 300px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

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

.equipment-card:hover img {
  transform: scale(1.05);
}

@keyframes equipmentScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .equipment-track {
    animation: none;
    overflow-x: auto;
  }
}

/* ============================================================
   TESTIMONIAL ENHANCEMENTS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial {
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--cream);
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 16px;
  font-size: 5rem;
  font-family: 'Manrope', sans-serif;
  color: var(--cream);
  opacity: 0.3;
  line-height: 1;
}

.testimonial blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.testimonial-stars {
  color: var(--cream);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-author {
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BEFORE/AFTER SLIDER
   ============================================================ */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: col-resize;
  user-select: none;
  max-width: 800px;
  margin: 0 auto;
}

.ba-slider img {
  display: block;
  width: 100%;
  height: auto;
}

.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.ba-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--cream);
  cursor: col-resize;
  z-index: 10;
  transform: translateX(-50%);
}

.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ba-handle::before {
  content: '\2194';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  font-size: 20px;
  color: var(--navy);
  font-weight: 700;
}

.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 16px;
  background: rgba(10, 20, 40, 0.7);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  z-index: 5;
}

.ba-label-before { right: 16px; }
.ba-label-after { left: 16px; }

/* ============================================================
   BOLD/MASCULINE DIRECTION — Apr 25 2026
   Per Glen feedback: shift to job-site authority, sharp corners,
   navy as solid action color, cream as outlined accent.
   Reference: jtmsite.com
   ============================================================ */

/* --- Utility bar (above main header) --- */
.utility-bar {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.utility-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.utility-bar-left,
.utility-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.utility-bar a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}

.utility-bar a:hover {
  color: var(--cream);
}

.utility-bar svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.utility-bar .util-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.18);
}

.utility-bar-socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.utility-bar-socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

@media (max-width: 720px) {
  .utility-bar-inner {
    justify-content: center;
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .utility-bar-left,
  .utility-bar-right {
    gap: 1rem;
  }
  .utility-bar .util-hours,
  .utility-bar .util-divider {
    display: none;
  }
}

/* --- Eyebrow accent (cream line + tracked label) --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.75rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  background: var(--cream);
}

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

.eyebrow.eyebrow-dark::before {
  background: var(--navy);
}

/* --- Bracket section header (left-aligned, cream L-bracket frame) --- */
.bracket-header {
  position: relative;
  display: inline-block;
  padding: 18px 28px 18px 0;
  margin: 0 0 3rem;
  max-width: 100%;
}

.bracket-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--cream);
}

.bracket-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: var(--cream);
}

.bracket-header h2 {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}

.bracket-header .eyebrow {
  margin-bottom: 1rem;
}

.section-navy .bracket-header::before,
.section-navy .bracket-header::after {
  background: var(--cream);
}

/* When bracket header is centered, wrap it */
.bracket-header-wrap {
  display: flex;
  margin-bottom: 3.5rem;
}

.bracket-header-wrap.center {
  justify-content: center;
}

.bracket-header-wrap.center .bracket-header {
  text-align: left;
}

/* --- Sharp corners override on existing UI --- */
.btn,
.header-cta,
.header-cta-outline,
.nav-links a,
.nav-dropdown-menu,
.nav-dropdown-menu a,
.mobile-toggle,
.mobile-nav-links a {
  border-radius: 0 !important;
}

.btn {
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  font-size: 0.9rem;
  border-width: 2px;
}

.btn:hover {
  transform: none !important;
}

/* --- Hero refinements (photo-led, larger type, eyebrow, single CTA) --- */
.hero {
  min-height: 78vh;
  align-items: center;
  padding: 100px 0 80px;
}

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(15, 40, 64, 0.78) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  white-space: nowrap;
}

.hero p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 820px;
  line-height: 1.55;
  margin-bottom: 2.5rem;
  text-wrap: pretty;
}

.hero .area-hero-ctas {
  gap: 1.25rem;
}
.hero .area-hero-ctas .btn,
.hero .area-hero-ctas .btn-outline-light {
  padding: 18px 44px;
}

/* --- Photo Service Card (full-bleed photo with gradient + CTA) --- */
.card-photo-service {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding: 2.5rem;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
  text-decoration: none;
  isolation: isolate;
}

.card-photo-service .cps-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.6s ease;
  filter: brightness(0.85) saturate(1.05);
}

.card-photo-service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 40, 64, 0.15) 0%,
    rgba(15, 40, 64, 0.55) 50%,
    rgba(15, 40, 64, 0.92) 100%
  );
  z-index: 1;
  transition: opacity 0.4s ease;
}

.card-photo-service:hover .cps-img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1.1);
}

.card-photo-service .cps-content {
  position: relative;
  z-index: 2;
}

.card-photo-service .cps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}

.card-photo-service .cps-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--cream);
}

.card-photo-service h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.05;
}

.card-photo-service p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.card-photo-service .cps-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 14px 24px;
  border: 2px solid var(--navy);
  transition: background var(--transition), border-color var(--transition), gap var(--transition);
}

.card-photo-service:hover .cps-cta {
  background: var(--navy-dark);
  border-color: var(--cream);
  gap: 0.85rem;
}

.card-photo-service .cps-cta::after {
  content: '→';
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .card-photo-service {
    min-height: 420px;
    padding: 2rem;
  }
}

/* Services grid: zero gap for billboard feel */
#services .grid-3 {
  gap: 4px;
}

@media (max-width: 900px) {
  #services .grid-3 {
    gap: 16px;
  }
}

/* --- Hero badge override (now used as eyebrow in hero) --- */
.hero .hero-badge {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  gap: 14px;
}

.hero .hero-badge .hero-badge-dot {
  background: var(--cream);
  border-radius: 0;
  width: 32px;
  height: 2px;
  animation: none;
}

/* ============================================================
   HERO AERIAL SLIDESHOW — Bold/Fast Ken Burns
   Apr 25 2026 per Eric: aerial drone shots, aggressive zoom
   ============================================================ */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform-origin: center center;
  will-change: transform, opacity;
  animation: heroAerialKB 12s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
  transform-origin: 30% 70%;
}

.hero-slide:nth-child(2) {
  animation-delay: 4s;
  transform-origin: 70% 30%;
}

.hero-slide:nth-child(3) {
  animation-delay: 8s;
  transform-origin: 50% 50%;
}

@keyframes heroAerialKB {
  0% {
    opacity: 0;
    transform: scale(1.0);
  }
  3% {
    opacity: 1;
  }
  30% {
    opacity: 1;
    transform: scale(1.18);
  }
  33.333% {
    opacity: 0;
    transform: scale(1.20);
  }
  100% {
    opacity: 0;
    transform: scale(1.0);
  }
}

/* Make the overlay sit above the slideshow */
.hero-overlay {
  z-index: 1;
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero-slide:nth-child(2),
  .hero-slide:nth-child(3) {
    display: none;
  }
}

/* ============================================================
   AREA PAGE TEMPLATE — Apr 25 2026 redesign
   Photo-rich, locally-grounded service area landing pages
   ============================================================ */

/* 1. Visual Hero (full-bleed photo) */
.area-hero {
  position: relative;
  min-height: 540px;
  background-color: var(--charcoal);
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 120px 0 80px;
  overflow: hidden;
}
.area-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 40, 64, 0.78) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}
.area-hero .container {
  position: relative;
  z-index: 2;
}
.area-hero .breadcrumbs {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
}
.area-hero .breadcrumbs a { color: rgba(255, 255, 255, 0.75); }
.area-hero .breadcrumbs a:hover { color: var(--white); }
.area-hero .breadcrumbs span { color: rgba(255, 255, 255, 0.5); }

.area-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border-left: 4px solid var(--white);
  padding-left: 16px;
  margin-bottom: 1.5rem;
}
.area-hero h1 {
  color: var(--white);
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.area-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.3rem;
  max-width: 640px;
  line-height: 1.55;
  margin-bottom: 2.5rem;
}
.area-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.area-hero-ctas .btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
}
.area-hero-ctas .btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}
@media (max-width: 720px) {
  .area-hero { min-height: 460px; padding: 100px 0 60px; }
  .area-hero p { font-size: 1.1rem; }
  .area-hero-ctas { width: 100%; }
  .area-hero-ctas .btn,
  .area-hero-ctas .btn-outline-light {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero .area-hero-ctas .btn,
  .hero .area-hero-ctas .btn-outline-light {
    padding: 16px 24px;
  }
}

/* 2. Trust Strip */
.area-trust {
  background: var(--navy-dark);
  color: var(--white);
  padding: 0;
}
.area-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.area-trust-item {
  text-align: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.area-trust-item:last-child { border-right: none; }
.area-trust-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.area-trust-lbl {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.75rem;
}
@media (max-width: 720px) {
  .area-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .area-trust-item { padding: 1.75rem 0.75rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .area-trust-item:nth-child(2) { border-right: none; }
}

/* 3. Refined intro split image stack */
.split-img-stack {
  position: relative;
  padding-bottom: 40px;
}
.split-img-stack .stack-img-main {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split-img-stack .stack-img-accent {
  position: absolute;
  bottom: 0;
  left: -40px;
  width: 50%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.split-img-stack .stack-caption {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 14px;
  z-index: 2;
}
@media (max-width: 720px) {
  .split-img-stack { padding-bottom: 0; }
  .split-img-stack .stack-img-accent { display: none; }
}

/* 4. Photo-rich service cards */
.service-photo-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--navy);
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(27, 58, 92, 0.18);
}
.spc-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-alt);
  flex-shrink: 0;
}
.spc-body {
  padding: 1.75rem;
  background: var(--navy);
  color: var(--white);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.spc-body p {
  flex: 1;
}
.spc-body h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.spc-body p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}
.spc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  transition: gap var(--transition);
}
.service-photo-card:hover .spc-arrow { gap: 0.85rem; }

/* 5. Local Authority panel */
.local-authority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.local-authority-col h3 {
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--navy);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.local-authority-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.local-authority-col li {
  padding: 0.95rem 0 0.95rem 2rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.45;
  border-bottom: 1px solid var(--border);
}
.local-authority-col li:last-child { border-bottom: none; }
.local-authority-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.55rem;
  width: 14px;
  height: 2px;
  background: var(--navy);
}
@media (max-width: 720px) {
  .local-authority-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* 6. Recent Work scroll */
.recent-work-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 24px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--navy) var(--surface-alt);
}
.recent-work-scroll::-webkit-scrollbar { height: 8px; }
.recent-work-scroll::-webkit-scrollbar-track { background: var(--surface-alt); }
.recent-work-scroll::-webkit-scrollbar-thumb { background: var(--navy); }
.recent-work-thumb {
  flex: 0 0 340px;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  display: block;
}
.recent-work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.recent-work-thumb:hover img { transform: scale(1.06); }
.recent-work-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}
@media (max-width: 720px) {
  .recent-work-thumb { flex-basis: 78vw; }
}

/* 8. Combined Final CTA + nearby chips */
.area-final-cta {
  position: relative;
  background-color: var(--navy-dark);
  background-size: cover;
  background-position: center;
  padding: 6rem 0 5rem;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.area-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 40, 64, 0.92) 0%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 1;
}
.area-final-cta .container {
  position: relative;
  z-index: 2;
}
.area-final-cta h2 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: 1.05;
}
.area-final-cta > .container > p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.3rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}
.area-final-cta .btn-group {
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
}
.area-final-cta .nearby-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.area-final-cta .chips-label {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-right: 0.5rem;
}
.area-final-cta .nearby-chips a {
  display: inline-block;
  padding: 9px 20px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all var(--transition);
}
.area-final-cta .nearby-chips a:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
