/* ==========================================================================
   Golden Kern Junk Removal — Production Agency Design System
   Stack: Vanilla Modern CSS (CSS Custom Properties, Fluid Clamp, Grid, Flex)
   Palette: Navy #0B2545 + Safety Orange #F97316 | Typography: Manrope + Source Sans 3
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@600;700;800&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ─── 1. CSS Custom Properties / Design Tokens ───────────────────────── */
:root {
  /* Primary Navy Scale */
  --primary-50:  #EFF6FF;
  --primary-100: #DBEAFE;
  --primary-200: #BFDBFE;
  --primary-300: #93C5FD;
  --primary-400: #60A5FA;
  --primary-500: #3B82F6;
  --primary-600: #1D4ED8;
  --primary-700: #1E40AF;
  --primary-800: #1E3A8A;
  --primary-900: #0B2545;
  --primary-950: #061528;

  /* Accent Safety Orange Scale */
  --accent-light: #FB923C;
  --accent:       #F97316;
  --accent-hover: #EA580C;
  --accent-glow:  rgba(249, 115, 22, 0.28);
  --accent-50:    #FFF7ED;

  /* Surfaces & Neutrals */
  --bg-page:      #F8FAFC;
  --bg-offwhite:  #F1F5F9;
  --surface-card: #FFFFFF;
  --surface-dark: #061528;
  --surface-dark-card: #0F213A;

  /* Typography Colors */
  --text-main:    #1E293B;
  --text-muted:   #475569;
  --text-subtle:  #64748B;
  --text-light:   #F8FAFC;
  --text-white:   #FFFFFF;

  /* Borders & Lines */
  --border-light: #E2E8F0;
  --border-card:  rgba(226, 232, 240, 0.85);
  --border-dark:  rgba(255, 255, 255, 0.12);

  /* Shadows */
  --shadow-sm:  0 2px 4px rgba(11, 37, 69, 0.04);
  --shadow-md:  0 6px 16px -2px rgba(11, 37, 69, 0.08), 0 2px 6px -1px rgba(11, 37, 69, 0.04);
  --shadow-lg:  0 18px 30px -4px rgba(11, 37, 69, 0.12), 0 8px 12px -3px rgba(11, 37, 69, 0.06);
  --shadow-glow: 0 10px 25px -3px var(--accent-glow);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  /* Fonts */
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body:    'Source Sans 3', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout Containers */
  --max-w-content: 1240px;
  --max-w-narrow:  860px;
  --header-height: 80px;
  --bottom-bar-height: 64px;
}

/* ─── 2. Reset & Global Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.1vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-main);
  background-color: var(--bg-page);
  overflow-x: hidden;
  padding-bottom: 0;
  text-align: left;
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(var(--bottom-bar-height) + env(safe-area-inset-bottom, 16px));
  }
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-700);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

p {
  max-width: 68ch;
  margin-bottom: 1.25rem;
}

/* ─── 3. Typography Styles (Left-Aligned Editorial) ───────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: left;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 1.12;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.18;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.25;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.highlight-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 100%;
  height: 0.22em;
  background: var(--accent);
  opacity: 0.85;
  border-radius: 4px;
  z-index: -1;
}

/* ─── 4. Layout Containers & Section Rhythm ─────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: var(--max-w-narrow);
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

/* Section Header: Strictly Left-Aligned with Optional Split */
.section-header {
  text-align: left;
  max-width: 820px;
  margin: 0 0 clamp(2.5rem, 5vw, 3.75rem);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-top: 0.5rem;
}

.section-header-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header-split p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* Background Variations */
.bg-white    { background-color: var(--surface-card); }
.bg-light    { background-color: var(--bg-page); }
.bg-tint     { background-color: var(--primary-50); }
.bg-offwhite { background-color: var(--bg-offwhite); }
.bg-dark {
  background-color: var(--surface-dark);
  color: var(--text-light);
}
.bg-dark h1, .bg-dark h2, .bg-dark h3 {
  color: var(--text-white);
}
.bg-dark p {
  color: #94A3B8;
}

/* ─── 5. UI Components: Buttons & Cards ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 48px;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent);
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -4px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-900);
  border-color: var(--primary-900);
}

.btn-secondary:hover {
  background-color: var(--primary-900);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background-color: #FFFFFF;
  color: var(--primary-950);
}

.btn-icon-svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
}

/* Card Style */
.card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: left;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

