/* =========================================================
   Planet Truck and Trailer Repair Inc. — site stylesheet
   Brand: charcoal #2D2D2D + orange #E66B25 + white
   Theme based on the orange truck logo
   Fonts: Oswald (headings), Inter (body)
   Mobile-first, single-page layout
   ========================================================= */

:root {
  /* CHARCOAL — replaces the old "navy" role. Variable names kept for compatibility. */
  --navy: #2D2D2D;
  --navy-deep: #1A1A1A;
  --navy-soft: #4A4A4A;

  /* ORANGE — replaces the old "red" role. Matches the logo. */
  --red: #E66B25;
  --red-dark: #B5501C;
  --red-glow: rgba(230, 107, 37, 0.35);

  --gold: #F5B800;
  --gray-bg: #F7F7F7;
  --gray-line: #E4E4E4;
  --text: #1F1F1F;
  --text-light: #5A5A5A;
  --white: #FFFFFF;
  --max-w: 1180px;
  --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.06);
  --shadow: 0 8px 28px rgba(45, 45, 45, 0.10);
  --shadow-lg: 0 18px 50px rgba(45, 45, 45, 0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--red);
}

h1,
h2,
h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.6em;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-arrow,
.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

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

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 8px 24px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--red-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-call {
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  font-size: 13px;
  box-shadow: 0 4px 14px var(--red-glow);
}

.btn-call:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-call .btn-icon {
  width: 16px;
  height: 16px;
}

/* ---------- Header ---------- */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  border-bottom-color: var(--gray-line);
  box-shadow: 0 6px 24px rgba(45, 45, 45, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.logo-link {
  display: block;
  flex-shrink: 0;
  transition: opacity 0.2s var(--ease);
}

.logo-link:hover {
  opacity: 0.85;
}

.logo {
  height: 80px;
  width: auto;
}

.logo-mobile {
  display: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s var(--ease);
}

.primary-nav a:not(.btn-call)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}

.primary-nav a:not(.btn-call):hover::after {
  width: 100%;
}

.primary-nav a:hover {
  color: var(--red);
}

.primary-nav a.btn-call {
  color: var(--white);
}

.primary-nav a.btn-call:hover {
  color: var(--white);
}

