/* ==========================================================================
   Kilowatt Snc — Design system
   ========================================================================== */

:root {
  --color-green-600: #1a7a4c;
  --color-green-500: #22a063;
  --color-green-400: #2ec47a;
  --color-blue-900: #0c1f3d;
  --color-blue-800: #122a52;
  --color-blue-700: #1a3a6b;
  --color-blue-600: #1e4d8c;
  --color-blue-100: #e8eef6;
  --color-blue-50: #f3f6fa;
  --color-white: #ffffff;
  --color-gray-50: #f8f9fb;
  --color-gray-100: #eef1f5;
  --color-gray-200: #d8dee8;
  --color-gray-400: #8b95a5;
  --color-gray-600: #4a5568;
  --color-gray-800: #1e293b;
  --color-text: #1a2332;
  --color-text-muted: #5a6578;

  --font-family: "Inter", system-ui, -apple-system, sans-serif;
  --container-max: 72rem;
  --header-height: 4.5rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 1px 3px rgba(12, 31, 61, 0.08);
  --shadow-md: 0 4px 16px rgba(12, 31, 61, 0.1);
  --shadow-lg: 0 8px 32px rgba(12, 31, 61, 0.14);
  --transition: 180ms ease;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 0.5rem);
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
}

.page-home {
  padding-top: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-green-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-green-500);
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--color-blue-900);
  margin-top: 0;
}

p {
  margin-top: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--color-green-500);
  color: var(--color-white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

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

.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;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--color-green-400);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--color-green-500);
  color: var(--color-white);
  border-color: var(--color-green-500);
}

.btn--primary:hover {
  background: var(--color-green-600);
  border-color: var(--color-green-600);
  color: var(--color-white);
}

.btn--secondary {
  background: transparent;
  color: var(--color-blue-700);
  border-color: var(--color-blue-700);
}

.btn--secondary:hover {
  background: var(--color-blue-700);
  color: var(--color-white);
}

.btn--outline {
  background: transparent;
  color: var(--color-green-600);
  border-color: var(--color-green-500);
}

.btn--outline:hover {
  background: var(--color-green-500);
  color: var(--color-white);
}

.btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
}

.btn--light.btn--primary {
  background: var(--color-white);
  color: var(--color-green-600);
  border-color: var(--color-white);
}

.btn--light.btn--primary:hover {
  background: var(--color-gray-100);
  color: var(--color-green-600);
  border-color: var(--color-gray-100);
}

.btn--light.btn--secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--light.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--color-blue-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 18px rgba(12, 31, 61, 0.28);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.site-logo__picture {
  display: block;
}

.site-logo__picture--light {
  display: none;
}

.site-logo__img {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: min(54vw, 11.75rem);
}

@media (min-width: 768px) {
  .site-logo__img {
    height: 2.75rem;
    max-width: 12.75rem;
  }
}

.site-logo__picture--dark {
  display: none;
}

.site-logo__picture--light {
  display: block;
}

.site-logo--footer .site-logo__img {
  height: 2.35rem;
  max-width: 11.25rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--color-green-400);
  outline-offset: 2px;
}

.nav-toggle__bar {
  display: block;
  width: 1.375rem;
  height: 2px;
  margin-inline: auto;
  background: var(--color-white);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.main-nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-md);
}

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

.main-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.main-nav__list a {
  display: block;
  padding: 0.6rem 0;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
  text-decoration: none;
}

.main-nav__list a:hover,
.main-nav__list a:focus-visible {
  color: var(--color-green-400);
}

.main-nav__cta {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.main-nav__cta:hover {
  background: var(--color-white);
  color: var(--color-green-600);
  border-color: var(--color-white);
}

/* ==========================================================================
   Hero — cinematic (home)
   ========================================================================== */

.hero--cinematic {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  max-height: 100vh;
  max-height: 100svh;
  max-height: 100dvh;
  padding: 0;
  overflow: hidden;
  color: var(--color-white);
  border-bottom: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video,
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 30%;
}

.hero__video {
  z-index: 0;
}

.hero__bg--fallback {
  display: none;
  z-index: 0;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero--static-media .hero__video {
  display: none;
}

.hero--static-media .hero__bg--fallback {
  display: block;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 31, 61, 0.82) 0%, rgba(12, 31, 61, 0.4) 18%, transparent 34%),
    linear-gradient(105deg, rgba(12, 31, 61, 0.88) 0%, rgba(12, 31, 61, 0.72) 40%, rgba(12, 31, 61, 0.38) 70%, rgba(12, 31, 61, 0.5) 100%),
    linear-gradient(0deg, rgba(12, 31, 61, 0.6) 0%, transparent 48%);
  transition: opacity 0.9s ease;
}

