:root {
  --blue: #2570fb;
  --blue-deep: #1a52d4;
  --blue-ink: #0d2a6b;
  --slate: #1a2233;
  --ink: #141820;
  --ink-soft: #445064;
  --mist: #e8ecf2;
  --paper: #f5f7fa;
  --stone: #d5dbe6;
  --line: rgba(20, 24, 32, 0.14);
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 74rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Figtree", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background:
    linear-gradient(180deg, #eef1f6 0%, var(--paper) 28%, #e9eef5 100%);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  color: var(--slate);
}

h1 {
  font-size: clamp(2.4rem, 5.8vw, 4.4rem);
  max-width: 13ch;
  color: #fff;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  max-width: 22ch;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
  margin: 0 0 1.1rem;
}

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

.section-kicker {
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin: 0 0 0.85rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
  padding: 0.75rem clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, rgba(8, 14, 28, 0.72) 0%, rgba(8, 14, 28, 0.28) 70%, transparent 100%);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease), color 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(245, 247, 250, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
  transition: color 0.35s var(--ease), text-shadow 0.35s var(--ease);
}

.site-header.is-scrolled .brand {
  color: var(--ink);
  text-shadow: none;
}

.brand img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.45rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled .brand img {
  box-shadow: none;
}

.nav {
  display: none;
  margin-left: auto;
  gap: 1.35rem;
}

.nav a,
.mobile-nav a {
  text-decoration: none;
  font-weight: 500;
  color: var(--ink-soft);
}

.nav a {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  transition: color 0.35s var(--ease), text-shadow 0.35s var(--ease);
}

.nav a:hover {
  color: #fff;
}

.site-header.is-scrolled .nav a {
  color: var(--ink-soft);
  text-shadow: none;
}

.site-header.is-scrolled .nav a:hover,
.mobile-nav a:hover {
  color: var(--blue);
}

.header-cta {
  display: none;
  margin-left: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 0.4rem;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.35s var(--ease);
}

.header-cta:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}

.site-header.is-scrolled .header-cta {
  box-shadow: none;
}

.nav-toggle {
  margin-left: auto;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 0.4rem;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), background 0.35s var(--ease);
}

.site-header.is-scrolled .nav-toggle span {
  background: var(--ink);
}

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

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

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto;
  z-index: 35;
  display: grid;
  gap: 0.15rem;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(245, 247, 250, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.8rem 0.25rem;
  font-size: 1.08rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.05);
  animation: hero-ken 20s var(--ease) forwards;
  filter: saturate(0.95) contrast(1.05) brightness(0.92);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 28, 0.5) 0%, rgba(8, 14, 28, 0.22) 40%, rgba(8, 14, 28, 0.9) 100%),
    linear-gradient(105deg, rgba(13, 42, 107, 0.55) 0%, rgba(13, 42, 107, 0.18) 42%, transparent 68%),
    linear-gradient(0deg, rgba(10, 18, 40, 0.35), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) clamp(1.25rem, 4vw, 2.5rem) clamp(3.25rem, 8vw, 5.75rem);
}

.brand-mark {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: #fff;
}

.hero .lede {
  max-width: 40rem;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.3rem;
  border-radius: 0.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: #4584ff;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

/* Sections */
.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(4.25rem, 10vw, 7.25rem) clamp(1.25rem, 4vw, 2.5rem);
}

.section-intro {
  max-width: 42rem;
  margin-bottom: clamp(2.75rem, 6vw, 4.25rem);
}

.section-intro p,
.heritage-copy p,
.capability-copy p,
.engagement-copy p,
.about-copy p,
.contact-copy p,
.platform p,
.model p,
.principle p,
.era-list p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