/* Rounded Icon Frame */
.icon-frame {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: var(--primary-50);
  border: 1px solid var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-700);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.icon-frame svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ─── 6. Site Header & Navigation ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: var(--header-height);
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-container, .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img, .brand-logo-link img {
  max-height: 44px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  padding: 0.5rem 0.25rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

.dropdown-chevron {
  transition: transform 0.2s ease;
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown.is-open .dropdown-chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 100;
  margin: 0;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 600;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-item a:hover {
  background-color: var(--primary-50);
  color: var(--accent);
}

.header-actions, .header-cta-group, .nav-cta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  color: var(--primary-900);
}

.mobile-nav-toggle span.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-900);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.mobile-nav-toggle.is-active span.hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-active span.hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-active span.hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-cta {
  display: none;
}

/* ─── 7. Hero Section (Layered Composition + Real Rig Photo) ────────── */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(239, 246, 255, 0.8) 0%, rgba(248, 250, 252, 1) 70%),
              radial-gradient(circle at 90% 80%, rgba(254, 243, 199, 0.4) 0%, rgba(248, 250, 252, 0) 60%);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(var(--border-light) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 660px;
  text-align: left;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-800);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin: 2rem 0;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-chip svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  stroke-width: 2.2;
}

/* Hero Media Display */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-card {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #FFFFFF;
  position: relative;
}

.hero-img-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-img-card:hover img {
  transform: scale(1.03);
}

/* Floating Glass Cards */
.floating-glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 36px -6px rgba(11, 37, 69, 0.16);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 3;
  animation: floatSlow 6s ease-in-out infinite alternate;
}

.glass-card-1 {
  top: -20px;
  left: -20px;
}

.glass-card-2 {
  bottom: -20px;
  right: -20px;
  animation-delay: -3s;
}

@keyframes floatSlow {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.glass-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.glass-card-text strong {
  display: block;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  color: var(--primary-900);
}

.glass-card-text span {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* ─── 8. Split Sections (Left Text, Right Real Image) ────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  margin-top: 1rem;
}

.split-reverse {
  direction: rtl;
}

.split-reverse > * {
  direction: ltr;
}

.split-content {
  text-align: left;
}

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.split-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.split-media:hover img {
  transform: scale(1.03);
}

.split-media-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(11, 37, 69, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ─── 9. Bento Grid (With Real Project Photography) ──────────────────── */
/* 2x2 grid for 4 cards or 2 columns for 6 cards (no orphan cards) */
.bento-grid, .cards-2x2, .grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

/* 1 column for 3 cards as requested */
.cards-1col, .grid-1col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.bento-featured {
  grid-column: span 1; /* Standardize card width so no orphan cards */
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  overflow: hidden;
  padding: 0;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bento-thumb-frame {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background-color: var(--surface-bg);
}

.bento-thumb-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bento-card:hover .bento-thumb-frame img {
  transform: scale(1.05);
}

.bento-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.bento-card h3 {
  color: var(--primary-900);
  transition: color 0.2s ease;
  margin-bottom: 0.75rem;
}

.bento-card:hover h3 {
  color: var(--accent);
}

.bento-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.bento-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
}

.bento-arrow-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.2s ease;
}

.bento-card:hover .bento-arrow-link svg {
  transform: translateX(4px);
}

/* 2x2 Horizontal Cards for Preparation Steps */
.prep-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.prep-checklist-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prep-checklist-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.prep-checklist-card .icon-frame {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  background: var(--primary-50);
  color: var(--primary-700);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
}

.prep-card-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  color: var(--primary-900);
}

.prep-card-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ─── 10. Real Work Proof of Performance Gallery ─────────────────────── */
.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-card-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.04);
}

.gallery-card-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.gallery-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.gallery-location-badge {
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--primary-700);
  background: var(--primary-50);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.gallery-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--primary-900);
}

.gallery-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ─── 11. Numbered Process Section (Left-Aligned) ────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  position: relative;
}

.process-step {
  position: relative;
  background: var(--surface-card);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.step-num-large {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  margin-bottom: 1rem;
}

/* ─── 12. Symptom Checker & Tables ───────────────────────────────────── */
.symptom-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
}

.symptom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.symptom-table th {
  background-color: var(--primary-900);
  color: #FFFFFF;
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
}

.symptom-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-main);
  text-align: left;
}

.symptom-table tr:last-child td {
  border-bottom: none;
}

.symptom-table tr:hover td {
  background-color: var(--primary-50);
}

/* ─── 13. Callout Boxes ──────────────────────────────────────────────── */
.callout-box {
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  text-align: left;
}

.callout-box p {
  margin-bottom: 0;
  font-size: 0.975rem;
}

.callout-box strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.callout-tip {
  background-color: var(--primary-50);
  border-left: 4px solid var(--primary-600);
  color: var(--primary-950);
}