.hero--cinematic .hero__inner,
.hero--cinematic .hero__scroll-hint {
  transition: opacity 0.85s ease, visibility 0.85s ease;
}

.hero--cinematic.hero--outro .hero__inner,
.hero--cinematic.hero--outro .hero__scroll-hint {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero--cinematic.hero--outro .hero__scrim {
  opacity: 0.2;
}

.hero--cinematic.hero--outro .hero__glow {
  opacity: 0;
  transition: opacity 0.85s ease;
}

.hero__glow {
  position: absolute;
  z-index: 1;
  width: 28rem;
  height: 28rem;
  right: -6rem;
  bottom: -8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 160, 99, 0.35) 0%, transparent 70%);
  animation: heroGlowPulse 8s ease-in-out infinite;
  pointer-events: none;
}

.hero--cinematic .hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  width: min(100% - clamp(3rem, 10vw, 10rem), var(--container-max));
  margin-inline: auto;
  padding-top: var(--header-height);
  padding-bottom: 1rem;
  padding-inline: clamp(0.5rem, 2vw, 1.5rem);
  box-sizing: border-box;
  min-height: 0;
}

.hero--cinematic .hero__content {
  max-width: 40rem;
  margin-inline: auto;
}

.hero--cinematic .hero__eyebrow {
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-green-400);
  background: rgba(34, 160, 99, 0.15);
  border: 1px solid rgba(46, 196, 122, 0.35);
  border-radius: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero--cinematic h1 {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}

.hero--cinematic .hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero--cinematic .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 28rem;
}

.hero__metric {
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  animation: heroMetricFloat 6s ease-in-out infinite;
}

.hero__metric:nth-child(2) {
  animation-delay: -2s;
}

.hero__metric:nth-child(3) {
  animation-delay: -4s;
}

.hero__metric-value {
  display: block;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
}

.hero__metric-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.hero__scroll-hint {
  position: absolute;
  z-index: 1;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--color-white);
  text-decoration: none;
  animation: heroScrollBounce 2.2s ease-in-out infinite;
  transition: background var(--transition), border-color var(--transition);
}

.hero__scroll-hint:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white);
}

.hero__scroll-hint-icon {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
}

.hero__reveal {
  opacity: 0;
  animation: heroReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__reveal--delay-1 { animation-delay: 0.12s; }
.hero__reveal--delay-2 { animation-delay: 0.24s; }
.hero__reveal--delay-3 { animation-delay: 0.36s; }
.hero__reveal--delay-4 { animation-delay: 0.5s; }

.hero-ticker {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 100%;
  margin-top: auto;
  overflow: hidden;
  background: var(--color-blue-900);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-ticker__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  padding: 0.85rem 0;
  animation: heroTicker 32s linear infinite;
}

.hero-ticker__track span {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.hero-ticker__track span::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.75rem;
  border-radius: 50%;
  background: var(--color-green-500);
  vertical-align: middle;
}

@keyframes heroKenBurns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, -1%); }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(1.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(0.45rem); }
}

@keyframes heroMetricFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

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

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .hero__bg--fallback {
    display: block;
    animation: none;
    will-change: auto;
  }

  .hero__glow,
  .hero__metric,
  .hero__scroll-hint,
  .hero-ticker__track,
  .hero__reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Header blu fisso su tutte le pagine */
