/* ============================================================
   LLocal Stairs & Railings
   Premium Luxury Design System (Vanilla CSS)
   Palette: Obsidian / Charcoal / Warm Wood / Gold Accents
   Font: Poppins (Google Fonts)
============================================================ */

/* Import Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
  /* Premium Theme Color Palette */
  --obsidian:       #0B0B0C;
  --charcoal:       #151517;
  --deep-black:     #070708;
  --white:          #ffffff;
  
  /* Light Alternating Section Colors */
  --warm-off-white: #FAF8F5;
  --soft-stone:     #E6E3DF;
  --light-gray:     #ECEAE6;
  --text-dark:      #1A1A1A;
  --text-muted-dark:#555350;
  
  /* Wood Accents (Primary Design Direction) */
  --wood:           #8C5D38;
  --wood-light:     #A47047;
  --wood-dark:      #6E4524;
  
  /* Gold Highlights (Secondary Luxury Direction) */
  --gold:           #b8956a;
  --gold-light:     #d4b48a;
  --gold-dark:      #917148;
  
  /* Typography Greys */
  --stone:          #B4AFAB;
  --stone-light:    #E5E2DF;
  --platinum:       #838280;
  
  /* Glassmorphic overlays & transparency */
  --glass-tint:     rgba(255, 255, 255, 0.03);
  --glass-border:   rgba(255, 255, 255, 0.06);
  --glass-tint-dark: rgba(11, 11, 12, 0.75);
  --glass-blur:     20px;
  
  /* Typography Variables - strict luxury scale */
  --font-sans:      'Poppins', system-ui, -apple-system, sans-serif;
  --fs-hero:        clamp(40px, 6vw, 76px);
  --fs-section:     clamp(28px, 4vw, 48px);
  --fs-service:     clamp(20px, 2.5vw, 24px);
  --fs-body:        15px;
  
  /* Luxury transitions */
  --ease-luxury:    cubic-bezier(0.16, 1, 0.3, 1); /* Ultra smooth slide/fade */
  --ease-standard:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s var(--ease-standard);
  --transition-slow: 0.8s var(--ease-luxury);
  
  /* Layout Spacing */
  --section-padding-desktop: 120px 80px;
  --section-padding-mobile:  80px 24px;
}

/* ============================================================
   RESET & SYSTEM BASICS
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--deep-black);
  color: var(--stone-light);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  letter-spacing: 0.02em;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 2px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--deep-black);
}
::-webkit-scrollbar-thumb {
  background: var(--charcoal);
  border: 2px solid var(--deep-black);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--wood);
}

/* ============================================================
   TYPOGRAPHY & HEADINGS (LUXURY BRANDING)
============================================================ */
h1, h2, h3, h4, h5, h6 {
  color: var(--white);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* Level 1: Hero Headlines */
.hero-headline {
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* Level 2: Section Titles */
.section-title {
  font-size: var(--fs-section);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

/* Level 3: Service Titles / Card Titles */
.service-card-title, .service-title {
  font-size: var(--fs-service);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* Level 4: Body Text style adjustments */
body, p, .section-body, .section-description {
  font-size: var(--fs-body);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.heading-serif {
  font-weight: 300;
  letter-spacing: -0.02em;
}

.heading-serif em {
  font-style: italic;
  font-weight: 300;
  color: var(--wood-light);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--wood-light);
}

.eyebrow-line {
  width: 32px;
  height: 1px;
  background-color: var(--wood-light);
}

.section-description {
  font-weight: 300;
  color: var(--stone);
  max-width: 640px;
}

/* Alternating Theme Backgrounds and Text Colors */
.theme-dark {
  background-color: var(--charcoal) !important;
  color: var(--stone-light) !important;
}
.theme-dark h1, .theme-dark h2, .theme-dark h3, .theme-dark h4, .theme-dark .section-title, .theme-dark .service-card-title {
  color: var(--white) !important;
}
.theme-dark p, .theme-dark .section-body, .theme-dark .section-description {
  color: var(--stone) !important;
}
.theme-dark .section-eyebrow, .theme-dark .eyebrow-text {
  color: var(--gold) !important;
}
.theme-dark .eyebrow-line {
  background-color: var(--gold) !important;
}

.theme-obsidian {
  background-color: var(--obsidian) !important;
  color: var(--stone-light) !important;
}
.theme-obsidian h1, .theme-obsidian h2, .theme-obsidian h3, .theme-obsidian h4, .theme-obsidian .section-title, .theme-obsidian .service-card-title {
  color: var(--white) !important;
}
.theme-obsidian p, .theme-obsidian .section-body, .theme-obsidian .section-description {
  color: var(--stone) !important;
}
.theme-obsidian .section-eyebrow, .theme-obsidian .eyebrow-text {
  color: var(--gold) !important;
}
.theme-obsidian .eyebrow-line {
  background-color: var(--gold) !important;
}

.theme-warm-off-white {
  background-color: var(--warm-off-white) !important;
  color: var(--text-muted-dark) !important;
}
.theme-warm-off-white h1, .theme-warm-off-white h2, .theme-warm-off-white h3, .theme-warm-off-white h4, .theme-warm-off-white .section-title, .theme-warm-off-white .service-card-title {
  color: var(--text-dark) !important;
}
.theme-warm-off-white p, .theme-warm-off-white .section-body, .theme-warm-off-white .section-description {
  color: var(--text-muted-dark) !important;
}
.theme-warm-off-white .section-eyebrow, .theme-warm-off-white .eyebrow-text {
  color: var(--wood-dark) !important;
}
.theme-warm-off-white .eyebrow-line {
  background-color: var(--wood-dark) !important;
}

.theme-soft-stone {
  background-color: var(--soft-stone) !important;
  color: var(--text-muted-dark) !important;
}
.theme-soft-stone h1, .theme-soft-stone h2, .theme-soft-stone h3, .theme-soft-stone h4, .theme-soft-stone .section-title, .theme-soft-stone .service-card-title {
  color: var(--text-dark) !important;
}
.theme-soft-stone p, .theme-soft-stone .section-body, .theme-soft-stone .section-description {
  color: var(--text-muted-dark) !important;
}
.theme-soft-stone .section-eyebrow, .theme-soft-stone .eyebrow-text {
  color: var(--wood-dark) !important;
}
.theme-soft-stone .eyebrow-line {
  background-color: var(--wood-dark) !important;
}

.theme-light-gray {
  background-color: var(--light-gray) !important;
  color: var(--text-muted-dark) !important;
}
.theme-light-gray h1, .theme-light-gray h2, .theme-light-gray h3, .theme-light-gray h4, .theme-light-gray .section-title, .theme-light-gray .service-card-title {
  color: var(--text-dark) !important;
}
.theme-light-gray p, .theme-light-gray .section-body, .theme-light-gray .section-description {
  color: var(--text-muted-dark) !important;
}
.theme-light-gray .section-eyebrow, .theme-light-gray .eyebrow-text {
  color: var(--wood-dark) !important;
}
.theme-light-gray .eyebrow-line {
  background-color: var(--wood-dark) !important;
}

/* Luxury visual design tokens */
.wood-accent-line {
  position: relative;
}
.wood-accent-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--wood);
  border-radius: 2px;
}
.theme-warm-off-white .wood-accent-line::after,
.theme-soft-stone .wood-accent-line::after,
.theme-light-gray .wood-accent-line::after {
  background-color: var(--wood-dark);
}

.wood-accent-border {
  border-bottom: 2px solid var(--wood);
}

/* Glass Reflections / Shines */
.glass-reflect {
  position: relative;
  overflow: hidden;
}
.glass-reflect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s var(--ease-luxury);
  pointer-events: none;
}
.glass-reflect:hover::after {
  left: 150%;
}

/* Architectural Draft Grid Lines */
.arch-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-size: 60px 60px;
  background-image: linear-gradient(to right, var(--text-dark) 1px, transparent 1px),
                    linear-gradient(to bottom, var(--text-dark) 1px, transparent 1px);
}
.theme-dark .arch-grid-lines,
.theme-obsidian .arch-grid-lines {
  opacity: 0.015;
  background-image: linear-gradient(to right, var(--white) 1px, transparent 1px),
                    linear-gradient(to bottom, var(--white) 1px, transparent 1px);
}