/* Hamburger ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  padding: 130px 0 140px;
  text-align: left;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
  opacity: 0;
  will-change: transform, opacity;
  animation:
    heroEntrance 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards,
    heroBreathe 8s ease-in-out 1.5s infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Bottom-darkening layer keeps the sub-text + CTAs legible over any photo,
     diagonal layer carries the charcoal→orange brand warmth. */
  background:
    linear-gradient(to top,
      rgba(26, 26, 26, 0.88) 0%,
      rgba(26, 26, 26, 0.10) 48%,
      rgba(26, 26, 26, 0) 70%),
    linear-gradient(125deg,
      rgba(45, 45, 45, 0.94) 0%,
      rgba(45, 45, 45, 0.55) 55%,
      rgba(230, 107, 37, 0.32) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(230, 107, 37, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 184, 0, 0.10) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: scale(1.08);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroBreathe {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(230, 107, 37, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 6.2vw, 72px);
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
  line-height: 1.05;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-accent {
  background: linear-gradient(120deg, #FFB374 0%, #E66B25 50%, #FFB800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 1.7vw, 20px);
  max-width: 640px;
  margin: 0 0 40px;
  color: #DDE2EE;
  line-height: 1.6;
}

.hero-sub strong {
  color: var(--white);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Hero side card — phone, hours, languages */
.hero-card {
  position: relative;
  z-index: 3;
  background: rgba(20, 20, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 28px 26px;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  color: var(--white);
  max-width: 380px;
  justify-self: end;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
}

.hero-card-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFD9BD;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(230, 107, 37, 0.15);
  border: 1px solid rgba(230, 107, 37, 0.35);
  margin-bottom: 22px;
}

.hero-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
  animation: heroDotPulse 1.8s ease-in-out infinite;
}

@keyframes heroDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero-card-list {
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.hero-card-list > div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-list > div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hero-card-list dt {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B5BCD0;
  margin: 0 0 4px;
}

.hero-card-list dd {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.hero-card-list dd a {
  color: var(--white);
}

.hero-card-list dd a:hover {
  color: var(--red);
}

.hero-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.hero-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}

.hero-card-link:hover {
  color: #FFB374;
}

.hero-card-link:hover svg {
  transform: translateX(4px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  animation: scrollBob 2.4s ease-in-out infinite;
}

.hero-scroll-hint:hover {
  color: var(--white);
}

.hero-scroll-hint svg {
  width: 24px;
  height: 24px;
}

@keyframes scrollBob {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 44px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-item strong {
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFA470 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-item span {
  font-size: 12px;
  color: #CBD2E2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--gray-bg);
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(230, 107, 37, 0.08);
  border: 1px solid rgba(230, 107, 37, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 48px);
  text-align: center;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.section-title-left {
  text-align: left;
}

.section-lead {
  text-align: center;
  font-size: 17px;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-lead-left {
  text-align: left;
  margin-left: 0;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--text);
  text-decoration: none;
}

a.service-card:hover {
  color: var(--text);
}

a.service-card-featured:hover {
  color: var(--white);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.service-card-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s var(--ease);
}

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

.service-card-featured .service-card-link {
  color: #FFB374;
}

.service-card-featured {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-color: transparent;
}

.service-card-featured .service-media {
  flex: 1 1 auto;
  min-height: 420px;
  aspect-ratio: auto;
}

.service-card-featured .service-card-body {
  padding: 32px 32px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.service-card.service-card-featured h3 {
  font-size: 30px;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card.service-card-featured p {
  color: #C8CDDC;
  font-size: 16px;
}

.service-card-featured::before {
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  transform: scaleX(1);
  height: 4px;
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 6px 16px var(--red-glow);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: 3;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-deep);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-image {
  transform: scale(1.06);
}

.service-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45, 45, 45, 0) 50%, rgba(45, 45, 45, 0.45) 100%);
  pointer-events: none;
}

.service-icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  color: var(--red);
  box-shadow: 0 6px 18px rgba(45, 45, 45, 0.25);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 2;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card:hover .service-icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(-4deg) scale(1.05);
}

.service-card-body {
  padding: 28px 28px 30px;
  flex: 1;
}

.service-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  align-items: start;
}

.about-grid p {
  color: var(--text-light);
  margin: 0 0 18px;
}

.about-grid p strong {
  color: var(--text);
}

.why-list {
  list-style: none;
  padding: 32px;
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.why-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red) 0%, var(--gold) 100%);
}

.why-list li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--gray-line);
  font-weight: 500;
  position: relative;
  font-size: 15px;
}

.why-list li:last-child {
  border-bottom: none;
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

/* ---------- Service areas ---------- */
.areas-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 960px;
}

.areas-grid li {
  background: var(--white);
  border: 1px solid var(--gray-line);
  text-align: center;
  padding: 18px 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.25s var(--ease);
  cursor: default;
}

.areas-grid li svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  transition: transform 0.25s var(--ease);
}

.areas-grid li:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.areas-grid li:hover svg {
  color: var(--gold);
  transform: scale(1.15);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin: 0;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--gray-line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 24px;
  font-family: 'Oswald', serif;
  font-size: 90px;
  line-height: 1;
  color: rgba(230, 107, 37, 0.10);
  font-weight: 700;
  pointer-events: none;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.testimonial p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 18px;
  position: relative;
  z-index: 1;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
  display: block;
  border-top: 1px solid var(--gray-line);
  padding-top: 14px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-label {
  display: inline-block;
}

.contact-block {
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--gray-line);
  transition: border-color 0.2s var(--ease);
}

.contact-block:hover {
  border-left-color: var(--red);
}

.contact-block h3 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}

.contact-link {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.contact-link:hover {
  color: var(--red);
}

.hours-table {
  width: 100%;
  max-width: 340px;
  border-collapse: collapse;
  margin-top: 8px;
}

.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-line);
  font-size: 15px;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.02em;
}

.hours-note {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 10px;
}

.contact-cta {
  margin-top: 18px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-line);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  filter: saturate(1.05);
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #0F0F0F 100%);
  color: #B5BCD0;
  padding: 60px 0 30px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
  text-align: left;
}

.footer-logo {
  height: 80px;
  width: auto;
}

.footer-info p {
  margin: 4px 0;
  font-size: 15px;
}

.footer-info p strong {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.footer-info a {
  color: var(--white);
  font-weight: 500;
}

.footer-info a:hover {
  color: var(--red);
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #6E7592;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---------- Floating call button (mobile) ---------- */
.floating-call {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--red);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 24px var(--red-glow);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 50;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s var(--ease);
}

.floating-call::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid var(--red);
  animation: callPulse 2s ease-out infinite;
  pointer-events: none;
}