/* Heritage */
.heritage {
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.heritage-layout {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.heritage-copy {
  max-width: 40rem;
}

.era-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.era-list li {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.era-year {
  font-family: "Syne", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.era-title {
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--slate);
}

.era-list p {
  margin: 0.25rem 0 0;
  max-width: 36rem;
}

/* Full-bleed band */
.band-image {
  position: relative;
  width: 100%;
  max-height: min(52vh, 28rem);
  overflow: hidden;
}

.band-image img {
  width: 100%;
  height: min(52vh, 28rem);
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.band-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 42, 107, 0.28), transparent 45%, rgba(20, 24, 32, 0.2));
  pointer-events: none;
}

/* Capabilities */
.capability {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

.capability:last-child {
  margin-bottom: 0;
}

.capability-copy {
  max-width: 36rem;
}

.capability-points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.capability-points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.capability-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 1px;
  background: var(--blue);
  transform: translateY(-50%);
}

.capability-media {
  margin: 0;
  overflow: hidden;
}

.capability-media img,
.about-media img,
.contact-media img,
.engagement-media img {
  width: 100%;
  height: clamp(15rem, 42vw, 24rem);
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.capability:hover .capability-media img,
.about:hover .about-media img,
.engagement:hover .engagement-media img {
  transform: scale(1.03);
}

/* Platforms */
.platforms {
  padding-top: 0;
}

.platform-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.platform {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.platform h3 {
  margin-bottom: 0.55rem;
}

.platform p {
  max-width: 34rem;
  margin: 0;
}

/* Engagement */
.engagement-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 3.75rem);
}

.engagement-copy {
  max-width: 38rem;
}

.engagement-media {
  margin: 0;
  overflow: hidden;
}

.engagement-models {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.model {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.model h3 {
  margin-bottom: 0.5rem;
}

.model p {
  max-width: 40rem;
  margin: 0;
}

/* Clients */
.clients {
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
}

.client-logo-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.client-logo-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6.5rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.client-logo-grid img {
  width: auto;
  max-width: 100%;
  max-height: 3.75rem;
  object-fit: contain;
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.about-copy {
  max-width: 38rem;
}

.about-media {
  margin: 0;
  overflow: hidden;
}

.about-media img {
  height: clamp(16rem, 45vw, 26rem);
}

.principles {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.principle {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.principle h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.principle p {
  margin: 0;
  max-width: 32rem;
}

/* Contact */
.contact {
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.contact-panel {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.contact-email {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--blue);
  text-decoration: none;
}

.contact-email:hover {
  color: var(--blue-deep);
}

.contact-address {
  display: block;
  margin: 1rem 0 0;
  font-style: normal;
  font-weight: 500;
  color: var(--ink-soft);
}

.contact-note {
  margin-top: 1.25rem;
  font-size: 0.98rem;
}

.contact-media {
  margin: 0;
  overflow: hidden;
  min-height: 14rem;
}

.contact-media img {
  height: clamp(14rem, 40vw, 22rem);
  min-height: 14rem;
}

/* Footer */
.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 2.25rem clamp(1.25rem, 4vw, 2.5rem) 3rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-main {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.footer-brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink);
}

.footer-brand span {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
}

.footer-brand p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer-brand img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.35rem;
  flex-shrink: 0;
}

.footer-meta {
  display: grid;
  gap: 0.35rem;
}

.footer-meta a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.footer-meta a + a {
  font-weight: 500;
  color: var(--ink-soft);
}

.footer-meta a + a:hover {
  color: var(--blue);
}

.footer-meta a:hover {
  color: var(--blue-deep);
}

.footer-meta p {
  margin: 0;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero .reveal:nth-child(1) {
  transition-delay: 0.08s;
}

.hero .reveal:nth-child(2) {
  transition-delay: 0.2s;
}

.hero .reveal:nth-child(3) {
  transition-delay: 0.32s;
}

.hero .reveal:nth-child(4) {
  transition-delay: 0.44s;
}

@keyframes hero-ken {
  to {
    transform: scale(1);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-media img,
  .capability-media img,
  .about-media img,
  .engagement-media img {
    animation: none;
    transition: none;
    transform: none;
  }
}

@media (min-width: 768px) {
  .nav,
  .header-cta {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }

  .heritage-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: clamp(2rem, 5vw, 4.5rem);
  }

  .capability,
  .capability-reverse,
  .about-grid,
  .contact-panel,
  .engagement-layout {
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.75rem, 4vw, 3.25rem);
  }

  .capability-reverse .capability-copy {
    order: 2;
  }

  .capability-reverse .capability-media {
    order: 1;
  }

  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2rem;
    border-top: 0;
  }

  .platform {
    padding: 0 0 0 1.5rem;
    border-bottom: 0;
    border-left: 1px solid var(--line);
  }

  .platform:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .engagement-models {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2rem;
    border-top: 0;
  }

  .model {
    padding: 0 0 0 1.5rem;
    border-bottom: 0;
    border-left: 1px solid var(--line);
  }

  .model:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .principles {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2rem;
    border-top: 0;
  }

  .principle {
    padding: 0 0 0 1.5rem;
    border-bottom: 0;
    border-left: 1px solid var(--line);
  }

  .principle:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .client-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .client-logo-grid li {
    min-height: 7.25rem;
  }

  .footer-main {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
    justify-content: space-between;
  }

  .footer-meta {
    text-align: right;
    justify-items: end;
  }

  .contact-media img {
    min-height: 100%;
  }
}

/* Services page */
.inline-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.inline-link:hover {
  color: var(--blue-deep);
  text-decoration: underline;
}

/* Services hero slider (first viewport) */
.services-hero-slider {
  position: relative;
  min-height: 100svh;
  outline: none;
  background: var(--paper);
  transition: min-height 0.35s var(--ease);
}

.services-hero-slider .slider-viewport {
  overflow: hidden;
  min-height: 100svh;
  touch-action: pan-y;
  background: #0c1424;
  transition: min-height 0.35s var(--ease), height 0.35s var(--ease), margin 0.35s var(--ease);
}

.services-hero-slider .slider-track {
  display: flex;
  align-items: stretch;
  min-height: 100svh;
  height: 100%;
  transition: transform 0.5s var(--ease), min-height 0.35s var(--ease);
  will-change: transform;
}

/* After banner: compact section height (not full page) */
.services-hero-slider.is-light-slide {
  min-height: 0;
  padding: calc(var(--header-h) + 1.25rem) 0 2.5rem;
}

.services-hero-slider.is-light-slide .slider-viewport {
  width: min(100% - 2.5rem, var(--max));
  min-height: min(70vh, 36rem);
  height: min(70vh, 36rem);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.services-hero-slider.is-light-slide .slider-track {
  min-height: 100%;
  height: 100%;
}

.slider-chrome {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: grid;
  gap: 0.75rem;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.35rem;
  background: linear-gradient(180deg, transparent, rgba(8, 14, 28, 0.72) 45%, rgba(8, 14, 28, 0.88));
}

.services-hero-slider.is-light-slide .slider-chrome {
  position: relative;
  width: min(100% - 2.5rem, var(--max));
  margin: 0.85rem auto 0;
  padding: 0.35rem 0 0;
  background: none;
}

.slider-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.slider-status {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
}

.services-hero-slider.is-light-slide .slider-status {
  color: var(--blue-deep);
}

.slider-arrows {
  display: flex;
  gap: 0.5rem;
}

.slider-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.slider-arrow:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.22);
}

.services-hero-slider.is-light-slide .slider-arrow {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.85);
  color: var(--slate);
}

.services-hero-slider.is-light-slide .slider-arrow:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  min-height: 100svh;
  box-sizing: border-box;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  overflow: auto;
  background: linear-gradient(180deg, #eef1f6 0%, var(--paper) 40%, #e9eef5 100%);
}

.services-hero-slider.is-light-slide .slider-slide {
  min-height: 100%;
  height: 100%;
}

.slider-slide-banner {
  position: relative;
  display: grid;
  align-items: end;
  padding: 0;
  overflow: hidden;
  background: #0c1424;
  color: #fff;
}

.services-hero-slider:not(.is-light-slide) .slider-slide-banner {
  min-height: 100svh;
}

.slider-slide-banner .banner-media {
  position: absolute;
  inset: 0;
}

.slider-slide-banner .banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05) brightness(0.9);
}