/* Theme Card & Stat overrides for alternating backgrounds */
.theme-warm-off-white.authority-band {
  background-color: var(--warm-off-white) !important;
  border-top: 1px solid rgba(140, 93, 56, 0.15) !important;
  border-bottom: 1px solid rgba(140, 93, 56, 0.15) !important;
}
.theme-warm-off-white .authority-stat {
  background-color: var(--warm-off-white) !important;
  color: var(--text-muted-dark) !important;
  border: none !important;
}
.theme-warm-off-white .stat-number {
  color: var(--wood) !important;
}
.theme-warm-off-white .stat-label {
  color: var(--text-dark) !important;
}

.theme-soft-stone.why-section {
  background-color: var(--soft-stone) !important;
}
.theme-soft-stone .why-card {
  background-color: rgba(255, 255, 255, 0.45) !important;
  border: 1px solid rgba(140, 93, 56, 0.08) !important;
  transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast) !important;
}
.theme-soft-stone .why-card:hover {
  background-color: rgba(255, 255, 255, 0.9) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
  border-color: rgba(140, 93, 56, 0.25) !important;
}
.theme-soft-stone .why-card-number {
  color: rgba(140, 93, 56, 0.35) !important;
}
.theme-soft-stone .why-card-title {
  color: var(--text-dark) !important;
}
.theme-soft-stone .why-card-text {
  color: var(--text-muted-dark) !important;
}

.theme-light-gray.services-section {
  background-color: var(--light-gray) !important;
}
.theme-light-gray .service-card {
  background-color: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast) !important;
}
.theme-light-gray .service-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(140, 93, 56, 0.25) !important;
}
.theme-light-gray .service-card-body {
  background-color: var(--white) !important;
}
.theme-light-gray .service-card-title {
  color: var(--text-dark) !important;
}
.theme-light-gray .service-card-text {
  color: var(--text-muted-dark) !important;
}
.theme-light-gray .service-card-link {
  color: var(--wood) !important;
}