.page-home .site-header,
.site-header {
  background: var(--color-blue-900);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.page-home .site-header.is-scrolled,
.site-header.is-scrolled {
  background: var(--color-blue-900);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 18px rgba(12, 31, 61, 0.28);
}

/* Mobile: menu a tendina con pannello chiaro e testi scuri */
@media (max-width: 767px) {
  .main-nav {
    background: var(--color-white);
  }

  .main-nav.is-open .main-nav__list a {
    color: var(--color-blue-900);
  }

  .main-nav.is-open .main-nav__list a:hover,
  .main-nav.is-open .main-nav__list a:focus-visible {
    color: var(--color-green-600);
  }

  .main-nav.is-open .main-nav__cta {
    background: var(--color-green-500);
    color: var(--color-white);
    border-color: var(--color-green-500);
  }

  .main-nav.is-open .main-nav__cta:hover {
    background: var(--color-green-600);
    border-color: var(--color-green-600);
    color: var(--color-white);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar {
    background: var(--color-white);
  }
}

@media (max-width: 767px) {
  .hero--cinematic {
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100svh;
    max-height: 100dvh;
    padding: 0;
  }

  .hero--cinematic .hero__inner {
    width: min(100% - 2rem, var(--container-max));
    padding-top: var(--header-height);
    padding-bottom: 1rem;
    padding-inline: 1rem;
    align-items: center;
    justify-content: center;
  }

  .hero--cinematic .hero__content {
    max-width: 34rem;
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .hero--cinematic .hero__subtitle {
    margin-inline: auto;
  }

  .hero--cinematic .hero__actions {
    justify-content: center;
  }

  .hero--cinematic .hero__scroll-hint {
    display: none;
  }

  .hero__metrics {
    display: none;
  }
}

@media (max-width: 767px) and (orientation: landscape),
(orientation: landscape) and (max-height: 820px) {
  .hero--cinematic {
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100svh;
    max-height: 100dvh;
    padding: 0;
  }

  .hero--cinematic .hero__inner {
    width: min(100% - 2.5rem, 58rem);
    padding-top: var(--header-height);
    padding-bottom: 0.5rem;
    padding-inline: 0.75rem;
    align-items: center;
    justify-content: center;
  }

  .hero--cinematic .hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 0.5rem 1.5rem;
    align-items: center;
    max-width: none;
    width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .hero--cinematic .hero__eyebrow {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin-bottom: 0.5rem;
  }

  .hero--cinematic h1 {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(1.15rem, 2.8vw, 1.6rem);
    margin-bottom: 0.35rem;
  }

  .hero--cinematic .hero__subtitle {
    grid-column: 1;
    grid-row: 3;
    font-size: clamp(0.75rem, 1.6vw, 0.9rem);
    margin-bottom: 0;
    max-width: none;
  }

  .hero--cinematic .hero__actions {
    display: flex;
    grid-column: 2;
    grid-row: 1 / span 3;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 0;
    gap: 0.5rem;
  }

  .hero--cinematic .hero__actions .btn {
    white-space: normal;
    padding: 0.55rem 0.85rem;
    font-size: 0.8125rem;
  }

  .hero__metrics {
    display: none;
  }

  .hero-ticker__track {
    padding: 0.55rem 0;
  }

  .hero__scroll-hint {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero--cinematic .hero__inner {
    padding-top: var(--header-height);
  }

  .hero__metrics {
    grid-template-columns: 1fr;
    max-width: 11rem;
  }

  .hero__scroll-hint {
    display: none;
  }
}

.section--reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .section--reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: 4rem 0;
}

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

.section__header {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.section__header--center {
  text-align: center;
  margin-inline: auto;
}

.section__header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section__header p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

.section__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}

.section__link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Strengths
   ========================================================================== */

.strengths__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.strength-card {
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.strength-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--color-green-400);
}

.strength-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-green-500);
}

.strength-card__icon svg {
  width: 100%;
  height: 100%;
}

.strength-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.strength-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.service-card {
  position: relative;
  padding: 1.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--color-green-500);
  height: 100%;
  transition: box-shadow var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
}

.service-card__number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gray-200);
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  padding-right: 2rem;
}

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

