/* ================================================
   MAPLE COATING SYSTEMS - Design System
   Brand Colors: Orange #F05A1A - Charcoal Grey #3D3D3D
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Covered+By+Your+Grace&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Manrope:wght@400;700;800;900&display=swap');

/* ------------------------------------ */
:root {
  /* ------------------------------------ */
  --orange: #F05A1A;
  --orange-dark: #D04E16;
  --orange-light: #FF7A3D;
  --orange-glow: rgba(240, 90, 26, 0.25);

  /* ------------------------------------ */
  --charcoal: #3D3D3D;
  --charcoal-2: #4A4A4A;
  --charcoal-3: #5A5A5A;

  /* ------------------------------------ */
  --soft: #F5F5F5;
  --cream: #FAFAFA;
  --line: #E5E5E5;
  --muted: #6B7280;
  --muted-2: #9CA3AF;
  --white: #ffffff;
  --dark: #1A1A1A;

  /* ------------------------------------ */
  --gradient-orange: linear-gradient(135deg, #F05A1A 0%, #FF7A3D 100%);
  --gradient-dark: linear-gradient(135deg, #3D3D3D 0%, #5A5A5A 100%);
  --gradient-hero: linear-gradient(135deg, #2D2D2D 0%, #3D3D3D 50%, #4A4A4A 100%);

  /* ------------------------------------ */
  /* ------------------------------------ */
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 70px rgba(0,0,0,0.18);
  --shadow-orange: 0 12px 40px rgba(240,90,26,0.30);


  /* ------------------------------------ */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-img: 16px;  /* Unified image corner radius */

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 88px;

  /* ------------------------------------ */
  --font-condensed: 'Raleway', sans-serif;   /* clean headings */
  --font-script:    'Covered By Your Grace', cursive;  /* handwriting accent */
  --font-body:      'Raleway', sans-serif;              /* body copy */
  --font-display:   'Raleway', sans-serif;
}

/* ------------------------------------ */
.heading-condensed {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.0;
}
.text-script {
  font-family: var(--font-script);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* ------------------------------------ */

/* Fade-up cards */
.system-card, .pkg-card {
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s ease, border-color 0.3s ease;
}
.system-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 60px rgba(240,90,26,0.18), 0 4px 16px rgba(0,0,0,0.12);
  border-color: var(--orange);
}

/* Process steps pulse */
.process-step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(240,90,26,0.15);
}
.process-step:hover .process-num {
  background: var(--orange);
  color: white;
  transform: scale(1.2) rotate(-5deg);
}
.process-num { transition: transform 0.35s ease, background 0.3s ease, color 0.3s ease; }

/* Feature rows image zoom */
.feature-img {
  overflow: hidden;
  border-radius: var(--radius-img);
}
.feature-img img,
.feature-img > div {
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.feature-row:hover .feature-img img,
.feature-row:hover .feature-img > div {
  transform: scale(1.04);
}

/* Stat items glow */
.stat-item {
  transition: background 0.35s ease, transform 0.3s ease;
}
.stat-item:hover {
  background: rgba(240,90,26,0.06);
  transform: translateY(-4px);
}
.stat-item:hover .stat-num { color: var(--orange); }
.stat-num { transition: color 0.3s ease; }

/* Team cards lift */
.team-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.18);
}

/* Testimonial cards */
.testimonial-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: var(--orange);
}