/* Projects Showcase Page / Section cards */
.project-card {
  background-color: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast) !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.project-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(140, 93, 56, 0.25) !important;
}
.project-card-body {
  padding: 30px;
  background-color: var(--white) !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.project-card-title {
  color: var(--text-dark) !important;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}
.project-card-text {
  color: var(--text-muted-dark) !important;
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Adjustments for light theme headers and text */
.theme-warm-off-white .section-title, 
.theme-soft-stone .section-title, 
.theme-light-gray .section-title {
  color: var(--text-dark) !important;
}

.theme-warm-off-white .section-body, 
.theme-soft-stone .section-body, 
.theme-light-gray .section-body {
  color: var(--text-muted-dark) !important;
}

.theme-warm-off-white .btn-ghost,
.theme-soft-stone .btn-ghost,
.theme-light-gray .btn-ghost {
  border-color: rgba(0, 0, 0, 0.25) !important;
  color: var(--text-dark) !important;
}
.theme-warm-off-white .btn-ghost:hover,
.theme-soft-stone .btn-ghost:hover,
.theme-light-gray .btn-ghost:hover {
  border-color: var(--wood-dark) !important;
  color: var(--wood-dark) !important;
  background-color: rgba(0, 0, 0, 0.02) !important;
}

/* ============================================================
   GLOBAL REUSABLE BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 2px;
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--wood);
  color: var(--white);
  border: 1px solid var(--wood);
}
.btn-primary:hover {
  background-color: var(--wood-light);
  border-color: var(--wood-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(140, 93, 56, 0.15);
}

.btn-ghost {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  border-color: var(--wood-light);
  color: var(--wood-light);
  background-color: rgba(255, 255, 255, 0.02);
}

.btn-dark {
  background-color: var(--obsidian);
  color: var(--white);
  border: 1px solid var(--glass-border);
}
.btn-dark:hover {
  background-color: var(--charcoal);
  border-color: var(--wood);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--obsidian);
}
.btn-gold:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
}

/* ============================================================
   GLASSMORPHISM UTILITIES
============================================================ */
.glass-panel {
  background: var(--glass-tint);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.glass-card {
  background: rgba(21, 21, 23, 0.4);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.glass-card:hover {
  border-color: rgba(140, 93, 56, 0.3);
  transform: translateY(-4px);
}

/* ============================================================
   HEADER & NAVIGATION
============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010; /* keeps header above mobile overlay */
  padding: 20px 80px;
  transition: padding var(--transition-fast), background var(--transition-fast), border-bottom var(--transition-fast);
  background-color: #070708; /* distinct visual container */
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

#dynamic-hero-content {
  transition: opacity 0.3s ease;
  min-height: 180px;
}

header.scrolled {
  padding: 14px 80px;
  background-color: rgba(7, 7, 8, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}
.logo-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  transition: color var(--transition-fast);
  white-space: nowrap;
}
.logo-subtitle {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wood-light);
  margin-top: 4px;
  white-space: nowrap;
}

.brand-logo-svg {
  transition: transform var(--transition-fast), color var(--transition-fast);
}
.logo-wrapper:hover .brand-logo-svg {
  transform: rotate(-5deg) scale(1.05);
  color: var(--white) !important;
}
.logo-wrapper:hover .logo-title {
  color: var(--wood-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-item a {
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--stone);
  opacity: 0.85;
}
.nav-item a:hover {
  color: var(--wood-light);
  opacity: 1;
}

.nav-item.active a {
  color: var(--white);
  font-weight: 600;
  opacity: 1;
}

.header-cta-btn {
  padding: 10px 20px;
  font-size: 10px;
}

/* Mobile Hamburger Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  cursor: pointer;
  z-index: 1100;
  background: none;
  border: none;
  padding: 0;
  outline: none;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ============================================================
   MOBILE NAVIGATION OVERLAY
============================================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: #070708;
  z-index: 1000; /* stays below header */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 120px 24px 40px; /* clear fixed mobile header */
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-overlay.active {
  transform: translateY(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 60px;
}
.mobile-nav-item a {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--stone-light);
}
.mobile-nav-item a:hover {
  color: var(--wood-light);
}

.mobile-nav-contact {
  text-align: center;
}
.mobile-nav-phone {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}
.mobile-nav-tagline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--wood-light);
}

/* ============================================================
   FOOTER SECTION
============================================================ */
footer {
  background-color: var(--obsidian);
  border-top: 1px solid var(--glass-border);
  padding: 24px 40px 16px;
}

.footer-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 20px;
  margin-bottom: 16px;
}

.footer-brand .logo-wrapper {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--stone);
  font-size: 13px;
  max-width: 300px;
  margin-bottom: 16px;
}

.footer-license {
  font-size: 11px;
  color: var(--platinum);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--wood-light);
  margin-bottom: 20px;
}

.footer-links-list li {
  margin-bottom: 10px;
  font-size: 13px;
}
.footer-links-list a {
  color: var(--stone);
}
.footer-links-list a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-list li {
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--stone-light);
  display: flex;
  flex-direction: column;
}
.footer-contact-list span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--platinum);
  margin-bottom: 3px;
}
.footer-contact-list .phone-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--platinum);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a:hover {
  color: var(--stone-light);
}

/* ============================================================
   STICKY MOBILE CTA & FLOATING CALL BUTTON
============================================================ */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: var(--obsidian);
  border-top: 1px solid var(--glass-border);
  display: none; /* Controlled in media query */
  grid-template-columns: 1fr 1fr;
  z-index: 900;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  height: 100%;
}
.sticky-cta-call {
  background-color: var(--wood);
  color: var(--white);
}
.sticky-cta-quote {
  background-color: var(--charcoal);
  color: var(--stone-light);
  border-left: 1px solid var(--glass-border);
}