.service-card h3 a:hover {
  color: var(--color-green-600);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.service-card__link::after {
  content: " →";
}

/* ==========================================================================
   Audience
   ========================================================================== */

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

.audience-card {
  padding: 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
}

.audience-card--accent {
  background: var(--color-blue-900);
  border-color: var(--color-blue-800);
  color: var(--color-white);
}

.audience-card--accent h3 {
  color: var(--color-white);
}

.audience-card--accent p {
  color: rgba(255, 255, 255, 0.8);
}

.audience-card__label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-green-600);
}

.audience-card--accent .audience-card__label {
  color: var(--color-green-400);
}

.audience-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.audience-card p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Portfolio preview
   ========================================================================== */

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

.portfolio__grid > li {
  display: flex;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.portfolio-card:hover {
  box-shadow: var(--shadow-md);
}

.portfolio-card__image {
  display: block;
  width: 100%;
  height: 11rem;
  object-fit: cover;
  background-color: var(--color-gray-100);
}

.portfolio-card__image--italy {
  background-image:
    linear-gradient(135deg, rgba(12, 31, 61, 0.15) 0%, rgba(34, 160, 99, 0.2) 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1.5rem,
      rgba(255, 255, 255, 0.08) 1.5rem,
      rgba(255, 255, 255, 0.08) 1.55rem
    ),
    linear-gradient(160deg, #1a3a6b 0%, #22a063 100%);
}

.portfolio-card__image--spain {
  background-image:
    linear-gradient(135deg, rgba(12, 31, 61, 0.2) 0%, rgba(30, 77, 140, 0.15) 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 1.2rem,
      rgba(255, 255, 255, 0.06) 1.2rem,
      rgba(255, 255, 255, 0.06) 1.25rem
    ),
    linear-gradient(160deg, #c45c26 0%, #1a3a6b 60%, #122a52 100%);
}

.portfolio-card__image--swiss {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(12, 31, 61, 0.25) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 0.75rem,
      rgba(255, 255, 255, 0.04) 0.75rem,
      rgba(255, 255, 255, 0.04) 0.8rem
    ),
    linear-gradient(160deg, #4a6fa5 0%, #1e4d8c 50%, #0c1f3d 100%);
}

.portfolio-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.portfolio-card__tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.portfolio-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.portfolio-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.portfolio-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: auto 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--color-gray-100);
}

.portfolio-card__meta div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.portfolio-card__meta dt {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gray-400);
}

.portfolio-card__meta dd {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-blue-900);
}

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--color-blue-900) 0%, var(--color-blue-700) 100%);
  color: var(--color-white);
}

.cta-banner__inner {
  text-align: center;
  max-width: 42rem;
}

.cta-banner h2 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.75rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-blue-900);
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-green-400);
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0 2rem;
  grid-template-columns: 1fr;
}

.site-footer__heading {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.site-footer__note {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__address p,
.site-footer__col p {
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
}

.site-footer__assist {
  margin-top: 0.75rem;
}

.site-footer__assist a {
  font-weight: 600;
  color: var(--color-green-400);
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer__nav a {
  font-size: 0.9375rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
}

.site-footer__bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.8125rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-legal a:hover,
.footer-legal a[aria-current="page"] {
  color: var(--color-green-400);
}

.legal-content h2 {
  margin-top: 2rem;
}

.legal-content h3 {
  margin-top: 1.25rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}

.legal-content li {
  margin-bottom: 0.4rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Responsive — tablet
   ========================================================================== */

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

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

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

  .portfolio-preview .portfolio__grid {
    grid-template-columns: 1fr;
  }

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

/* ==========================================================================
   Responsive — desktop
   ========================================================================== */

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
  }

  .main-nav__list {
    flex-direction: row;
    gap: 0.25rem;
  }

  .main-nav__list a {
    padding: 0.5rem 0.75rem;
  }

  .hero--cinematic .hero__inner {
    width: min(100% - clamp(4rem, 12vw, 12rem), var(--container-max));
    justify-content: flex-start;
  }

  .hero--cinematic .hero__metrics {
    max-width: 32rem;
  }

  .hero--cinematic .hero__content {
    max-width: 42rem;
    margin-inline: clamp(1.5rem, 5vw, 4.5rem) auto;
  }

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

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

@media (min-width: 768px) and (orientation: landscape) and (max-height: 820px) {
  .hero--cinematic {
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100svh;
    max-height: 100dvh;
    padding: 0;
  }

  .hero--cinematic .hero__inner {
    width: min(100% - 3rem, 58rem);
    padding-top: var(--header-height);
    align-items: center;
    justify-content: center;
  }

  .hero--cinematic .hero__content {
    max-width: none;
    margin-inline: auto;
  }

  .hero--cinematic .hero__metrics {
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 5rem 0;
  }

  .strengths__grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .services__grid > li:nth-child(4),
  .services__grid > li:nth-child(5) {
    grid-column: span 1;
  }

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

  .site-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ==========================================================================
   Inner pages
   ========================================================================== */

.page-hero {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(160deg, var(--color-blue-50) 0%, var(--color-white) 100%);
  border-bottom: 1px solid var(--color-gray-200);
}

.page-hero .hero__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-blue-700);
  background: var(--color-blue-100);
  border-radius: 2rem;
  letter-spacing: 0.02em;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 40rem;
}

.page-hero__lead {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 42rem;
  margin-bottom: 0;
}

.page-hero__media {
  margin-top: 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

.page-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 22rem;
  object-fit: cover;
}

.section-media {
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

.section-media__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 28rem;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-blue-700);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-green-600);
  text-decoration: underline;
}