/* Nav links slide-underline */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  transform-origin: left;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* ------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 400;
}

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ------------------------------------ */
h1, h2, h3, h4 { font-family: 'Manrope', sans-serif; line-height: 1.1; color: inherit; letter-spacing: -0.01em; }
h1 { font-size: clamp(42px, 6vw, 82px); letter-spacing: -0.05em; font-weight: 900; }
h2 { font-size: clamp(32px, 4.5vw, 58px); letter-spacing: -0.04em; font-weight: 800; }
h3 { font-size: clamp(20px, 2.5vw, 28px); letter-spacing: -0.02em; font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
p { line-height: 1.7; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.28em;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  display: block;
}

/* ------------------------------------ */
.wrap { width: min(1200px, 92vw); margin: 0 auto; }
section { padding: 100px 0; }

/* ------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gradient-orange);
  color: white;
  box-shadow: var(--shadow-orange);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 50px rgba(240,90,26,0.45); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(240,90,26,0.3);
}

/* Mobile Phone Icon (Header) */
.mobile-phone-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(240, 90, 26, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.mobile-phone-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(240, 90, 26, 0.35);
  color: white;
}

/* Animated Phone Button */
.btn-phone-anim {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
  color: white;
  text-decoration: none;
  border-radius: var(--radius-xl);
  overflow: visible;
  z-index: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-phone-anim:hover {
  color: white;
}
.btn-phone-anim .phone-pulse {
  position: absolute;
  inset: 0;
  background: var(--orange);
  border-radius: var(--radius-xl);
  z-index: -1;
  animation: phonePulse 2s infinite;
}
.btn-phone-anim .phone-content {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}
@keyframes phonePulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(240,90,26,0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(240,90,26,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(240,90,26,0); }
}
.btn-outline:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

.btn-ghost {
  background: transparent;
  color: var(--orange);
  padding: 0;
  gap: 8px;
  font-size: 14px;
}
.btn-ghost:hover { gap: 14px; }
.btn-ghost .arrow { transition: transform 0.3s; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.btn-white {
  background: white;
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Light textured header */
  background: #ffffff;
  border-bottom: 1.5px solid rgba(240, 90, 26, 0.15);
  transition: var(--transition);
}

/* On scroll: add a subtle drop shadow, keep same background */
.site-header.scrolled::before {
  background: #ffffff;
  border-bottom-color: rgba(240, 90, 26, 0.25);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.15);
}

/*
  Dark-header pages
*/
.site-header.dark-header::before {
  background: #ffffff;
  border-bottom: 1.5px solid rgba(240, 90, 26, 0.18);
}
.site-header.dark-header.scrolled::before {
  background: #ffffff;
  border-bottom-color: rgba(240, 90, 26, 0.28);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

/* Progress bar */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--gradient-orange);
  transition: width 0.1s linear;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 15px;
  flex-shrink: 0;
  color: var(--charcoal);
  transition: var(--transition);
}

/* Logo image sizing - transparent PNG, no background needed */
.logo-wrap img {
  height: 82px;
  width: auto;
  display: block;
  /* On white header the logo needs no extra shadow - its own colors pop */
  filter: none;
  transition: filter var(--transition), transform var(--transition);
}
.logo-wrap:hover img { transform: scale(1.03); }

.site-header.dark-header .logo-wrap img {
  filter: none;
}

.site-header.dark-header .logo-wrap {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  color: #000;
}

/* Both dark and light headers now use dark text */
.site-header.dark-header .logo-wrap { color: #000; }
.site-header.dark-header.scrolled .logo-wrap { color: #000; }

/* Footer logo - same transparent treatment */
.site-footer .logo-wrap img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.logo-mark span { border-radius: 2px; }
.logo-mark span:nth-child(1) { background: #252525; }
.logo-mark span:nth-child(2) { background: var(--orange); }
.logo-mark span:nth-child(3) { background: #333; }
.logo-mark span:nth-child(4) { background: var(--orange); }

.logo-text small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--orange);
  font-weight: 700;
  margin-top: -4px;
}

/* Nav links - always dark on white glass header */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 800;
  color: #000;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.01em;
  position: relative;
}
/* Dark-header pages: same - nav is on light texture now */
.site-header.dark-header .nav-links a { color: #000; }
.site-header.dark-header.scrolled .nav-links a { color: #000; }
.nav-links a:hover { background: rgba(240,90,26,0.07); color: var(--orange); }
.site-header.dark-header .nav-links a:hover { background: rgba(240,90,26,0.07); color: var(--orange); }
.nav-links a.active { color: var(--orange); font-weight: 800; }

/* Hamburger - always dark on white glass */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
  flex-shrink: 0;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: #000;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.2s ease;
  display: block;
  border-radius: 3px;
  transform-origin: center;
}
.site-header.dark-header .hamburger span { background: #000; }

/* Hamburger - X animation when open */
.hamburger.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Dark overlay behind mobile panel */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}
.mobile-nav-overlay.open {
  display: block;
  opacity: 1;
}

/* Mobile nav panel - slides in from the RIGHT */
.mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: #111111;
  z-index: 999;
  padding: var(--nav-height) 0 0;
  gap: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              opacity 0.35s ease,
              visibility 0.4s;
  overflow-y: auto;
  box-shadow: -12px 0 60px rgba(0,0,0,0.5);
}
.mobile-nav.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

/* Nav links inside panel */
.mobile-nav a {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav a:hover {
  color: var(--orange);
  background: rgba(240,90,26,0.06);
  padding-left: 40px;
}

/* Close button inside panel */
.mobile-nav-close {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s, color 0.2s;
  border: none;
}
.mobile-nav-close:hover { background: var(--orange); color: white; }

/* ------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,13,13,0.88) 0%,
    rgba(13,13,13,0.65) 45%,
    rgba(13,13,13,0.25) 100%
  );
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,90,26,0.18);
  border: 1px solid rgba(240,90,26,0.35);
  color: #E03030;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero-desc {
  font-size: 19px;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num span { color: var(--orange-light); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; }

/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.08;
  animation: float-shape 12s ease-in-out infinite;
}
.shape-1 { width: 400px; height: 400px; background: var(--orange); top: -100px; right: 5%; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; background: #e05050; bottom: 10%; right: 20%; animation-delay: -4s; }
.shape-3 { width: 200px; height: 200px; background: var(--orange); top: 40%; right: 10%; animation-delay: -8s; }

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, -30px) scale(1.05); }
  66% { transform: translate(15px, 20px) scale(0.95); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}
.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ------------------------------------ */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  transition: var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--soft); }

.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(240,90,26,0.1), rgba(240,90,26,0.05));
  border: 1.5px solid rgba(240,90,26,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}