.floating-action-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 850;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(140, 93, 56, 0.4);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  animation: pulseFab 2.5s infinite;
}
.floating-action-button:hover {
  background-color: #22C55E;
  transform: scale(1.08);
}
.floating-action-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@keyframes pulseFab {
  0% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}


    /* ============================================================
       HERO — CINEMATIC FULLSCREEN MOTION
    ============================================================ */
    .hero {
      position: relative;
      width: 100%;
      height: calc(100vh - 100px); /* Starts exactly below header */
      min-height: 600px;
      margin-top: 100px; /* Starts exactly below header */
      overflow: hidden;
      display: flex;
      align-items: center; /* center vertically in the remaining screen */
      padding: 40px 60px;
      box-sizing: border-box;
    }

    /* Slide deck */
    .hero-slides {
      position: absolute;
      inset: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      z-index: 1;
      transition: opacity 1.6s var(--ease-soft);
    }
    .hero-slide.active {
      opacity: 1;
      z-index: 2;
    }

    /* Gradient overlay — architectural slab on left */
    .hero-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(7,7,8,0.90) 0%, rgba(7,7,8,0.65) 45%, rgba(7,7,8,0.2) 70%, transparent 100%),
        linear-gradient(180deg, rgba(7,7,8,0.4) 0%, transparent 30%, transparent 55%, rgba(7,7,8,0.75) 100%);
      z-index: 1;
    }

    /* Simulated luxury staircase backgrounds — dark architectural gradient + pattern */
    .slide-1 { background: linear-gradient(135deg, #1a1008 0%, #2d2418 30%, #1e1e1e 60%, #0a0a0a 100%); }
    .slide-2 { background: linear-gradient(120deg, #0e1520 0%, #1a2535 35%, #101820 65%, #080c12 100%); }
    .slide-3 { background: linear-gradient(140deg, #0d1510 0%, #1a2820 35%, #111e14 65%, #060d08 100%); }
    .slide-4 { background: linear-gradient(130deg, #18100a 0%, #2a1e12 35%, #1c1510 65%, #0a0806 100%); }

    /* Architectural line art overlays */
    .slide-art {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }
    .slide-art svg {
      position: absolute;
      opacity: 0.07;
    }

    /* Slide label */
    .slide-label {
      position: absolute;
      top: 50%;
      right: 60px;
      transform: translateY(-50%);
      font-family: var(--font-sans);
      font-size: 13px;
      font-style: italic;
      color: var(--gold);
      letter-spacing: 0.1em;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      opacity: 0.7;
    }

    /* Stair visual mockup inside hero */
    .hero-visual {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 55%;
      overflow: hidden;
    }
    .hero-visual-inner {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Hero content */
    .hero-content {
      position: relative;
      z-index: 10;
      max-width: 700px;
      padding-bottom: 0;
    }
    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 28px;
    }
    .hero-eyebrow-line {
      width: 48px;
      height: 1px;
      background: var(--gold);
    }
    .hero-eyebrow-text {
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }

    .hero-headline {
      font-family: var(--font-sans);
      font-size: clamp(40px, 5vw, 80px);
      font-weight: 300;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 24px;
      max-width: 700px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1.2s 0.4s var(--ease-soft) forwards;
    }
    .hero-headline em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-subline {
      font-size: clamp(15px, 1.5vw, 20px);
      font-weight: 300;
      color: var(--stone);
      max-width: 500px;
      margin-bottom: 44px;
      line-height: 1.8;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1.2s 0.7s var(--ease-soft) forwards;
    }

    .hero-ctas {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 1.2s 1s var(--ease-soft) forwards;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--obsidian);
      padding: 16px 36px;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
      border-radius: 2px;
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--white);
      padding: 16px 36px;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border: 1px solid rgba(255,255,255,0.3);
      cursor: pointer;
      transition: border-color 0.3s, color 0.3s;
      border-radius: 2px;
    }
    .btn-ghost:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* Hero progress dots */
    .hero-progress {
      position: absolute;
      bottom: 100px;
      right: 60px;
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .hero-dot {
      width: 2px;
      height: 20px;
      background: rgba(255,255,255,0.2);
      cursor: pointer;
      transition: background 0.3s, height 0.3s;
    }
    .hero-dot.active {
      background: var(--gold);
      height: 36px;
    }

    /* Hero since badge */
    .hero-since {
      position: absolute;
      top: 50%;
      right: 120px;
      transform: translateY(-50%) rotate(90deg);
      font-family: var(--font-sans);
      font-size: 10px;
      letter-spacing: 0.4em;
      color: rgba(255,255,255,0.25);
      z-index: 10;
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 36px;
      left: 60px;
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 10;
    }
    .scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, transparent, var(--gold));
      animation: scrollLine 2s ease-in-out infinite;
    }
    .scroll-text {
      font-size: 10px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--platinum);
      writing-mode: vertical-rl;
    }

    @keyframes scrollLine {
      0%, 100% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
    }
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ============================================================
       AUTHORITY BAND — Since 1980
    ============================================================ */
    .authority-band {
      background: var(--charcoal);
      border-top: 1px solid rgba(184,149,106,0.2);
      border-bottom: 1px solid rgba(184,149,106,0.2);
      padding: 48px 60px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background-color: rgba(184,149,106,0.12);
    }
    .authority-stat {
      background: var(--charcoal);
      padding: 36px 40px;
      text-align: center;
    }
    .stat-number {
      font-family: var(--font-sans);
      font-size: 56px;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--stone);
    }

    /* ============================================================
       SECTION UNIVERSAL STYLES
    ============================================================ */
    section { padding: 120px 60px; }
    .section-eyebrow {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }
    .eyebrow-line {
      width: 36px;
      height: 1px;
      background: var(--gold);
    }
    .eyebrow-text {
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }
    .section-title {
      font-family: var(--font-sans);
      font-size: clamp(36px, 4vw, 64px);
      font-weight: 300;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 24px;
    }
    .section-title em { font-style: italic; color: var(--gold-light); }
    .section-body {
      font-size: 16px;
      font-weight: 300;
      color: var(--stone);
      line-height: 1.85;
      max-width: 640px;
    }

    /* reveal on scroll */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease-soft);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }
    .reveal-delay-4 { transition-delay: 0.6s; }

    /* ============================================================
       SINCE 1980 AUTHORITY SECTION
    ============================================================ */
    .authority-section {
      background: var(--deep);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 120px 60px;
    }
    .authority-visual {
      position: relative;
      height: auto;
    }
    .authority-img-frame {
      position: relative;
      width: 100%;
      border-radius: 2px;
      overflow: hidden;
      background: linear-gradient(145deg, #1a1410 0%, #2d2418 50%, #1a1a1a 100%);
    }
    .authority-img-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .authority-badge {
      position: absolute;
      bottom: -24px;
      right: -24px;
      width: 140px;
      height: 140px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }
    .badge-since {
      font-family: var(--font-sans);
      font-size: 10px;
      letter-spacing: 0.2em;
      color: var(--obsidian);
      margin-bottom: 4px;
    }
    .badge-year {
      font-family: var(--font-sans);
      font-size: 32px;
      font-weight: 600;
      color: var(--obsidian);
      line-height: 1;
    }
    .authority-content .section-body { margin-bottom: 40px; }

    .authority-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgba(184,149,106,0.15);
      margin-top: 48px;
    }
    .pillar {
      background: var(--deep);
      padding: 28px 24px;
    }
    .pillar-icon {
      font-size: 20px;
      margin-bottom: 12px;
    }
    .pillar-title {
      font-family: var(--font-sans);
      font-size: 18px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 6px;
    }
    .pillar-text {
      font-size: 13px;
      color: var(--stone);
      line-height: 1.7;
    }

    /* ============================================================
       WHY HOMEOWNERS CHOOSE ALLEN
    ============================================================ */
    .why-section {
      background: var(--obsidian);
      padding: 120px 60px;
    }
    .why-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-bottom: 80px;
      align-items: end;
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: rgba(184,149,106,0.1);
    }
    .why-card {
      background: var(--charcoal);
      padding: 48px 36px;
      transition: background 0.3s;
    }
    .why-card:hover { background: #1f1f1f; }
    .why-card-number {
      font-family: var(--font-sans);
      font-size: 52px;
      font-weight: 300;
      color: rgba(184,149,106,0.25);
      line-height: 1;
      margin-bottom: 20px;
    }
    .why-card-title {
      font-family: var(--font-sans);
      font-size: 22px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 14px;
      line-height: 1.2;
    }
    .why-card-text {
      font-size: 14px;
      color: var(--stone);
      line-height: 1.8;
    }

    /* ============================================================
       TURNAROUND ADVANTAGE — THE SIGNATURE ELEMENT
    ============================================================ */
    .turnaround {
      background: var(--gold);
      padding: 100px 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .turnaround-content h2 {
      font-family: var(--font-sans);
      font-size: clamp(40px, 5vw, 72px);
      font-weight: 300;
      color: var(--obsidian);
      line-height: 1.05;
      margin-bottom: 24px;
    }
    .turnaround-content h2 em { font-style: italic; }
    .turnaround-content p {
      font-size: 16px;
      color: rgba(13,13,13,0.75);
      line-height: 1.8;
      margin-bottom: 36px;
    }
    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--obsidian);
      color: var(--gold);
      padding: 16px 36px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: background 0.3s;
      border-radius: 2px;
    }
    .btn-dark:hover { background: var(--charcoal); }

    .comparison-box {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .compare-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 16px;
    }
    .compare-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--stone);
      text-align: center;
      margin-bottom: 8px;
    }
    .compare-them {
      background: rgba(255,255,255,0.05);
      border-radius: 4px;
      padding: 20px 24px;
      text-align: center;
      border: 1px solid var(--glass-border);
    }
    .compare-them-label {
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 6px;
    }
    .compare-them-value {
      font-family: var(--font-sans);
      font-size: 32px;
      font-weight: 400;
      color: var(--white);
      line-height: 1;
    }
    .compare-vs {
      font-family: var(--font-sans);
      font-size: 20px;
      font-style: italic;
      color: var(--stone-light);
    }
    .compare-allen {
      background: var(--obsidian);
      border-radius: 4px;
      padding: 20px 24px;
      text-align: center;
    }
    .compare-allen-label {
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .compare-allen-value {
      font-family: var(--font-sans);
      font-size: 32px;
      font-weight: 400;
      color: var(--white);
      line-height: 1;
    }
    .compare-note {
      font-size: 11px;
      color: var(--stone);
      text-align: center;
      letter-spacing: 0.05em;
      margin-top: -4px;
    }

    /* ============================================================
       SERVICES GRID
    ============================================================ */
    .services-section {
      background: var(--deep);
      padding: 120px 60px;
    }
    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-bottom: 72px;
      align-items: end;
    }
    .services-grid {
      column-count: 3;
      column-gap: 40px;
      background: transparent;
    }
    .service-card {
      background: transparent;
      padding: 0;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      break-inside: avoid;
      margin-bottom: 40px;
      border: 1px solid var(--glass-border);
      border-radius: 4px;
    }
    .service-card-img {
      height: auto;
      overflow: hidden;
      position: relative;
    }
    .service-card-img-inner {
      height: auto;
      width: 100%;
      display: block;
      transition: transform 0.7s var(--ease-luxury);
    }
    .service-card:hover .service-card-img-inner { transform: scale(1.04); }
    .service-card-body { padding: 32px 28px; background: var(--charcoal); }
    .service-card-title {
      font-family: var(--font-sans);
      font-size: 22px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 10px;
      line-height: 1.2;
    }
    .service-card-text {
      font-size: 13px;
      color: var(--stone);
      line-height: 1.75;
      margin-bottom: 20px;
    }
    .service-card-link {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.3s;
    }
    .service-card:hover .service-card-link { gap: 14px; }

    .sc-icon {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .sc-icon svg {
      width: 80px;
      height: 80px;
      opacity: 0.4;
    }

    /* ============================================================
       MATERIALS SHOWCASE
    ============================================================ */
    .materials {
      background: var(--obsidian);
      padding: 120px 60px;
    }
    .materials-header { margin-bottom: 72px; }
    .materials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .material-card {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      cursor: pointer;
    }
    .material-visual {
      height: 480px;
      position: relative;
      overflow: hidden;
      border-radius: 2px;
    }
    .material-bg {
      position: absolute;
      inset: 0;
      transition: transform 0.8s var(--ease-slide);
    }
    .material-card:hover .material-bg { transform: scale(1.05); }
    .material-bg-glass {
      background:
        linear-gradient(180deg, rgba(14,24,40,0.5) 0%, rgba(14,24,40,0.85) 100%),
        radial-gradient(ellipse at 40% 30%, rgba(100,160,220,0.15) 0%, transparent 60%),
        linear-gradient(135deg, #0e1828 0%, #1a2d45 50%, #0a1520 100%);
    }
    .material-bg-cable {
      background:
        linear-gradient(180deg, rgba(10,21,16,0.5) 0%, rgba(10,21,16,0.85) 100%),
        linear-gradient(135deg, #0e1a12 0%, #1a3020 50%, #0a1510 100%);
    }
    .material-bg-wood {
      background:
        linear-gradient(180deg, rgba(26,16,8,0.4) 0%, rgba(26,16,8,0.85) 100%),
        linear-gradient(135deg, #1a1008 0%, #3d2810 50%, #1a1208 100%);
    }

    .material-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 40px 36px;
    }
    .material-tag {
      display: inline-block;
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(184,149,106,0.4);
      padding: 4px 12px;
      border-radius: 2px;
      margin-bottom: 16px;
    }
    .material-title {
      font-family: var(--font-sans);
      font-size: 30px;
      font-weight: 300;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 12px;
    }
    .material-desc {
      font-size: 13px;
      color: rgba(200,191,176,0.8);
      line-height: 1.75;
      margin-bottom: 20px;
    }
    .material-features {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .material-feature {
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(200,191,176,0.6);
      background: rgba(255,255,255,0.06);
      padding: 4px 10px;
      border-radius: 2px;
    }

    /* Glass panel animation overlay */
    .glass-shine {
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
      transition: left 0.7s var(--ease-slide);
    }
    .material-card:hover .glass-shine { left: 150%; }

    /* ============================================================
       BEFORE & AFTER
    ============================================================ */
    .before-after {
      background: var(--deep);
      padding: 120px 60px;
    }
    .ba-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 64px;
    }
    .ba-card {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      height: 400px;
      cursor: pointer;
    }
    .ba-panels {
      position: absolute;
      inset: 0;
      display: flex;
    }
    .ba-before, .ba-after {
      flex: 1;
      position: relative;
      overflow: hidden;
    }
    .ba-before { border-right: 2px solid var(--gold); }
    .ba-before-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #1a1414 0%, #2a1f1f 50%, #1a1414 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ba-after-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #0e1520 0%, #1a2535 50%, #0e1520 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ba-label {
      position: absolute;
      bottom: 16px;
      font-size: 10px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 2px;
    }
    .ba-label-before {
      left: 16px;
      background: rgba(0,0,0,0.6);
      color: var(--stone);
    }
    .ba-label-after {
      right: 16px;
      background: var(--gold);
      color: var(--obsidian);
    }
    .ba-icon { opacity: 0.15; }

    /* ============================================================
       CODE COMPLIANCE
    ============================================================ */
    .compliance {
      background: var(--charcoal);
      padding: 120px 60px;
    }
    .compliance-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .compliance-rules {
      display: flex;
      flex-direction: column;
      gap: 1px;
      background: rgba(184,149,106,0.1);
    }
    .rule-item {
      background: var(--charcoal);
      padding: 24px 28px;
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 20px;
      align-items: start;
      transition: background 0.3s;
    }
    .rule-item:hover { background: #222; }
    .rule-icon {
      width: 48px;
      height: 48px;
      background: rgba(184,149,106,0.1);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .rule-title {
      font-family: var(--font-sans);
      font-size: 17px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 4px;
    }
    .rule-text {
      font-size: 13px;
      color: var(--stone);
      line-height: 1.65;
    }
    .compliance-cta-box {
      background: linear-gradient(135deg, rgba(184,149,106,0.1), rgba(184,149,106,0.04));
      border: 1px solid rgba(184,149,106,0.2);
      border-radius: 2px;
      padding: 40px;
      margin-top: 32px;
    }
    .compliance-cta-box h3 {
      font-family: var(--font-sans);
      font-size: 24px;
      font-weight: 300;
      color: var(--white);
      margin-bottom: 12px;
    }
    .compliance-cta-box p {
      font-size: 14px;
      color: var(--stone);
      margin-bottom: 24px;
      line-height: 1.75;
    }

    /* ============================================================
       TESTIMONIALS
    ============================================================ */
    .testimonials {
      background: var(--obsidian);
      padding: 120px 60px;
    }
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: rgba(184,149,106,0.1);
      margin-top: 64px;
    }
    .testimonial-card {
      background: var(--charcoal);
      padding: 44px 36px;
    }
    .testimonial-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 20px;
    }
    .star { color: var(--gold); font-size: 14px; }
    .testimonial-quote {
      font-family: var(--font-sans);
      font-size: 18px;
      font-weight: 300;
      font-style: italic;
      color: var(--stone-light);
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .testimonial-quote::before {
      content: '\201C';
      font-size: 48px;
      color: rgba(184,149,106,0.25);
      line-height: 0;
      vertical-align: -0.4em;
      margin-right: 4px;
    }
    .testimonial-author {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
    }
    .testimonial-location {
      font-size: 12px;
      color: var(--platinum);
      margin-top: 4px;
    }

    /* ============================================================
       SERVICE AREA
    ============================================================ */
    .service-area {
      background: var(--deep);
      padding: 120px 60px;
    }
    .area-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      margin-top: 64px;
    }
    .area-map-placeholder {
      height: 480px;
      background: linear-gradient(135deg, #0e1520 0%, #1a2535 50%, #0e1520 100%);
      border-radius: 2px;
      border: 1px solid rgba(184,149,106,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .map-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    .map-pin { font-size: 40px; opacity: 0.5; }
    .map-label {
      font-family: var(--font-sans);
      font-size: 20px;
      font-weight: 300;
      color: var(--stone);
      text-align: center;
    }
    .area-cities {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgba(184,149,106,0.1);
    }
    .city-item {
      background: var(--deep);
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: var(--stone);
      transition: color 0.2s, background 0.2s;
    }
    .city-item:hover { background: #1a1a1a; color: var(--gold-light); }
    .city-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* ============================================================
       FAQ
    ============================================================ */
    .faq-section {
      background: var(--charcoal);
      padding: 120px 60px;
    }
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: rgba(184,149,106,0.1);
      margin-top: 64px;
    }
    .faq-item {
      background: var(--charcoal);
      padding: 0;
      cursor: pointer;
    }
    .faq-question {
      padding: 28px 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }
    .faq-question-text {
      font-family: var(--font-sans);
      font-size: 18px;
      font-weight: 400;
      color: var(--white);
      line-height: 1.3;
    }
    .faq-toggle {
      width: 28px;
      height: 28px;
      border: 1px solid rgba(184,149,106,0.3);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 16px;
      color: var(--gold);
      transition: background 0.3s, transform 0.3s;
    }
    .faq-item.open .faq-toggle {
      background: var(--gold);
      color: var(--obsidian);
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s var(--ease-soft);
    }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer-inner {
      padding: 0 32px 28px;
      font-size: 14px;
      color: var(--stone);
      line-height: 1.8;
      border-top: 1px solid rgba(184,149,106,0.1);
      padding-top: 20px;
    }

    /* ============================================================
       FINAL CTA SECTION
    ============================================================ */
    .final-cta {
      background: var(--obsidian);
      padding: 140px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(184,149,106,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .final-cta-eyebrow {
      font-size: 11px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .final-cta h2 {
      font-family: var(--font-sans);
      font-size: clamp(40px, 5vw, 80px);
      font-weight: 300;
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 24px;
    }
    .final-cta h2 em { font-style: italic; color: var(--gold-light); }
    .final-cta p {
      font-size: 17px;
      color: var(--stone);
      max-width: 520px;
      margin: 0 auto 52px;
      line-height: 1.8;
    }
    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .phone-display {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 32px;
      font-family: var(--font-sans);
      font-size: 22px;
      color: var(--stone);
    }
    .phone-display a { color: var(--gold-light); transition: color 0.2s; }
    .phone-display a:hover { color: var(--gold); }
    .phone-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--platinum); }


/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }


/* Spacing and Layout Spacing Tokens */
:root {
  --space-section-top-desktop: 100px;
  --space-section-bottom-desktop: 100px;
  --space-section-top-tablet: 70px;
  --space-section-bottom-tablet: 70px;
  --space-section-top-mobile: 50px;
  --space-section-bottom-mobile: 50px;
}

/* Spacing Helpers */
.sec-padding {
  padding-top: var(--space-section-top-desktop);
  padding-bottom: var(--space-section-bottom-desktop);
  padding-left: 80px;
  padding-right: 80px;
}

/* Centered Header Helper */
.section-header-centered {
  max-width: 1200px;
  margin: 0 auto 72px;
  text-align: center;
}
.section-description-centered {
  color: var(--text-muted-dark);
  font-size: 15px;
  max-width: 600px;
  margin: 24px auto 0;
  line-height: 1.8;
}
.theme-dark .section-description-centered,
.theme-obsidian .section-description-centered {
  color: var(--stone);
}

/* Button Group / Text Wrapper */
.button-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.text-body-wrapper p {
  margin-bottom: 20px;
}
.text-body-wrapper p:last-child {
  margin-bottom: 24px;
}

/* Materials grid layout */
.materials-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}
.materials-card-panel {
  padding: 40px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.materials-card-img-wrap {
  height: 200px;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 24px;
}
.materials-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.materials-card-title {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-sans);
}
.materials-card-desc {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 30px;
  flex-grow: 1;
}
.materials-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.materials-card-tags span {
  font-size: 10px;
  background-color: rgba(255,255,255,0.05);
  padding: 4px 8px;
  border-radius: 2px;
  color: var(--stone-light);
}

/* Projects portfolio showcase */
.projects-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.project-card-img-wrap {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.project-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--wood);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 2px;
}
.project-card-location {
  font-size: 11px;
  color: var(--wood-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}
.project-card-btn {
  margin-top: auto;
  padding: 10px 20px;
  font-size: 10px;
  text-align: center;
}

/* Before / After Slider Section */
.before-after-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.before-after-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
  user-select: none;
}
.after-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.after-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.slider-label-after {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.8);
  color: var(--white);
  padding: 4px 10px;
  z-index: 10;
  border-radius: 2px;
}
.before-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  transition: width 0.1s ease;
}
.before-picture {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.before-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.slider-label-before {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.8);
  color: var(--white);
  padding: 4px 10px;
  z-index: 10;
  border-radius: 2px;
}
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: var(--wood-light);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}
.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--wood);
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Compliance Section */
.compliance-inner-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.compliance-body-text {
  color: var(--text-muted-dark);
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.85;
}
.compliance-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  padding-left: 0;
}
.compliance-list li {
  display: flex;
  align-items: start;
  gap: 16px;
}
.compliance-num {
  background-color: rgba(140, 93, 56, 0.15);
  color: var(--wood-dark);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
}
.compliance-item-title {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}
.compliance-item-desc {
  color: var(--text-muted-dark);
  font-size: 13px;
  line-height: 1.6;
}
.compliance-cta-card {
  padding: 48px;
  background-color: var(--white);
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}
.compliance-warning-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 24px;
}
.compliance-cta-title {
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-family: var(--font-sans);
}
.compliance-cta-desc {
  color: var(--text-muted-dark);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.compliance-cta-btn-full {
  width: 100%;
}

/* Testimonials Carousel Elements */
.testimonial-slide-inner {
  text-align: center;
  padding: 0 40px;
}
.testimonial-quote-mark {
  color: var(--gold);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 24px;
}
.testimonial-quote-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--stone-light);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-stars-row {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
}
.testimonial-author-name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  font-weight: 600;
}
.testimonial-author-loc {
  color: var(--wood-light);
}
.testimonial-verified-badge {
  font-size: 10px;
  color: var(--platinum);
  margin-top: 8px;
}
.testimonial-nav-btns {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
.testimonial-nav-btns button {
  color: var(--wood-light);
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  transition: color var(--transition-fast);
}
.testimonial-nav-btns button:hover {
  color: var(--white);
}

/* Service Areas */
.areas-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
}