.callout-warning {
  background-color: var(--accent-50);
  border-left: 4px solid var(--accent);
  color: #7C2D12;
}

.callout-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.callout-tip .callout-icon { stroke: var(--primary-600); }
.callout-warning .callout-icon { stroke: var(--accent); }

/* ─── 14. FAQ Accordion (<details>) ──────────────────────────────────── */
.faq-list {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}

.faq-item[open] {
  border-color: var(--primary-300);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-900);
  cursor: pointer;
  list-style: none;
  text-align: left;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon-rotator {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] .faq-icon-rotator {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ─── 15. Asymmetric Modern Dark CTA Band ────────────────────────────── */
.cta-band-dark {
  background: linear-gradient(145deg, var(--surface-dark) 0%, #0F2A4D 100%);
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  color: #FFFFFF;
  text-align: left;
}

.cta-band-dark::after {
  content: '';
  position: absolute;
  top: 50%; right: 10%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-split-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.cta-band-content {
  text-align: left;
}

.cta-band-content h2 {
  color: #FFFFFF;
}

.cta-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cta-check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #E2E8F0;
  font-size: 1rem;
  font-weight: 600;
}

.cta-check-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-light);
  stroke-width: 2.2;
}

.cta-call-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-call-box span {
  display: block;
  font-size: 0.85rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.phone-giant {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  margin: 0.75rem 0 1.5rem;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, color 0.2s ease;
}

.phone-giant:hover {
  transform: scale(1.03);
  color: var(--accent-light);
}

/* ─── 16. Service & Location Pages: Standard Clean Layout ─────────────── */
.inner-page-layout {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.content-column {
  width: 100%;
}

.page-hero-image-wrap {
  width: 100%;
  max-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-bottom: 2.75rem;
  background-color: var(--surface-bg);
}

.page-hero-image-wrap img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.content-column section, .content-column .content-block {
  margin-bottom: 3.5rem;
}

.content-column h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--surface-bg);
}

.content-column h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-column p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  max-width: 100%;
}

/* ─── 17. Site Footer ────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--surface-dark);
  color: #94A3B8;
  padding: clamp(4rem, 6vw, 6rem) 0 2rem;
  font-size: 0.95rem;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-family: var(--font-heading);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94A3B8;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}



/* ─── 18. Mobile Sticky Bottom Call Bar ──────────────────────────────── */
.mobile-sticky-callbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(11, 37, 69, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.mobile-callbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-callbar-info span {
  display: block;
  font-size: 0.75rem;
  color: #94A3B8;
  font-weight: 600;
  text-transform: uppercase;
}

.mobile-callbar-info strong {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 1.05rem;
}

.mobile-callbar-btn {
  background-color: var(--accent);
  color: #FFFFFF;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
}

/* ─── 19. Animations & Motion ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .floating-glass-card {
    animation: none !important;
  }
}

/* ─── 20. Responsive Breakpoints ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .site-header {
    height: 72px;
  }

  .nav-container, .header-container {
    padding: 0 1.25rem;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 1.75rem;
    overflow-y: auto;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-light);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 0.5rem;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0.5rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--surface-bg);
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background-color: var(--surface-bg);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    transform: none;
    display: none;
    margin-top: 0.25rem;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: block;
  }

  .dropdown-item a {
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
  }

  .mobile-nav-cta {
    display: block;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-media img {
    height: 320px;
  }

  .section-header-split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-split-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-featured {
    grid-column: span 1;
  }

  .project-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 64px;
  }

  .brand-logo-img, .brand-logo-link img {
    max-height: 38px;
  }

  .main-nav {
    top: 64px;
  }

  .mobile-sticky-callbar {
    display: block;
  }

  .header-call-btn span {
    display: none;
  }

  .header-call-btn {
    padding: 0.55rem 0.75rem;
    min-width: 42px;
    justify-content: center;
  }

  .bento-grid, .grid-2x2, .cards-2x2, .prep-checklist-grid {
    grid-template-columns: 1fr;
  }

  .prep-checklist-card {
    padding: 1.25rem;
  }

  .bento-card-body {
    padding: 1.25rem;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .floating-glass-card {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .table-scroll-container, .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .table-scroll-container table, .table-container table {
    min-width: 540px;
  }
}

@media (max-width: 480px) {
  .nav-container, .header-container {
    padding: 0 0.85rem;
  }

  .brand-logo-img, .brand-logo-link img {
    max-height: 34px;
    max-width: 155px;
  }

  .section {
    padding: 2.75rem 0;
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.65rem;
  }
}