.trust-item:hover .trust-icon {
  background: var(--gradient-orange);
  border-color: transparent;
  color: white;
  transform: scale(1.1);
}
.trust-item-title { font-weight: 800; font-size: 15px; font-family: 'Manrope', sans-serif; margin-bottom: 4px; }
.trust-item-desc { font-size: 13.5px; color: var(--muted); }

/* - Section: About / Split - */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.section-copy h2 { margin-bottom: 20px; }
.section-copy p { color: var(--muted); font-size: 17px; margin-bottom: 28px; }

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--charcoal);
}
.check-item::before {
  content: '';
  width: 20px;
  height: 20px;
  background: rgba(240,90,26,0.12);
  border-radius: 50%;
  border: 1.5px solid rgba(240,90,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L4.5 7.5L11 1' stroke='%23C41E1E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Image blocks */
.photo-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.photo-block img { width: 100%; height: 100%; object-fit: cover; }
.photo-block.tall { height: 540px; }

.photo-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.photo-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}
.photo-badge-text strong { font-family: 'Manrope', sans-serif; display: block; font-size: 16px; }
.photo-badge-text span { font-size: 13px; color: var(--muted); }

/* ------------------------------------ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.feature-row.even .feature-text { order: -1; }

.feature-text {
  padding: 80px 10vw 80px 8vw;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.feature-text h2 { font-size: clamp(28px, 3.5vw, 46px); }
.feature-text p { color: var(--muted); font-size: 17px; }

.feature-img {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,90,26,0.08), transparent);
  transition: opacity 0.5s;
}
.feature-row:hover .feature-img::after { opacity: 0; }

/* ------------------------------------ */
.cards-section { background: var(--soft); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.system-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.system-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(240,90,26,0.2);
}

.card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%);
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.system-card:hover .card-img img { transform: scale(1.06); }

.card-body {
  padding: 22px;
}
.card-tag {
  display: inline-block;
  background: rgba(240,90,26,0.1);
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.card-title { font-size: 19px; font-weight: 800; font-family: 'Manrope', sans-serif; margin-bottom: 8px; }
.card-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.card-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  transition: gap 0.3s;
}
.system-card:hover .card-arrow { gap: 10px; }

/* ------------------------------------ */
.process-section { background: var(--charcoal); color: white; }
.process-section .eyebrow { color: var(--orange-light); }
.process-section h2 { color: white; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 56px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240,90,26,0.3), rgba(240,90,26,0.5), rgba(240,90,26,0.3), transparent);
  z-index: 0;
}

.process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover {
  background: rgba(240,90,26,0.1);
  border-color: rgba(240,90,26,0.25);
  transform: translateY(-6px);
}

