/* Junior Elite Services — main styles */

:root {
  --navy: #1a2238;
  --navy-light: #242d47;
  --teal: #42979a;
  --teal-dark: #357a7d;
  --red: #ec3642;
  --orange: #f48d14;
  --charcoal: #333333;
  --white: #ffffff;
  --cream: #f4f1ec;
  --muted: rgba(255, 255, 255, 0.72);
  --text: #2a2a2a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 60px rgba(26, 34, 56, 0.18);
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: var(--teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* ── Header ── */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(26, 34, 56, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-social {
  display: none;
}

.header-cta {
  display: none;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: color 0.2s, background 0.2s, transform 0.2s;
}

.social-links a:hover {
  color: var(--orange);
  background: rgba(244, 141, 20, 0.15);
  transform: translateY(-1px);
}

.social-links svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

.footer-social {
  margin-top: 1rem;
}

.nav-mobile-social {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(66, 151, 154, 0.35);
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 12px 32px rgba(66, 151, 154, 0.45);
}

.btn-accent {
  background: var(--red);
  color: var(--white);
}

.btn-accent:hover {
  color: var(--white);
  background: #d42e39;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  color: var(--white);
  border-color: var(--orange);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: var(--navy);
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .header-social {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header-h) + 3rem) 1.25rem 4rem;
  background: var(--navy) url("../assets/photos/hero-primary.jpeg") center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.12);
  will-change: transform;
}

.hero-video__embed {
  position: absolute;
  inset: 0;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  min-height: 100dvh;
  transform: translate(-50%, -50%);
  border: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(26, 34, 56, 0.72) 0%, rgba(26, 34, 56, 0.55) 45%, rgba(26, 34, 56, 0.78) 100%),
    rgba(26, 34, 56, 0.35);
  pointer-events: none;
}

.hero-geo {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.25;
  background:
    linear-gradient(135deg, transparent 40%, rgba(244, 141, 20, 0.15) 40%, rgba(244, 141, 20, 0.15) 42%, transparent 42%),
    linear-gradient(225deg, transparent 55%, rgba(66, 151, 154, 0.2) 55%, rgba(66, 151, 154, 0.2) 58%, transparent 58%),
    linear-gradient(160deg, rgba(236, 54, 66, 0.08), transparent 50%);
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(244, 141, 20, 0.15);
  border: 1px solid rgba(244, 141, 20, 0.4);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 5vw, 3.125rem);
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--teal);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

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

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(var(--parallax-scale, 1.08));
  will-change: transform;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8% -8% auto auto;
  width: 45%;
  height: 45%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.85;
  z-index: -1;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

/* ── Sections ── */

.section {
  padding: 5rem 1.25rem;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-parallax {
  position: relative;
  overflow: hidden;
}

.parallax-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
  opacity: 0.28;
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
  will-change: transform;
}

.parallax-shape--teal {
  background: radial-gradient(circle, rgba(66, 151, 154, 0.85), rgba(66, 151, 154, 0));
}

.parallax-shape--orange {
  background: radial-gradient(circle, rgba(244, 141, 20, 0.75), rgba(244, 141, 20, 0));
}

.parallax-shape--services-a {
  top: 6%;
  right: -8%;
  width: min(340px, 55vw);
  height: min(340px, 55vw);
}

.parallax-shape--services-b {
  bottom: 4%;
  left: -10%;
  width: min(280px, 48vw);
  height: min(280px, 48vw);
}

.parallax-shape--why-a {
  top: 12%;
  left: -6%;
  width: min(260px, 44vw);
  height: min(260px, 44vw);
}

.parallax-shape--reviews-a {
  bottom: 8%;
  right: -5%;
  width: min(320px, 52vw);
  height: min(320px, 52vw);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.75rem;
}

.section-dark .section-label {
  color: var(--teal);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.25vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.008em;
}

.section-intro {
  max-width: 40rem;
  margin: 0 0 2.5rem;
  color: rgba(42, 42, 42, 0.85);
}

.section-dark .section-intro {
  color: var(--muted);
}

/* ── About ── */

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-slideshow {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--navy);
  overflow: hidden;
}

.about-slideshow__slides {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.about-slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(14%, 0, -120px) scale(0.92) rotateY(-16deg);
  transform-origin: center center;
  transition:
    opacity 0.68s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.68s;
  pointer-events: none;
  z-index: 0;
  will-change: opacity, transform;
}

.about-slideshow.is-forward .about-slideshow__slide:not(.is-active):not(.is-leaving) {
  transform: translate3d(14%, 0, -120px) scale(0.92) rotateY(-16deg);
}