.breadcrumb span[aria-current="page"] {
  color: var(--color-text-muted);
}

.main-nav__list a[aria-current="page"] {
  color: var(--color-green-600);
  font-weight: 600;
}

.prose h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.prose p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

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

.check-list {
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.625rem;
  height: 0.625rem;
  background: var(--color-green-500);
  border-radius: 2px;
}

.process-steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-step {
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-green-500);
}

.process-step__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-green-600);
}

.process-step h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.why-list {
  display: grid;
  gap: 1rem;
}

.why-list li {
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
}

.why-list h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.why-list p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-info-card {
  padding: 2rem;
  background: var(--color-blue-900);
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
}

.contact-info-card h2 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.contact-info-card p {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.contact-info-card a {
  color: var(--color-green-400);
  text-decoration: none;
}

.contact-info-card__action {
  margin-top: 1.5rem;
}

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

.contact-form-panel {
  padding: 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
}

.contact-form-panel h2 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.contact-form-panel > p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-blue-900);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-green-500);
  box-shadow: 0 0 0 3px rgba(34, 160, 99, 0.15);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

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

.portfolio-card__image--germany {
  background-image:
    linear-gradient(135deg, rgba(12, 31, 61, 0.2) 0%, rgba(34, 160, 99, 0.15) 100%),
    repeating-linear-gradient(90deg, transparent, transparent 1rem, rgba(255, 255, 255, 0.05) 1rem, rgba(255, 255, 255, 0.05) 1.05rem),
    linear-gradient(160deg, #2d4a3e 0%, #1a3a6b 100%);
}

.portfolio-card__image--france {
  background-image:
    linear-gradient(135deg, rgba(12, 31, 61, 0.15) 0%, rgba(30, 77, 140, 0.2) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 1.4rem, rgba(255, 255, 255, 0.06) 1.4rem, rgba(255, 255, 255, 0.06) 1.45rem),
    linear-gradient(160deg, #3d5a80 0%, #1e4d8c 100%);
}

.portfolio-card__image--industrial {
  background-image:
    linear-gradient(135deg, rgba(34, 160, 99, 0.15) 0%, rgba(12, 31, 61, 0.25) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 0.5rem, rgba(255, 255, 255, 0.04) 0.5rem, rgba(255, 255, 255, 0.04) 0.55rem),
    linear-gradient(160deg, #1a3a6b 0%, #22a063 100%);
}

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

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

  .contact-layout {
    grid-template-columns: 1fr 1.4fr;
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .portfolio-page .portfolio__grid > li:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}

/* ==========================================================================
   Mission, team, clients, map, language
   ========================================================================== */

.mission-block {
  padding: 2rem;
  background: var(--color-blue-900);
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-green-500);
}

.mission-block h2 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.mission-block p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.team__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.team-card {
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--color-green-500);
}

.team-card__role {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-green-600);
}