/* FAQ Accordion */
.faq-grid-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  width: 100%;
}

/* Contact / Final CTA */
.contact-section {
  background: radial-gradient(circle at center, rgba(140, 93, 56, 0.1) 0%, var(--deep-black) 70%);
}
.contact-inner-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.quote-form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  width: 100%;
}
.form-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

/* Morphing Hamburger Menu */
.hamburger span {
  transition: transform var(--transition-fast), opacity var(--transition-fast), background-color var(--transition-fast);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   RESPONSIVE DESIGN BREAKPOINTS
============================================================ */

/* 1200px Breakpoint */
@media (max-width: 1200px) {
  header, header.scrolled {
    padding: 18px 40px;
  }
  .sec-padding {
    padding-left: 40px;
    padding-right: 40px;
  }
  footer {
    padding: 24px 30px 16px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 20px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* 1024px Breakpoint */
@media (max-width: 1024px) {
  header, header.scrolled {
    padding: 14px 32px;
  }
  .sec-padding {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hero {
    margin-top: 90px;
    height: calc(100vh - 90px);
    padding: 40px 32px 80px;
  }
  .authority-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .authority-visual {
    height: 360px;
  }
  .why-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .turnaround {
    grid-template-columns: 1fr;
  }
  .services-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .services-grid {
    column-count: 2;
  }
}

/* 991px Breakpoint */
@media (max-width: 991px) {
  .nav-links, .header-cta-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .compliance-inner-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-inner-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-grid-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .quote-form-container {
    padding: 30px 24px;
  }
}

/* 768px Breakpoint */
@media (max-width: 768px) {
  body {
    padding-bottom: 64px; /* Space for sticky mobile bar */
  }
  .sec-padding {
    padding-top: var(--space-section-top-mobile);
    padding-bottom: var(--space-section-bottom-mobile);
    padding-left: 20px;
    padding-right: 20px;
  }
  header, header.scrolled {
    padding: 10px 16px;
    height: 80px;
  }
  footer {
    padding: 24px 20px 16px;
  }
  .hero {
    margin-top: 80px !important; /* clear mobile header */
    padding: 40px 20px 60px !important;
    min-height: auto !important;
    height: auto !important;
    align-items: center !important;
  }
  #dynamic-hero-content {
    min-height: 240px !important;
  }
  .hero-since, .slide-label {
    display: none;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-headline {
    font-size: clamp(28px, 8vw, 44px) !important;
    line-height: 1.15 !important;
    max-width: 100% !important;
  }
  .hero-subline {
    font-size: 15px !important;
    margin-bottom: 28px;
    max-width: 100%;
  }
  .authority-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
  .authority-stat {
    padding: 24px 20px;
  }
  .stat-number {
    font-size: 40px;
  }
  .authority-visual {
    height: auto;
  }
  .authority-badge {
    width: 100px;
    height: 100px;
    bottom: -15px;
    right: -15px;
  }
  .badge-year {
    font-size: 24px;
  }
  .materials-grid-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .projects-grid-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .before-after-slider {
    height: 350px;
  }
  .faq-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .logo-title {
    font-size: clamp(12px, 4.2vw, 17px) !important;
  }
  .logo-subtitle {
    font-size: clamp(7.5px, 2vw, 8.5px) !important;
    white-space: normal !important;
    max-width: 200px !important;
    line-height: 1.25 !important;
    letter-spacing: 0.1em !important;
  }
  .btn {
    padding: 14px 28px;
    font-size: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
  .sticky-mobile-cta {
    display: grid;
  }
  .floating-action-button {
    bottom: 84px; /* Elevate above sticky bottom bar */
    right: 20px;
    width: 48px;
    height: 48px;
  }
}

/* 576px Breakpoint */
@media (max-width: 576px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    column-count: 1;
  }
}

/* 480px Breakpoint */
@media (max-width: 480px) {
  #dynamic-hero-content {
    min-height: 280px !important;
  }
  .authority-band {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }
  .authority-stat {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(140, 93, 56, 0.08);
  }
  .authority-stat:last-child {
    border-bottom: none;
  }
  .authority-visual {
    height: auto;
  }
  .authority-badge {
    width: 80px;
    height: 80px;
    bottom: -10px;
    right: -10px;
  }
  .badge-since {
    font-size: 8px;
  }
  .badge-year {
    font-size: 18px;
  }
  .before-after-slider {
    height: 250px;
  }
  .areas-grid-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .popup-box {
    padding: 24px 20px;
  }
}

/* 375px Breakpoint */
@media (max-width: 375px) {
  .btn {
    padding: 12px 20px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
}

/* 320px Breakpoint */
@media (max-width: 320px) {
  .logo-title {
    font-size: 13px !important;
  }
  .logo-subtitle {
    font-size: 7.5px !important;
    letter-spacing: 0.08em !important;
  }
  .hero-headline {
    font-size: 24px !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Responsive Services Hub Grid */
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 1024px) {
  .services-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .services-hub-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Dynamic Aspect Ratio & Orientation Containers */
.image-container-landscape {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background-color: rgba(21, 21, 23, 0.2);
}
.image-container-portrait {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  overflow: hidden;
  background-color: rgba(21, 21, 23, 0.2);
}
.image-container-square {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  background-color: rgba(21, 21, 23, 0.2);
}
.dynamic-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-slow);
}
.dynamic-img:hover {
  transform: scale(1.02);
}