.about-slideshow.is-backward .about-slideshow__slide:not(.is-active):not(.is-leaving) {
  transform: translate3d(-14%, 0, -120px) scale(0.92) rotateY(16deg);
}

.about-slideshow__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1) rotateY(0deg);
  pointer-events: auto;
  z-index: 2;
}

.about-slideshow.is-forward .about-slideshow__slide.is-leaving {
  opacity: 0;
  visibility: visible;
  transform: translate3d(-16%, 0, -80px) scale(0.9) rotateY(14deg);
  z-index: 1;
}

.about-slideshow.is-backward .about-slideshow__slide.is-leaving {
  opacity: 0;
  visibility: visible;
  transform: translate3d(16%, 0, -80px) scale(0.9) rotateY(-14deg);
  z-index: 1;
}

.about-slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
}

.about-slideshow__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26, 34, 56, 0.2);
  transition: background 0.2s ease, color 0.2s ease;
}

.about-slideshow__nav:hover,
.about-slideshow__nav:focus-visible {
  background: var(--teal);
  color: var(--white);
  outline: none;
}

.about-slideshow__nav--prev {
  left: 0.75rem;
}

.about-slideshow__nav--next {
  right: 0.75rem;
}

.about-slideshow__dots {
  position: absolute;
  left: 50%;
  bottom: 0.875rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
  padding: 0.375rem 0.625rem;
  border-radius: 999px;
  background: rgba(26, 34, 56, 0.45);
  backdrop-filter: blur(6px);
}

.about-slideshow__dots button {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.about-slideshow__dots button.is-active {
  background: var(--orange);
  transform: scale(1.25);
}

.about-slideshow__dots button:hover,
.about-slideshow__dots button:focus-visible {
  background: var(--white);
  outline: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

/* ── Services bento ── */

.services-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(26, 34, 56, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.service-card h3 a {
  color: inherit;
  text-decoration: none;
}

.service-card h3 a:hover {
  color: var(--teal-dark);
}

.service-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(42, 42, 42, 0.8);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(66, 151, 154, 0.15), rgba(244, 141, 20, 0.15));
}

.service-card--featured {
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  color: var(--white);
  grid-column: 1 / -1;
}

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

.service-card--featured p {
  color: var(--muted);
}

@media (min-width: 640px) {
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-bento {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* ── Areas ── */

.areas-grid {
  display: grid;
  gap: 2rem;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.areas-list li {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.875rem;
}

.areas-map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.04);
}

.areas-map__canvas {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: #e8e4dc;
}

.areas-map__canvas.is-loading {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.06) 8%, rgba(255, 255, 255, 0.14) 18%, rgba(255, 255, 255, 0.06) 33%) 0 0 / 200% 100%,
    #e8e4dc;
  animation: areas-map-shimmer 1.2s linear infinite;
}

@keyframes areas-map-shimmer {
  to {
    background-position: -200% 0, 0 0;
  }
}

.areas-map__error {
  display: grid;
  place-content: center;
  height: 100%;
  margin: 0;
  padding: 1.5rem;
  text-align: center;
  color: var(--navy);
  font-size: 0.9375rem;
}

.areas-map__error a {
  color: var(--teal-dark);
}

.areas-map-pin {
  background: transparent;
  border: 0;
}

.areas-map__canvas .leaflet-control-attribution {
  font-size: 0.625rem;
}

.areas-map-caption {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  margin: 0;
  z-index: 1;
}

.areas-map-caption a {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.areas-map-caption a:hover {
  background: var(--teal);
  color: var(--white);
}

@media (min-width: 768px) {
  .areas-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* ── Why / Process ── */

.pillars {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.pillar {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
}

.pillar h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
}

.pillar p {
  margin: 0;
  font-size: 0.9375rem;
}

/* ── Process timeline ── */

.process-timeline {
  margin-top: 3.5rem;
  padding: 2.5rem 1.5rem 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 241, 236, 0.6)),
    radial-gradient(circle at 100% 0%, rgba(66, 151, 154, 0.08), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(244, 141, 20, 0.06), transparent 40%);
  border: 1px solid rgba(26, 34, 56, 0.06);
  box-shadow: 0 20px 50px rgba(26, 34, 56, 0.08);
  position: relative;
  overflow: hidden;
}

.process-timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(66, 151, 154, 0.04), transparent);
  opacity: 0;
  transform: translateX(-100%);
  pointer-events: none;
}

