/* ═══════════════════════════════════════════════
   J.A. KELLY CONTRACTING SERVICES
   Design System & Global Styles
   Brand Kit v1.0 — February 2026
   ═══════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  /* Brand Colors */
  --orange: #D88600;
  --dark-orange: #B06E00;
  --near-black: #1A1A1A;
  --charcoal: #2D2D2D;
  --white: #FFFFFF;
  --off-white: #F8F7F3;
  --warm-gray: #8A8680;
  --light-warm: #DDD9D0;

  /* Functional */
  --overlay: rgba(26, 26, 26, 0.72);
  --overlay-heavy: rgba(26, 26, 26, 0.82);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.18);
  --shadow-orange: 0 8px 30px rgba(216,134,0,0.25);

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Spacing */
  --section-pad: clamp(64px, 8vw, 120px);
  --content-max: 1200px;
  --nav-height: 72px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.1; text-transform: uppercase; }
h1 { font-size: clamp(40px, 5.5vw, 68px); letter-spacing: -0.5px; }
h2 { font-size: clamp(28px, 3.5vw, 44px); letter-spacing: 0.5px; }
h3 { font-size: clamp(20px, 2.2vw, 26px); letter-spacing: 0.5px; }
h4 { font-family: var(--font-body); font-weight: 600; font-size: 18px; text-transform: none; letter-spacing: 0; }

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

.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-muted { color: var(--warm-gray); }
.text-center { text-align: center; }

.section-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: 12px;
  display: inline-block;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--section-pad) 0;
}
.section--dark {
  background: var(--near-black);
  color: var(--white);
}
.section--charcoal {
  background: var(--charcoal);
  color: var(--white);
}
.section--light {
  background: var(--off-white);
}

.grid {
  display: grid;
  gap: 32px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 32px;
  border-radius: 0;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--dark-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn--dark {
  background: var(--near-black);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}
.btn .arrow {
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  background: transparent;
  transition: background 0.4s var(--ease);
}
.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 10001;
}
.nav-brand-logo {
  height: 56px;
  width: auto;
}

/* Hamburger toggle — always visible */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  cursor: pointer;
  z-index: 10001;
  padding: 4px 0;
}

/* Desktop inline nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
@media (min-width: 901px) {
  .nav-desktop { display: flex; }
}
.nav-desktop > a,
.nav-dropdown > a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-desktop > a:hover,
.nav-desktop > a.active,
.nav-dropdown > a:hover,
.nav-dropdown:hover > a {
  color: var(--orange);
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.6;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26,26,26,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 180px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  margin-top: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color 0.3s, background 0.3s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  color: var(--orange);
  background: rgba(255,255,255,.04);
}

/* Desktop social icons in navbar */
.nav-desktop-social {
  display: flex;
  gap: 12px;
  margin-left: 4px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,.15);
}
.nav-desktop-social a {
  color: rgba(255,255,255,.5);
  transition: color 0.3s;
}
.nav-desktop-social a:hover {
  color: var(--orange);
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* Fullscreen overlay menu */
.nav-menu {
  position: fixed;
  inset: 0;
  background: var(--near-black);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
  z-index: 9999;
  display: flex;
  isolation: isolate;
  overflow: hidden;
}
.nav-menu.open {
  opacity: 1;
  visibility: visible;
}

/* Left — nav links */
.nav-col-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(40px, 6vw, 80px);
}
.nav-col-left > a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(18px, 2.8vw, 32px);
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-col-left > a:hover,
.nav-col-left > a.active {
  color: var(--orange);
}

/* Right — info panel */
.nav-col-right {
  width: 320px;
  border-left: 1px solid rgba(255,255,255,0.07);
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}
.nav-info-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-info-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.25);
  margin-bottom: 8px;
}
.nav-info-group a {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: rgba(255,255,255,0.5) !important;
  padding: 2px 0 !important;
  transition: color 0.3s !important;
}
.nav-info-group a:hover { color: var(--orange) !important; }
.nav-info-muted {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  line-height: 1.5;
  margin-top: 4px;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-menu { flex-direction: column; overflow-y: auto; }
  .nav-col-left {
    padding: 100px 32px 32px;
    justify-content: flex-start;
  }
  .nav-col-left > a { font-size: 24px; }
  .nav-col-right {
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 32px;
    justify-content: flex-start;
  }
}

