/* ==========================================================================
   DAYTON GUTTER PROS — EDITORIAL LUXE DESIGN SYSTEM
   Calibrated Forest Green + Antique Gold + Cream Palette (LGS 2026 Tier)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color System */
  --bg: #F7F4EF;          /* Luxe Cream Base */
  --bg-2: #EFECE6;        /* Slightly darker warm cream for cards */
  --bg-dark: #1E3F20;     /* Editorial Forest Green */
  --bg-dark-2: #142B15;   /* Darker Forest Green */
  --ink: #1C1B19;         /* Warm charcoal/near-black */
  --ink-muted: #62605E;   /* Muted charcoal for body/descriptions */
  --paper: #FFFFFF;       /* Pure white for overlays / highlights */
  --border: rgba(28, 27, 25, 0.08); /* Warm grey divider */
  --border-light: rgba(255, 255, 255, 0.12); /* White border on dark bg */
  
  /* Brand Accents */
  --accent: #C9A24B;      /* Antique Gold */
  --accent-hover: #B08B3E; /* Darkened Gold for active states */
  --accent-glow: rgba(201, 162, 75, 0.15);
  
  /* Typography */
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing Scale (4px Base Grid) */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 96px;
  --space-2xl: 140px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  
  /* Depth & Shadows */
  --shadow-sm: 0 2px 10px rgba(28, 27, 25, 0.05);
  --shadow-md: 0 10px 30px rgba(28, 27, 25, 0.08);
  --shadow-lg: 0 20px 50px rgba(28, 27, 25, 0.12);
  --shadow-glow: 0 0 30px var(--accent-glow);
}

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

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis handles smooth scrolling */
}

/* Lenis CSS integration */
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overflow-anchor: none;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw, 1.0625rem);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Tactical Noise Overlay for Editorial Print Feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.025;
}

/* Custom Cursor (Desktop Only) */
* {
  cursor: none;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(28, 27, 25, 0.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
}

/* When hover triggers are active */
.cursor-ring.hovering {
  width: 48px;
  height: 48px;
  border-color: var(--bg-dark);
  background: rgba(30, 63, 32, 0.03);
}

@media (hover: none) {
  * {
    cursor: auto !important;
  }
  .cursor-dot, .cursor-ring {
    display: none !important;
  }
}

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

h1 {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

p {
  color: var(--ink-muted);
  margin-bottom: var(--space-sm);
}

strong {
  font-weight: 600;
  color: var(--ink);
}

em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* Eyebrow Labels */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1vw, 0.8125rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.numeral {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--accent);
  margin-right: var(--space-xs);
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

.bleed-dark {
  background: var(--bg-dark);
  color: var(--bg);
}

.bleed-dark p {
  color: rgba(247, 244, 239, 0.8);
}

.bleed-dark strong {
  color: var(--bg);
}

.divider {
  height: 1px;
  background: var(--border);
  width: 100%;
  border: none;
}

.divider-light {
  height: 1px;
  background: var(--border-light);
  width: 100%;
  border: none;
}

/* Direct-Answer styling for AEO */
.direct-answer {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  border-left: 2px solid var(--accent);
  padding-left: var(--space-md);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 244, 239, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, padding 0.4s;
  padding: var(--space-sm) 0;
}

header.scrolled {
  background: rgba(247, 244, 239, 0.98);
  padding: var(--space-xs) 0;
  box-shadow: var(--shadow-sm);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--bg-dark);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  padding: var(--space-2xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Call Button Header */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--bg);
  background: var(--bg-dark);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.header-cta:hover {
  background: var(--bg-dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--accent);
  color: #000000; /* Contrast Safe Guard: dark text on gold badge/button */
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill);
  border: none;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 35px;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: rgba(28, 27, 25, 0.03);
  transform: translateY(-2px);
}

/* Button variant inside dark background */
.bleed-dark .btn-secondary {
  color: var(--bg);
  border-color: var(--border-light);
}

.bleed-dark .btn-secondary:hover {
  border-color: var(--bg);
  background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-content .eyebrow {
  color: var(--primary); /* Deep Forest Green for high contrast */
}

.hero-headline em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--bg-dark);
}

.hero-lead {
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.6;
  margin: var(--space-md) 0;
  color: var(--ink-muted);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
}

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

/* Hero Frame Bleed */
.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-2);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 16px var(--space-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-title {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 600;
}

.badge-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--bg-dark);
}

/* ==========================================================================
   BENTO SERVICES GRID
   ========================================================================== */
.services-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.bento-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              border-color 0.3s, 
              box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.bento-card.col-8 { grid-column: span 8; }
.bento-card.col-4 { grid-column: span 4; }
.bento-card.col-6 { grid-column: span 6; }

.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.bento-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: var(--paper);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  box-shadow: var(--shadow-sm);
}

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

.bento-arrow {
  color: var(--ink-muted);
  transition: transform 0.3s;
}