.step-number {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: block;
}
.step-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.process-step h4 { color: white; margin-bottom: 10px; }
.process-step p { font-size: 13.5px; color: rgba(255,255,255,0.5); }

/* ------------------------------------ */
.stats-section { background: var(--orange); color: white; padding: 72px 0; overflow: hidden; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stat-item {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  color: white;
}
.stat-num sup { font-size: 0.45em; vertical-align: super; margin-left: 2px; }
.stat-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 0.05em; }

/* ------------------------------------ */
.packages-section { background: white; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pkg-card {
  border-radius: var(--radius-lg);
  padding: 38px;
  border: 1.5px solid var(--line);
  background: linear-gradient(160deg, #fff 0%, #fff9f9 100%);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--line);
  transition: background 0.3s;
}
.pkg-card.featured {
  background: var(--gradient-dark);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.pkg-card.featured::before { background: var(--gradient-orange); }

.pkg-card:hover:not(.featured) {
  border-color: rgba(240,90,26,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pkg-card:hover:not(.featured)::before { background: var(--gradient-orange); }

.pkg-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.pkg-card.featured .pkg-label { color: var(--orange-light); }

.pkg-name { font-size: 28px; font-family: 'Manrope', sans-serif; font-weight: 800; margin-bottom: 8px; }
.pkg-desc { font-size: 14.5px; color: var(--muted); margin-bottom: 24px; }
.pkg-card.featured .pkg-desc { color: rgba(255,255,255,0.6); }

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}
.pkg-features li::before {
  content: '-';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(240,90,26,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 10px;
  flex-shrink: 0;
}
.pkg-card.featured .pkg-features li::before {
  background: rgba(255,255,255,0.12);
  color: white;
}

/* ------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, #0f0d0d 0%, #1e1a1a 60%, #1A1A1A 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: var(--orange);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner h2 { color: white; max-width: 560px; }
.cta-banner p { color: rgba(255,255,255,0.6); margin-top: 12px; font-size: 16px; }

/* ------------------------------------ */
.site-footer {
  background: #ffffff;
  color: #000;
  font-weight: 600;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.footer-brand { padding-right: 40px; }
.footer-brand .logo-wrap { color: #000; margin-bottom: 20px; }
.footer-brand p { font-size: 14.5px; font-weight: 600; color: #000; line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid #000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 16px;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 24px;
}
.footer-col a {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-col .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: #000;
  margin-bottom: 14px;
}
.footer-contact-icon {
  font-size: 15px;
  margin-top: 1px;
  color: var(--orange);
  flex-shrink: 0;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: #000;
}
.footer-bottom a { color: #000; font-weight: 700; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--orange); }

/* ------------------------------------ */
/* Elements fade IN when scrolled into view,
   fade OUT when scrolled back UP out of view  */

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  will-change: opacity, transform;
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal       { opacity: 0; transform: translateY(44px); }
.reveal-left  { opacity: 0; transform: translateX(-44px); }
.reveal-right { opacity: 0; transform: translateX(44px); }
.reveal-scale { opacity: 0; transform: scale(0.88); }

/* Visible state - added/removed by JS */
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.34s; }
[data-delay="5"] { transition-delay: 0.44s; }
[data-delay="6"] { transition-delay: 0.56s; }

/* Respect user motion preferences (accessibility) */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ------------------------------------ */
.page-hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #0f0d0d 0%, #1e1a1a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: var(--orange);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { max-width: 700px; margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 19px; max-width: 560px; }

/* ------------------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-img {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}
.gallery-item.tall .gallery-img { height: 100%; }
.gallery-item:hover .gallery-img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text h4 { color: white; font-size: 18px; }
.gallery-overlay-text span { color: rgba(255,255,255,0.7); font-size: 13px; }

/* ------------------------------------ */
.contact-section { background: var(--soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--muted); font-size: 16px; margin-bottom: 36px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 46px; height: 46px;
  background: var(--gradient-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-title { font-weight: 800; font-size: 14px; margin-bottom: 2px; font-family: 'Manrope', sans-serif; }
.contact-detail-value { font-size: 14px; color: var(--muted); }

.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--charcoal); letter-spacing: 0.03em; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: 'Raleway', sans-serif;
  font-size: 14.5px;
  background: var(--soft);
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 4px rgba(240,90,26,0.1);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ------------------------------------ */
.text-orange { color: var(--orange); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

.section-header { max-width: 650px; margin-bottom: 56px; }
.section-header.center { margin: 0 auto 56px; text-align: center; }
.section-header p { color: var(--muted); font-size: 17px; margin-top: 16px; }

.tag {
  display: inline-block;
  background: rgba(240,90,26,0.1);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { font-size: 10px; }

/* ------------------------------------ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo {
  height: 280px;
  background-size: cover;
  background-position: center top;
}
.team-info { padding: 22px; }
.team-name { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--orange); font-weight: 700; margin-bottom: 8px; }
.team-bio { font-size: 13.5px; color: var(--muted); }

/* ------------------------------------ */
.testimonials-section { background: white; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--soft);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--line);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--orange); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--charcoal); margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  font-weight: 800;
  font-family: 'Manrope', sans-serif;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 800; font-size: 14px; }
.testimonial-location { font-size: 12.5px; color: var(--muted); }

/* ------------------------------------ */
.systems-col { grid-column: span 2; }

@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1250px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #navPhoneBtn, #navQuoteBtn { display: none !important; }
  .mobile-phone-icon { display: flex; }
  .nav-inner { justify-content: space-between; }
  .logo-wrap img { height: 52px; }
}

@media (max-width: 900px) {
  :root { --nav-height: 72px; }
  section { padding: 72px 0; }

  .logo-wrap img { height: 48px; }

  .split-section { grid-template-columns: 1fr; gap: 48px; }
  .split-section.reverse { direction: ltr; }

  .feature-row { grid-template-columns: 1fr; }
  .feature-row.even .feature-text { order: 0; }
  .feature-img { min-height: 300px; }
  .feature-text { padding: 56px 8vw; }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pkg-card.featured { transform: scale(1); }

  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }

  .cards-grid { grid-template-columns: 1fr 1fr; }

  .cta-banner-inner { flex-direction: column; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; padding-right: 0; }
  .systems-col { grid-column: span 2; }

  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: auto; }

  .team-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .hero-stats { gap: 32px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); }
  .cards-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .systems-col { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* -- Hero Video & Delayed Animation ------------ */
.hero-header.has-video-bg {
  position: relative;
  overflow: hidden;
  background: #000;
  color: white;
}
.hero-video {
  opacity: 0.8; /* Slightly dim the video */
}
.delayed-reveal {
  opacity: 0;
  animation: heroDelayedFadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) 2.5s forwards;
  transform: translateY(30px);
}
@keyframes heroDelayedFadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------ */
@media (max-width: 900px) {
  .page-hero { padding: 120px 0 72px; }
  .page-hero h1 { font-size: clamp(28px, 6vw, 42px); }
  .page-hero p { font-size: 15px; }
  .page-hero .breadcrumb { font-size: 12px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .cta-section .wrap { padding: 0 24px; }
  .cta-section h2 { font-size: clamp(24px, 5vw, 36px); }
}

@media (max-width: 600px) {
  .page-hero { padding: 100px 0 56px; }
  .page-hero::before { width: 200px; height: 200px; bottom: -40px; right: -40px; }

  .testimonial-card { padding: 24px; }
  .testimonials-grid { gap: 16px; }

  .gallery-item .gallery-overlay { opacity: 1; }

  .btn { padding: 12px 20px; font-size: 13px; }
  .btn-primary { padding: 14px 24px; }

  .section-title { font-size: clamp(24px, 6vw, 32px); }
  .section-subtitle { font-size: 14px; }
}

@media (max-width: 480px) {
  :root { --nav-height: 64px; }

  .page-hero { padding: 90px 0 48px; }
  .page-hero h1 { font-size: 26px; }

  .mobile-nav a { font-size: 18px; padding: 14px 24px; }
  .mobile-nav { width: min(300px, 92vw); }

  .footer-col h4 { font-size: 14px; }
  .footer-col a { font-size: 13px; }
  .footer-brand-text { font-size: 13px; }

  .logo-wrap img { height: 40px !important; }
}













.site-header { color: #000 !important; }
.site-header .nav-links a { color: #000 !important; }
.site-header .hamburger span { background: #000 !important; }





/* ==========================================================================
   CUSTOM CSS / CLIENT OVERRIDES
   Place any custom CSS code below this line to easily manage overrides.
========================================================================== */