/* Social icons in nav & footer */
.nav-social,
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-social a,
.footer-social a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  height: 36px !important;
  border-radius: 0;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5) !important;
  padding: 0 !important;
  font-size: 0 !important;
  transition: background 0.3s, color 0.3s;
}
.nav-social a:hover,
.footer-social a:hover {
  background: var(--orange);
  color: var(--white) !important;
}
.nav-social svg,
.footer-social svg {
  flex-shrink: 0;
}
.footer-social {
  margin-top: 16px;
}

/* Remove old dropdown styles — no longer needed */
.nav-dropdown,
.nav-dropdown-menu { display: none; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh; /* dynamic viewport height for mobile browsers */
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--near-black);
  z-index: 0;
  overflow: hidden;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.82) 0%, rgba(26,26,26,0.6) 50%, rgba(26,26,26,0.72) 100%);
  z-index: 2;
  pointer-events: none;
}

/* YouTube video background */
.hero-video-wrap {
  position: absolute;
  inset: -4px;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  background: transparent;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110vw;
  height: 61.875vw;
  min-height: 110vh;
  min-width: 195.56vh;
  transform: translate(-50%, -50%);
  border: 0;
  object-fit: cover;
}

/* Fallback image behind video */
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--nav-height) clamp(24px, 5vw, 80px) 0;
  padding-top: calc(var(--nav-height) + 24px);
}
.hero-accent-bar {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, transparent 10%, var(--orange) 50%, transparent 90%);
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-left: 3px solid var(--orange);
  padding-left: 12px;
  background: rgba(216,134,0,0.1);
  border: 1px solid rgba(216,134,0,0.25);
  border-radius: 0;
  padding: 8px 20px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero-badge span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
}

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}
.hero-phone:hover { color: var(--white); }
.hero-phone-icon {
  width: 42px; height: 42px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s;
}
.hero-phone:hover .hero-phone-icon { border-color: var(--orange); }

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item:last-child { border-right: none; padding-right: 0; }
.hero-trust-check {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}
.hero-trust-item span {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
}

/* ── PROOF STRIP ── */
.proof-strip {
  background: var(--near-black);
  border-top: 3px solid var(--orange);
  padding: 28px 0;
}
.proof-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-item {
  text-align: center;
}
.proof-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  color: var(--orange);
  line-height: 1.1;
}
.proof-stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 2px;
  margin: 2px 0;
}
.proof-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
}
.proof-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.08);
}
.proof-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}
.proof-badges img {
  height: 44px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.proof-badges img:hover { opacity: 1; }

/* ── SERVICE CARDS ── */
.service-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--near-black);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-body {
  padding: 28px 24px;
}
.service-card-title {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}
.service-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card-link {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.service-card:hover .service-card-link { gap: 12px; }

/* Small service cards */
.service-card-sm {
  background: var(--white);
  border-radius: 0;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--light-warm);
  transition: all 0.3s var(--ease);
}
.service-card-sm:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card-sm-icon {
  width: 48px; height: 48px;
  border-radius: 0;
  background: rgba(216,134,0,0.08);
  border-bottom: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--orange);
}
.service-card-sm h4 {
  color: var(--near-black);
  margin-bottom: 8px;
}
.service-card-sm p {
  font-size: 14px;
  color: var(--warm-gray);
}

/* ── WHY US ── */
.why-card {
  text-align: center;
  padding: 40px 24px;
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 0;
  background: rgba(216,134,0,0.15);
  border-bottom: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #D88600;
}
.why-icon svg {
  color: #D88600;
  stroke: #D88600;
}
.why-card h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: none;
}
.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
/* why-card on light backgrounds */
.section--light .why-card h3 {
  color: var(--charcoal);
}
.section--light .why-card p {
  color: var(--warm-gray);
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--orange);
  border-radius: 0;
  padding: 32px;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(216,134,0,0.2); }