.process-timeline.is-visible::before {
  animation: process-shimmer 1.8s ease 0.6s forwards;
}

@keyframes process-shimmer {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

.process-timeline__title {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.process-timeline__intro {
  margin: 0 0 2rem;
  max-width: 42rem;
  color: rgba(42, 42, 42, 0.78);
  font-size: 1rem;
}

.process-track {
  display: none;
}

.process-timeline__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  position: relative;
}

.process-step {
  --step-delay: calc(0.14s * var(--step) + 0.25s);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  position: relative;
  opacity: 0;
  transform: translateX(-12px);
}

.process-timeline.is-visible .process-step {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.55s ease var(--step-delay), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--step-delay);
}

.process-step__marker {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.process-step__marker span {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--orange), #ff9f2e);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9375rem;
  box-shadow: 0 8px 20px rgba(244, 141, 20, 0.35);
  transform: scale(0.6);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) var(--step-delay), box-shadow 0.3s ease;
}

.process-timeline.is-visible .process-step__marker span {
  transform: scale(1);
}

.process-step:hover .process-step__marker span {
  box-shadow: 0 10px 28px rgba(244, 141, 20, 0.45);
  transform: scale(1.06);
}

.process-step__body {
  padding: 1.125rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(26, 34, 56, 0.06);
  box-shadow: 0 8px 24px rgba(26, 34, 56, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-step:hover .process-step__body {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(26, 34, 56, 0.1);
  border-color: rgba(66, 151, 154, 0.25);
}

.process-step__body h4 {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
}

.process-step__body p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(42, 42, 42, 0.75);
  line-height: 1.55;
}

/* Vertical rail — mobile */
.process-timeline__steps::before {
  content: "";
  position: absolute;
  left: 1.375rem;
  top: 1.375rem;
  bottom: 1.375rem;
  width: 2px;
  background: rgba(26, 34, 56, 0.08);
  border-radius: 999px;
  transform-origin: top;
  transform: scaleY(0);
}

.process-timeline.is-visible .process-timeline__steps::before {
  transform: scaleY(1);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

@media (min-width: 900px) {
  .process-timeline {
    padding: 3rem 2.5rem 2.5rem;
  }

  .process-track {
    display: block;
    position: relative;
    height: 3px;
    margin: 0 8% 0;
  }

  .process-track__line {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    transform: scaleX(0);
    transform-origin: left center;
    box-shadow: 0 0 20px rgba(66, 151, 154, 0.35);
  }

  .process-timeline.is-visible .process-track__line {
    transform: scaleX(1);
    transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  }

  .process-timeline__steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: -1.5rem;
  }

  .process-timeline__steps::before {
    display: none;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
  }

  .process-timeline.is-visible .process-step {
    transform: translateY(0);
  }

  .process-step__marker {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
  }

  .process-step__marker span {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
    border: 4px solid var(--cream);
    outline: 2px solid rgba(66, 151, 154, 0.2);
  }

  .process-step__body {
    padding: 1.25rem 1rem;
    min-height: 7.5rem;
  }
}

.process-guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 34, 56, 0.08);
  text-align: center;
}

.process-guarantee__text {
  margin: 0;
  max-width: 28rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
}

.quality-seal {
  width: min(180px, 55vw);
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(26, 34, 56, 0.12));
}

.process-guarantee__cta {
  width: 100%;
  max-width: 16rem;
}

@media (min-width: 768px) {
  .process-guarantee {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
  }

  .process-guarantee__text {
    flex: 1 1 0;
  }

  .quality-seal {
    flex: 0 0 auto;
    width: 140px;
  }

  .process-guarantee__cta {
    flex: 0 0 auto;
    width: auto;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Reviews ── */

.reviews-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: -1rem 0 2rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
}

.reviews-trust__score {
  font-weight: 700;
  color: var(--orange);
}

.reviews-trust__divider {
  opacity: 0.45;
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

.review-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26, 34, 56, 0.06);
  margin: 0;
  color: var(--text);
}

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
}

.review-card blockquote p {
  margin: 0;
  color: inherit;
}

.review-card footer {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}

.review-stars {
  color: var(--orange);
  letter-spacing: 0.1em;
}

.review-source {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.review-source--google {
  background: rgba(66, 133, 244, 0.12);
  color: #1a5fb4;
}

.review-source--thumbtack {
  background: rgba(0, 147, 237, 0.12);
  color: #0077b6;
}

.reviews-links {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.9375rem;
}

.reviews-links a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}

.reviews-links a:hover {
  color: var(--orange);
}