.floating-call:hover {
  color: var(--white);
  background: var(--red-dark);
  transform: scale(1.04);
}

.floating-call-icon {
  display: flex;
  align-items: center;
}

.floating-call-icon svg {
  width: 18px;
  height: 18px;
}

@keyframes callPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* ---------- Quote form ---------- */
.quote-form-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.quote-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
}
.quote-form-card .section-label { display: inline-block; }
.quote-form-title {
  font-size: clamp(24px, 3vw, 30px);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.quote-form-lead {
  color: var(--text-light);
  font-size: 15px;
  margin: 0 0 24px;
}

.quote-form { display: flex; flex-direction: column; gap: 16px; }
.form-hp { position: absolute; left: -9999px; visibility: hidden; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-req { color: var(--red); }

.quote-form input[type="text"],
.quote-form input[type="tel"],
.quote-form input[type="email"],
.quote-form textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #9CA3AF;
}
.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(230, 107, 37, 0.12);
  background: #FFFCFA;
}
.quote-form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
  font-family: 'Inter', sans-serif;
}
.quote-form input:invalid:not(:placeholder-shown):not(:focus),
.quote-form textarea:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #D63A48;
}

.form-submit { margin-top: 4px; align-self: flex-start; }
.form-note {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--text-light);
}
.form-note a { font-weight: 600; color: var(--red); }
.form-note a:hover { color: var(--red-dark); }

.claude-response {
  min-height: 100px;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-line);
  background: #F8FAFC;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  white-space: pre-wrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.claude-response.error {
  color: #981B2E;
  background: #FEF3F2;
  border-color: #F3B1AD;
}

/* Map: full-width when placed below contact-grid */
.map-wrapper-full {
  margin-top: 40px;
  min-height: 380px;
}
.map-wrapper-full iframe {
  min-height: 380px;
}

/* =========================================================
   SERVICE LANDING PAGES
   ========================================================= */

.container-narrow {
  max-width: 820px;
}

.primary-nav a.is-active {
  color: var(--red);
}

.primary-nav a.is-active::after {
  width: 100% !important;
}

/* Service hero */
.service-hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  padding: 110px 0 90px;
  overflow: hidden;
  isolation: isolate;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
      rgba(26, 26, 26, 0.95) 0%,
      rgba(45, 45, 45, 0.85) 55%,
      rgba(230, 107, 37, 0.5) 100%);
}

.service-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.service-hero .hero-eyebrow {
  margin-bottom: 22px;
}

.service-hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5.5vw, 64px);
  margin: 0 0 22px;
  letter-spacing: -0.015em;
  line-height: 1.05;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.service-hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: #DDE2EE;
  max-width: 680px;
  margin: 0 0 36px;
  line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span[aria-current="page"] {
  color: #FFB374;
  font-weight: 600;
}

.breadcrumb span[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.35);
}

/* Why-list as a 2-column grid for service pages */
.why-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 40px;
}

.why-list-grid li {
  padding-left: 32px;
}

/* Issues grid */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.issue-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.issue-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 36px;
  height: 3px;
  background: var(--red);
  border-radius: 0 0 3px 3px;
}

.issue-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.issue-card h3 {
  font-size: 19px;
  margin: 8px 0 10px;
}

.issue-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* Process steps */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: process;
}

.process-steps li {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  position: relative;
  overflow: hidden;
}

.process-steps li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
}

.process-num {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}

.process-steps h3 {
  font-size: 19px;
  margin: 0 0 8px;
}

.process-steps p {
  margin: 0;
  color: var(--text-light);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Pullquote */
.pullquote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.pullquote .stars {
  justify-content: center;
  margin-bottom: 24px;
}

.pullquote .stars svg {
  width: 22px;
  height: 22px;
}

.pullquote p {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
  margin: 0 0 22px;
  letter-spacing: -0.005em;
}

.pullquote cite {
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.faq-item[open] {
  border-color: rgba(230, 107, 37, 0.4);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  list-style: none;
  position: relative;
  padding-right: 56px;
  transition: color 0.2s var(--ease);
}

.faq-item summary:hover {
  color: var(--red);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-body {
  padding: 0 24px 22px;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

.faq-body p {
  margin: 0;
}

/* Related services */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 28px 26px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.related-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
  color: var(--text);
}

.related-card:hover::before {
  transform: scaleX(1);
}

.related-card h3 {
  font-size: 20px;
  margin: 0;
}

.related-card p {
  color: var(--text-light);
  font-size: 14.5px;
  margin: 0;
  flex: 1;
}

.related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 6px;
}

.related-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}

.related-card:hover .related-link svg {
  transform: translateX(4px);
}

/* Service-page responsive */
@media (max-width: 980px) {
  .issues-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-list-grid {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
}

@media (max-width: 720px) {
  .service-hero {
    padding: 80px 0 60px;
  }

  .issues-grid,
  .related-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    font-size: 16px;
    padding: 18px 56px 18px 20px;
  }
}

/* ---------- Footer social ---------- */
.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}
.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE — tablet
   ========================================================= */