.bento-card:hover .bento-arrow {
  transform: translate(3px, -3px);
  color: var(--accent);
}

.bento-middle {
  margin-top: auto;
  margin-bottom: var(--space-sm);
}

.bento-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  color: var(--ink);
}

.bento-description {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.bento-footer {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg-dark);
}

/* ==========================================================================
   INTERACTIVE BEFORE / AFTER SHOWCASE
   ========================================================================== */
.before-after-section {
  background: var(--bg-2);
}

.ba-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-lg);
  align-items: center;
}

.ba-container {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before {
  z-index: 10;
  clip-path: inset(0 50% 0 0); /* Dynamic clip path set in JS */
}

.ba-after {
  z-index: 5;
}

.ba-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent);
  z-index: 20;
  transform: translateX(-50%);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--paper);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.ba-handle::before, .ba-handle::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
}

.ba-handle::before {
  border-width: 5px 6px 5px 0;
  border-color: transparent var(--accent) transparent transparent;
  margin-right: 2px;
}

.ba-handle::after {
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent var(--accent);
  margin-left: 2px;
}

.ba-label {
  position: absolute;
  bottom: var(--space-sm);
  background: rgba(28, 27, 25, 0.85);
  color: var(--bg);
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-sm);
}

.ba-label-before {
  left: var(--space-sm);
  z-index: 25;
}

.ba-label-after {
  right: var(--space-sm);
  z-index: 25;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS (MASONRY GRID)
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.review-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Force dark ink contrast inside white review cards even when placed in .bleed-dark parent */
.review-card .review-text {
  font-style: italic;
  font-size: 0.9375rem;
  color: var(--ink) !important;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.review-card .author-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink) !important;
}

.review-card .author-city {
  font-size: 0.8125rem;
  color: var(--ink-muted) !important;
}

.review-card .stars {
  color: var(--accent);
  margin-bottom: var(--space-sm);
  display: flex;
  gap: 2px;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: var(--space-sm);
}

/* ==========================================================================
   ACCORDION FAQS
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: var(--space-lg) auto 0;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--ink);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s, border-color 0.3s;
  flex-shrink: 0;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
}

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

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

.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ==========================================================================
   CONVERSION SECTION (FORM + MAP)
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-lg);
}

.form-wrapper {
  background: var(--paper);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: var(--space-xs);
}

input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--bg-dark);
  box-shadow: 0 0 0 3px rgba(30, 63, 32, 0.06);
}

.contact-info-card {
  background: var(--bg-dark);
  color: var(--bg);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card p {
  color: rgba(247, 244, 239, 0.7);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.info-item-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 4px;
}

.info-item-text h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--bg);
}

.info-item-text a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.info-item-text a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #131211; /* Extremely dark slate */
  color: #DDDCDA;
  padding-top: var(--space-lg);
  padding-bottom: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
  color: #C0BEBB !important;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  color: #FFF;
  margin-bottom: var(--space-sm);
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: #C0BEBB;
  margin-bottom: var(--space-sm);
}

.footer-links-grid {
  display: flex;
  gap: 80px;
}

.footer-link-group h5 {
  color: #FFF;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.footer-link-group ul {
  list-style: none;
}

.footer-link-group li {
  margin-bottom: 10px;
}

.footer-link-group a {
  color: #92908D;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-link-group a:hover {
  color: #FFF;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #C0BEBB;
}

.footer-bottom a {
  color: #FFF;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   STICKY ACTIONS BAR (MOBILE ONLY)
   ========================================================================== */
.sticky-actions-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.sticky-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 18px;
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.sticky-action-btn:first-child {
  border-right: 1px solid var(--border-light);
  background: var(--bg-dark-2);
}

.sticky-action-btn.gold-highlight {
  color: #000;
  background: var(--accent);
}

.sticky-action-btn.gold-highlight:hover {
  background: var(--accent-hover);
}

.sticky-action-btn svg {
  width: 18px;
  height: 18px;
}

/* Spacer to prevent content overlap in mobile */
.mobile-bottom-spacer {
  display: none;
  height: 56px;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .hero-image-wrap {
    height: 380px;
  }
  
  .services-bento {
    grid-template-columns: 1fr;
  }
  
  .bento-card.col-8, .bento-card.col-4, .bento-card.col-6 {
    grid-column: span 12;
  }
  
  .ba-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .footer-links-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 64px;
    --space-2xl: 96px;
  }
  
  header {
    padding: var(--space-xs) 0;
  }
  
  .nav-links, .header-cta {
    display: none;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary, .btn-secondary {
    justify-content: center;
    width: 100%;
  }
  
  .hero-trust-row {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }
  
  .footer-top {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .footer-links-grid {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  /* Show mobile action bar */
  .sticky-actions-bar {
    display: block;
  }
  
  .mobile-bottom-spacer {
    display: block;
  }
}