.testimonial-stars {
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 20px;
}
.testimonial-author {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}
.testimonial-source {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--orange);
  padding: 48px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 36px);
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 28px;
}
.cta-banner .btn--dark:hover {
  background: var(--near-black);
}

/* ── CONTACT FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--warm-gray);
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--light-warm);
  border-radius: 4px;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color 0.3s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
.footer {
  background: var(--off-white);
  padding: 64px 0 0;
  color: var(--warm-gray);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.footer-brand-logo { height: 80px; width: auto; margin-bottom: 16px; object-fit: contain; }
.footer-tagline {
  font-size: 14px;
  color: var(--warm-gray);
  margin-bottom: 20px;
}
.footer h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--warm-gray);
  padding: 4px 0;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--warm-gray);
}
.footer-contact-icon {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-badges {
  display: flex;
  gap: 12px;
  padding: 32px 0;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.footer-badges img {
  height: 52px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.footer-badges img:hover { opacity: 1; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: var(--warm-gray);
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0.05;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* Hero-specific animations */
.hero .hero-badge { animation: heroIn 0.8s var(--ease-out) 0.2s both; }
.hero h1 { animation: heroIn 0.8s var(--ease-out) 0.35s both; }
.hero-sub { animation: heroIn 0.8s var(--ease-out) 0.5s both; }
.hero-actions { animation: heroIn 0.8s var(--ease-out) 0.6s both; }
.hero-trust { animation: heroIn 0.8s var(--ease-out) 0.75s both; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-brand-logo { height: 32px; }

  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }

  .hero-trust { gap: 12px; }
  .hero-trust-item { border-right: none; padding-right: 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .proof-strip .container { gap: 24px; }
  .proof-divider { display: none; }
}

/* ── PROCESS STEPS ── */
.process-step { text-align: center; padding: 24px; }
.process-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}
.process-step h4 { color: var(--near-black); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--warm-gray); }
.section--charcoal .process-step h4,
.section--dark .process-step h4 { color: var(--white); }
.section--charcoal .process-step p,
.section--dark .process-step p { color: rgba(255,255,255,.6); }
.section--charcoal .process-num,
.section--dark .process-num { opacity: 0.5; }

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s var(--ease-out);
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* ── FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--light-warm);
}
.faq-q {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--near-black);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
details[open] .faq-q::after { content: '−'; }
.faq-a {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.75;
  padding: 0 0 20px;
}
.section--dark .faq-item,
.section--charcoal .faq-item { border-bottom-color: rgba(255,255,255,.1); }
.section--dark .faq-q,
.section--charcoal .faq-q { color: var(--white); }
.section--dark .faq-a,
.section--charcoal .faq-a { color: rgba(255,255,255,.6); }

/* ── AREA TAGS ── */
.area-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.area-tag {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 0;
  border: 1px solid var(--light-warm);
  color: var(--warm-gray);
  transition: all 0.3s;
  text-decoration: none;
}
a.area-tag:hover, .area-tag.active {
  border-color: var(--orange);
  color: var(--orange);
}
/* On dark backgrounds */
.section--dark .area-tag,
.section--charcoal .area-tag {
  border-color: rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
}

/* ── FORM WRAPPER ── */
.form-wrapper {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}
.form-wrapper-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 2px solid var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.form-wrapper-header svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* ── HCP BOOKING FORM ── */
.hcp-form-wrapper {
  border-radius: 0;
  overflow: hidden;
}
#hcp-lead-iframe {
  width: 100%;
  border: none;
  height: 880px;
  display: block;
}
@media (max-width: 768px) {
  #hcp-lead-iframe {
    height: 1200px;
  }
}

/* ── FLOATING MOBILE CTA ── */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0;
  bottom: -100px;
  z-index: 999;
  background: var(--near-black);
  border-top: 2px solid var(--orange);
  padding: 10px 12px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
  transition: bottom 0.3s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.mobile-cta.visible {
  bottom: 0;
}
@media (max-width: 768px) {
  .mobile-cta { display: flex; }
}
.mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-cta-phone {
  background: var(--charcoal);
  color: var(--white);
}
.mobile-cta-estimate {
  background: var(--orange);
  color: var(--white);
}