@media (max-width: 980px) {
  .hero {
    text-align: center;
    padding: 110px 0 100px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-card {
    justify-self: center;
    text-align: left;
    width: 100%;
    max-width: 480px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .service-card-featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .service-card-featured .service-media {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .service-card-featured .service-card-body {
    padding: 28px 24px 30px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 12px;
  }

  .trust-item:nth-child(2)::after {
    display: none;
  }

  .section {
    padding: 80px 0;
  }
}

/* =========================================================
   RESPONSIVE — mobile
   ========================================================= */
@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 90px 0 80px;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .section-head {
    margin-bottom: 40px;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
    height: 70px;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--gray-line);
    box-shadow: 0 12px 24px rgba(45, 45, 45, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
  }

  .primary-nav[data-open="true"] {
    max-height: 480px;
  }

  .primary-nav a {
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-line);
    font-size: 16px;
  }

  .primary-nav a:not(.btn-call)::after {
    display: none;
  }

  .primary-nav a:hover {
    background: var(--gray-bg);
  }

  .primary-nav a.btn-call {
    margin: 14px 24px;
    text-align: center;
    border-bottom: none;
    padding: 14px;
    justify-content: center;
  }

  .hero-eyebrow {
    font-size: 11px;
    padding: 6px 14px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-scroll-hint {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card-featured {
    grid-column: span 1;
  }

  .hero-card {
    padding: 24px 22px;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
  }

  .footer-social {
    margin-left: 0;
  }

  .quote-form-card {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-submit {
    width: 100%;
    align-self: stretch;
  }

  .map-wrapper-full {
    margin-top: 28px;
    min-height: 320px;
  }

  .map-wrapper-full iframe {
    min-height: 320px;
  }

  .floating-call {
    display: inline-flex;
  }
}

@media (max-width: 380px) {
  .floating-call-text {
    display: none;
  }

  .floating-call {
    padding: 14px 16px;
  }
}

/* =========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {

  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    will-change: opacity, transform;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-stagger>* {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
    will-change: opacity, transform;
  }

  .reveal-stagger.is-visible>* {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-stagger.is-visible>*:nth-child(1) {
    transition-delay: 0.05s;
  }

  .reveal-stagger.is-visible>*:nth-child(2) {
    transition-delay: 0.12s;
  }

  .reveal-stagger.is-visible>*:nth-child(3) {
    transition-delay: 0.19s;
  }

  .reveal-stagger.is-visible>*:nth-child(4) {
    transition-delay: 0.26s;
  }

  .reveal-stagger.is-visible>*:nth-child(5) {
    transition-delay: 0.33s;
  }

  .reveal-stagger.is-visible>*:nth-child(6) {
    transition-delay: 0.40s;
  }

  .reveal-stagger.is-visible>*:nth-child(7) {
    transition-delay: 0.47s;
  }

  .reveal-stagger.is-visible>*:nth-child(8) {
    transition-delay: 0.54s;
  }

  .reveal-stagger.is-visible>*:nth-child(9) {
    transition-delay: 0.61s;
  }

  .reveal-stagger.is-visible>*:nth-child(10) {
    transition-delay: 0.68s;
  }

  .reveal-stagger-fast>* {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  }

  .reveal-stagger-fast.is-visible>* {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-stagger-fast.is-visible>*:nth-child(1) {
    transition-delay: 0.04s;
  }

  .reveal-stagger-fast.is-visible>*:nth-child(2) {
    transition-delay: 0.08s;
  }

  .reveal-stagger-fast.is-visible>*:nth-child(3) {
    transition-delay: 0.12s;
  }

  .reveal-stagger-fast.is-visible>*:nth-child(4) {
    transition-delay: 0.16s;
  }

  .reveal-stagger-fast.is-visible>*:nth-child(5) {
    transition-delay: 0.20s;
  }

  .reveal-stagger-fast.is-visible>*:nth-child(6) {
    transition-delay: 0.24s;
  }

  .reveal-stagger-fast.is-visible>*:nth-child(7) {
    transition-delay: 0.28s;
  }

  .reveal-stagger-fast.is-visible>*:nth-child(8) {
    transition-delay: 0.32s;
  }

  .reveal-stagger-fast.is-visible>*:nth-child(9) {
    transition-delay: 0.36s;
  }

  .reveal-stagger-fast.is-visible>*:nth-child(10) {
    transition-delay: 0.40s;
  }

  .hero-eyebrow,
  .hero h1,
  .hero .hero-sub,
  .hero .hero-ctas {
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeUp 0.85s var(--ease) forwards;
  }

  .hero h1 {
    animation-delay: 0.10s;
  }

  .hero .hero-sub {
    animation-delay: 0.22s;
  }

  .hero .hero-ctas {
    animation-delay: 0.36s;
  }

  @keyframes heroFadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* =========================================================
   MODERN / FLOWING ENHANCEMENTS
   Drifting gradient orbs, flowing gradient text, a scrolling
   keyword marquee, and a glowing CTA. Continuous motion is
   gated behind prefers-reduced-motion so it stays accessible.
   ========================================================= */

/* ---- Drifting gradient orbs behind the hero ---- */
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 2;            /* above overlay (1), below content (3) */
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  mix-blend-mode: screen;
}

.orb-1 {
  width: 460px;
  height: 460px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(230, 107, 37, 0.9) 0%, rgba(230, 107, 37, 0) 70%);
}

.orb-2 {
  width: 380px;
  height: 380px;
  bottom: -100px;
  right: 8%;
  background: radial-gradient(circle, rgba(245, 184, 0, 0.7) 0%, rgba(245, 184, 0, 0) 70%);
}

.orb-3 {
  width: 300px;
  height: 300px;
  top: 30%;
  right: 30%;
  background: radial-gradient(circle, rgba(255, 138, 76, 0.6) 0%, rgba(255, 138, 76, 0) 70%);
  opacity: 0.4;
}

/* ---- Flowing scrolling marquee band ---- */
.marquee {
  background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  border-top: 1px solid rgba(230, 107, 37, 0.25);
  border-bottom: 1px solid rgba(230, 107, 37, 0.25);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}

/* soft fade on the edges so items flow in/out instead of hard-cutting */
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-deep), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy-deep), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #FFFFFF;
}