.slider-slide-banner .banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 28, 0.5) 0%, rgba(8, 14, 28, 0.22) 40%, rgba(8, 14, 28, 0.9) 100%),
    linear-gradient(105deg, rgba(13, 42, 107, 0.55) 0%, rgba(13, 42, 107, 0.18) 42%, transparent 68%);
}

.slider-slide-banner .banner-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) clamp(1.25rem, 4vw, 2.5rem) 8rem;
}

.slider-slide-banner h1 {
  max-width: 12ch;
  color: #fff;
}

.slider-slide-banner .lede {
  max-width: 40rem;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.85rem;
}

.slider-slide-banner .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font: inherit;
}

.slider-slide .service-header {
  max-width: 42rem;
  margin-bottom: 1.25rem;
}

.slider-slide .service-header h2 {
  max-width: 22ch;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.slider-slide .service-header > p:last-child {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.service-flag {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.service-body {
  display: grid;
  gap: 1.5rem;
}

.service-col h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.service-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.service-col li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.98rem;
}

.service-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--blue);
  transform: translateY(-50%);
}

.service-note {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 0;
  max-width: 28rem;
}

.service-note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.service-note a:hover {
  color: var(--blue-deep);
}

.slider-slide.service-featured {
  background: linear-gradient(135deg, rgba(37, 112, 251, 0.07), transparent 55%);
}

.service-emergency .service-flag {
  color: #9a3412;
}

.slider-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.15rem 0 0.25rem;
}

.slider-dot {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.slider-dot:hover {
  background: #fff;
}

.slider-dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

.services-hero-slider.is-light-slide .slider-dot {
  background: var(--stone);
}

.services-hero-slider.is-light-slide .slider-dot:hover,
.services-hero-slider.is-light-slide .slider-dot.is-active {
  background: var(--blue);
}

.nav a[aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.site-header.is-scrolled .nav a[aria-current="page"] {
  color: var(--blue);
}

.services-cta {
  padding-top: clamp(4rem, 9vw, 6.5rem);
}

@media (min-width: 768px) {
  .service-body {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .slider-slide.service-featured .service-body {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding-bottom: clamp(4rem, 9vw, 6.5rem);
  }

  .nav {
    gap: 1.55rem;
  }
}