.reviews-links span {
  margin: 0 0.5rem;
  opacity: 0.45;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Gallery ── */

.gallery-grid {
  column-count: 2;
  column-gap: 0.625rem;
}

.gallery-grid figure {
  break-inside: avoid;
  margin: 0 0 0.625rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26, 34, 56, 0.08);
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(var(--parallax-scale, 1.1));
  will-change: transform;
  transition: transform 0.35s ease;
}

.gallery-grid figure:hover img {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(calc(var(--parallax-scale, 1.1) + 0.04));
}

@media (min-width: 640px) {
  .gallery-grid {
    column-count: 3;
    column-gap: 0.75rem;
  }

  .gallery-grid figure {
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    column-count: 3;
    column-gap: 0.875rem;
  }

  .gallery-grid figure {
    margin-bottom: 0.875rem;
  }
}

/* ── Contact ── */

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-info a {
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--orange);
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.quote-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.quote-form input,
.quote-form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(26, 34, 56, 0.12);
  border-radius: var(--radius);
  font: inherit;
  background: var(--white);
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Custom select */

.custom-select {
  position: relative;
}

.custom-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(26, 34, 56, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-select__trigger:hover {
  border-color: rgba(66, 151, 154, 0.45);
}

.custom-select.is-open .custom-select__trigger,
.custom-select__trigger:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-color: var(--teal);
}

.custom-select.is-invalid .custom-select__trigger {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(236, 54, 66, 0.12);
}

.custom-select__value.is-placeholder {
  color: rgba(42, 42, 42, 0.5);
}

.custom-select__chevron {
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select__chevron {
  transform: rotate(-135deg) translateY(-2px);
}

.custom-select__menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.375rem);
  left: 0;
  right: 0;
  max-height: 16rem;
  overflow-y: auto;
  margin: 0;
  padding: 0.375rem;
  list-style: none;
  background: var(--white);
  border: 1px solid rgba(26, 34, 56, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(26, 34, 56, 0.16);
}

.custom-select__option {
  padding: 0.7rem 0.85rem;
  border-radius: calc(var(--radius) - 4px);
  color: var(--navy);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-select__option:hover,
.custom-select__option.is-focused {
  background: rgba(66, 151, 154, 0.12);
}

.custom-select__option.is-selected {
  background: rgba(244, 141, 20, 0.14);
  color: var(--navy);
  font-weight: 600;
}

.custom-select__option.is-selected::after {
  content: "✓";
  float: right;
  color: var(--teal-dark);
  font-weight: 700;
}

.form-status {
  font-size: 0.9375rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: rgba(66, 151, 154, 0.15);
  color: var(--teal-dark);
}

.form-status.error {
  background: rgba(236, 54, 66, 0.12);
  color: #ffd0d0;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.quote-form {
  position: relative;
}

.quote-form__turnstile {
  margin: 0.25rem 0 0.5rem;
}

.quote-form button[type="submit"][data-loading="true"] {
  opacity: 0.72;
  cursor: wait;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

/* ── Footer ── */

.site-footer {
  background: #121828;
  color: var(--muted);
  padding: 3rem 1.25rem 2rem;
  font-size: 0.875rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-inner img {
  height: 40px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-partner {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.footer-partner__label {
  margin: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-partner__link {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-partner__link:hover {
  color: var(--teal);
}

/* ── Reveal animation ── */

.reveal {
  --reveal-y: 24px;
  --parallax-y: 0px;
  opacity: 0;
  transform: translate3d(0, calc(var(--reveal-y, 0px) + var(--parallax-y, 0px)), 0);
  will-change: transform, opacity;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  --reveal-y: 0px;
  opacity: 1;
  transition: opacity 0.6s ease;
}

[data-parallax]:not(.reveal) {
  --parallax-y: 0px;
  --parallax-x: 0px;
  --parallax-scale: 1.08;
}

@media (prefers-reduced-motion: reduce) {
  .process-timeline::before {
    animation: none;
    opacity: 0;
  }

  .hero-video {
    display: none;
  }

  .about-slideshow__slide {
    transform: none !important;
    transition: opacity 0.2s ease !important;
  }

  .parallax-shape {
    display: none;
  }

  [data-parallax] {
    --parallax-y: 0px !important;
    --parallax-x: 0px !important;
    --parallax-scale: 1 !important;
  }

  .hero-video,
  .hero-visual img,
  .gallery-grid img {
    transform: none !important;
  }

  .reveal {
    transform: none !important;
  }

  .process-step,
  .process-step__marker span,
  .process-timeline__steps::before,
  .process-track__line {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