.marquee-item i {
  color: var(--red);
  font-style: normal;
  font-size: 14px;
}

/* ---- Glowing, sheen-swept primary CTA ---- */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
}

@media (prefers-reduced-motion: no-preference) {

  /* orbs slowly drift around */
  .orb-1 { animation: orbFloat1 16s ease-in-out infinite alternate; }
  .orb-2 { animation: orbFloat2 20s ease-in-out infinite alternate; }
  .orb-3 { animation: orbFloat3 13s ease-in-out infinite alternate; }

  @keyframes orbFloat1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(120px, 80px) scale(1.15); }
  }
  @keyframes orbFloat2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-100px, -60px) scale(1.1); }
  }
  @keyframes orbFloat3 {
    from { transform: translate(0, 0) scale(0.9); }
    to   { transform: translate(60px, -90px) scale(1.2); }
  }

  /* hero accent word: continuously flowing gradient */
  .hero-accent {
    background: linear-gradient(120deg, #FFB374 0%, #E66B25 25%, #FFB800 50%, #E66B25 75%, #FFB374 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientFlow 6s ease-in-out infinite;
  }

  @keyframes gradientFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* marquee scroll — moves left by exactly half (one duplicated set) */
  .marquee-track {
    animation: marqueeScroll 30s linear infinite;
  }

  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* CTA sheen sweep on hover */
  .btn-primary:hover::after {
    animation: sheenSweep 0.8s var(--ease) forwards;
  }

  @keyframes sheenSweep {
    to { left: 130%; }
  }

  /* richer "flow-in" reveals: add a subtle blur + scale to the fade-up */
  .reveal {
    filter: blur(6px);
    transform: translateY(34px) scale(0.985);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
  }
  .reveal.is-visible {
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}