.team-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.clients__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 1rem 1.25rem;
  background: var(--color-white);
  border: 1px dashed var(--color-gray-200);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-400);
  text-align: center;
  letter-spacing: 0.02em;
}

.client-logo img {
  max-height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.contact-map-wrap {
  margin-top: 2rem;
}

.contact-map-wrap h2 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.contact-map {
  display: block;
  width: 100%;
  height: 16rem;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
}

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

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

@media (min-width: 1024px) {
  .team__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .clients__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .contact-map {
    height: 20rem;
  }
}

/* ==========================================================================
   Home — mission split, parallax, showcase
   ========================================================================== */

.mission-split {
  padding: 7.5rem 0 5.5rem;
  background: var(--color-white);
}

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

.mission-split__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-green-600);
}

.mission-split__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.mission-split__content > p {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
  max-width: 34rem;
}

.mission-split__points {
  display: grid;
  gap: 0.65rem;
}

.mission-split__points li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 500;
  color: var(--color-blue-900);
}

.mission-split__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-green-500);
}

.mission-split__visual {
  margin: 0;
}

.mission-split__frame {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.mission-split__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.parallax-band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(35rem, 80vh, 51rem);
  overflow: hidden;
  color: var(--color-white);
}

.parallax-band--cta {
  min-height: clamp(32rem, 72vh, 45rem);
}

.parallax-band__media {
  position: absolute;
  inset: -30% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.18);
}

.parallax-band__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 31, 61, 0.88) 0%, rgba(12, 31, 61, 0.55) 50%, rgba(12, 31, 61, 0.72) 100%),
    linear-gradient(0deg, rgba(12, 31, 61, 0.45) 0%, transparent 40%);
}

.parallax-band__scrim--cta {
  background:
    linear-gradient(135deg, rgba(12, 31, 61, 0.9) 0%, rgba(12, 31, 61, 0.65) 55%, rgba(26, 58, 107, 0.75) 100%);
}

.parallax-band__content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  padding: 4.5rem 0;
}

.parallax-band__content--cta {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}

.parallax-band__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-green-400);
}

.parallax-band__quote {
  margin: 0 0 2rem;
  font-size: clamp(1.35rem, 3vw, 1.875rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.parallax-band__heading {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-white);
  line-height: 1.15;
}

.parallax-band__text {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.parallax-band__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.parallax-band__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.parallax-band__stats strong {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
}

.parallax-band__stats span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.parallax-band__content--cta h2 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.parallax-band__content--cta p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.75rem;
}

.parallax-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.aerial-band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(35rem, 80vh, 54rem);
  overflow: hidden;
  color: var(--color-white);
}

.aerial-band__media,
.aerial-band__layer {
  position: absolute;
  inset: -50% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.28);
}

.aerial-band__media {
  z-index: 0;
}

.aerial-band__layer {
  z-index: 1;
  left: 48%;
  right: -8%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.92;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.aerial-band__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(12, 31, 61, 0.88) 0%, rgba(12, 31, 61, 0.62) 42%, rgba(12, 31, 61, 0.35) 72%, rgba(12, 31, 61, 0.55) 100%),
    linear-gradient(0deg, rgba(12, 31, 61, 0.45) 0%, transparent 45%);
}

.aerial-band__content {
  position: relative;
  z-index: 3;
  max-width: 38rem;
  padding: 4rem 0;
}

.aerial-band__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-green-400);
}

.aerial-band__content h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.aerial-band__content > p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 1.5rem;
  max-width: 30rem;
}

.aerial-band__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.aerial-band__tags li {
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.page-home .portfolio-preview .portfolio-card__image {
  height: 13rem;
}

@media (min-width: 768px) {
  .mission-split__inner {
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
  }
}

@media (max-width: 767px) {
  .aerial-band__layer {
    display: none;
  }

  .aerial-band__content {
    text-align: center;
    margin-inline: auto;
  }

  .aerial-band__content > p {
    margin-inline: auto;
  }

  .aerial-band__tags {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mission-split__frame img,
  .parallax-band__media,
  .aerial-band__media,
  .aerial-band__layer {
    transform: none !important;
    will-change: auto;
  }
}
