:root {
  --content-max: 1800px;
  --ink: #2B3442;
  --forest: #015C71;
  --leaf: #02818E;
  --acid: #95D8DC;
  --cream: #ffffff;
  --paper: #ffffff;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --display: "Anton", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[lang="ja"] h1.avs-ja-heading {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.95;
  transform: scaleX(0.88);
  transform-origin: left center;
}

html[lang="ja"] h2.avs-ja-heading {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  letter-spacing: -0.07em;
  transform: scaleX(0.88);
  transform-origin: left center;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
}

body.contact-page {
  min-height: 100vh;
  color: var(--white);
  background: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  width: 100%;
  padding: 34px clamp(22px, 4vw, 46px);
  color: var(--white);
  pointer-events: none;
  top: 0;
  background: transparent;
  border-bottom: 1px solid rgba(149, 216, 220, 0);
  box-shadow: none;
  backdrop-filter: none;
  transition: top 720ms cubic-bezier(0.16, 1, 0.3, 1), background 420ms ease, border-color 420ms ease, box-shadow 420ms ease, backdrop-filter 420ms ease;
  will-change: top;
  isolation: isolate;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgb(43, 52, 66);
  opacity: var(--header-panel-opacity, 0);
  transform: scaleY(var(--header-panel-scale, 0));
  transform-origin: top;
  transition: opacity 320ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header-panel {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgb(43, 52, 66);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 320ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

body.has-scrolled .site-header,
.site-header.is-solid {
  border-bottom-color: rgba(149, 216, 220, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: none !important;
}

body.drone-page {
  color: var(--white);
  background: var(--ink);
}

body.about-page {
  color: var(--white);
  background: var(--ink);
}

body.portfolio-page {
  color: var(--white);
  background: var(--ink);
}

.nav-reveal-zone {
  position: fixed;
  inset: 0 0 auto;
  z-index: 18;
  height: clamp(20px, 4vh, 44px);
  pointer-events: none;
  background: transparent;
}

.top-scroll-sentinel {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.brand,
.site-header nav {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease 140ms, transform 360ms cubic-bezier(0.16, 1, 0.3, 1) 100ms;
}

body.has-scrolled:not(.nav-open) .brand,
body.has-scrolled:not(.nav-open) .site-header nav {
  opacity: 0;
  transform: translateY(-12px);
  transition-delay: 0ms;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(172px, 16vw, 252px);
  padding: 0;
  filter: invert(1);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.site-header nav {
  display: flex;
  gap: clamp(12px, 2.1vw, 32px);
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.3vw, 2.5rem);
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.site-header nav a {
  opacity: 0.86;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(149, 216, 220, 0.3);
  border-radius: 999px;
  color: var(--white);
  background: rgba(43, 52, 66, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  font: 800 0.72rem/1 var(--body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: auto;
}

.mobile-nav-toggle__lines {
  display: grid;
  gap: 4px;
}

.mobile-nav-toggle__lines span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-nav-toggle__text {
  display: inline-block;
}

body.mobile-nav-open .mobile-nav-toggle__lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.mobile-nav-open .mobile-nav-toggle__lines span:nth-child(2) {
  opacity: 0;
}

body.mobile-nav-open .mobile-nav-toggle__lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.language-toggle {
  --switch-width: 4.35rem;
  --switch-height: 2.28rem;
  --switch-pad: 0.24rem;
  --switch-knob: calc(var(--switch-height) - (var(--switch-pad) * 2));
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: clamp(0.15rem, 0.9vw, 0.75rem);
  flex: 0 0 auto;
}

.language-toggle__label {
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.76);
  text-shadow: none;
  transition: color 240ms ease, opacity 240ms ease;
}

.language-switch {
  position: relative;
  display: inline-block;
  width: var(--switch-width);
  height: var(--switch-height);
  cursor: pointer;
  flex: 0 0 auto;
}

.language-switch__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.language-switch__slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(149, 216, 220, 0.18), rgba(1, 92, 113, 0.52)),
    rgba(43, 52, 66, 0.94);
  border: 1px solid rgba(149, 216, 220, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -10px 16px rgba(1, 92, 113, 0.24),
    0 10px 24px rgba(0, 0, 0, 0.24);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.language-switch__slider::before {
  content: "";
  position: absolute;
  inset: 0.22rem;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.language-switch__card {
  position: absolute;
  left: var(--switch-pad);
  top: var(--switch-pad);
  width: var(--switch-knob);
  height: var(--switch-knob);
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
  transform-style: preserve-3d;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.language-switch__face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  backface-visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.96);
}

.language-switch__face--front {
  transform: rotateY(0deg);
}

.language-switch__face--back {
  transform: rotateY(180deg);
}

.flag-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.flag-icon--jp {
  background: #ffffff;
}

.flag-icon--jp::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 44%;
  height: 44%;
  border-radius: 50%;
  background: #c8102e;
  transform: translate(-50%, -50%);
}

.flag-icon--uk {
  background:
    linear-gradient(90deg, transparent 0 39%, #ffffff 39% 61%, transparent 61% 100%),
    linear-gradient(transparent 0 39%, #ffffff 39% 61%, transparent 61% 100%),
    linear-gradient(27deg, transparent 0 42%, #ffffff 42% 50%, transparent 50% 100%),
    linear-gradient(-27deg, transparent 0 42%, #ffffff 42% 50%, transparent 50% 100%),
    linear-gradient(153deg, transparent 0 42%, #ffffff 42% 50%, transparent 50% 100%),
    linear-gradient(-153deg, transparent 0 42%, #ffffff 42% 50%, transparent 50% 100%),
    #0a3161;
}

.flag-icon--uk::before,
.flag-icon--uk::after {
  content: "";
  position: absolute;
  inset: 0;
}

.flag-icon--uk::before {
  background:
    linear-gradient(90deg, transparent 0 44.5%, #c8102e 44.5% 55.5%, transparent 55.5% 100%),
    linear-gradient(transparent 0 44.5%, #c8102e 44.5% 55.5%, transparent 55.5% 100%);
}

.flag-icon--uk::after {
  background:
    linear-gradient(27deg, transparent 0 46.5%, #c8102e 46.5% 50.5%, transparent 50.5% 100%),
    linear-gradient(-27deg, transparent 0 46.5%, #c8102e 46.5% 50.5%, transparent 50.5% 100%),
    linear-gradient(153deg, transparent 0 46.5%, #c8102e 46.5% 50.5%, transparent 50.5% 100%),
    linear-gradient(-153deg, transparent 0 46.5%, #c8102e 46.5% 50.5%, transparent 50.5% 100%);
}

.language-switch__input:checked ~ .language-switch__card {
  transform: translateX(calc(var(--switch-width) - var(--switch-knob) - (var(--switch-pad) * 2)));
}

.language-switch__input:checked ~ .language-switch__card .language-switch__face--front {
  transform: rotateY(-180deg);
}

.language-switch__input:checked ~ .language-switch__card .language-switch__face--back {
  transform: rotateY(0deg);
}

.language-switch__input:checked ~ .language-switch__slider {
  background:
    linear-gradient(145deg, rgba(149, 216, 220, 0.32), rgba(2, 129, 142, 0.68)),
    rgba(43, 52, 66, 0.96);
  border-color: rgba(149, 216, 220, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -10px 16px rgba(2, 129, 142, 0.3),
    0 12px 28px rgba(0, 0, 0, 0.26);
}

.language-switch:hover .language-switch__slider,
.language-switch:focus-visible .language-switch__slider {
  border-color: rgba(149, 216, 220, 0.68);
}

.language-switch__input:focus-visible ~ .language-switch__slider {
  outline: 2px solid rgba(149, 216, 220, 0.88);
  outline-offset: 4px;
}

body[data-language="en"] .language-toggle__label--left,
body[data-language="ja"] .language-toggle__label--right {
  color: rgba(255, 255, 255, 0.96);
}

body[data-language="en"] .language-toggle__label--right,
body[data-language="ja"] .language-toggle__label--left {
  color: rgba(255, 255, 255, 0.54);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 120px max(clamp(20px, 4vw, 56px), calc((100% - var(--content-max)) / 2)) 34px;
  color: var(--white);
  background: linear-gradient(145deg, #2B3442 0%, #015C71 52%, #02818E 100%);
}

.hero-thpace-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 1;
}

.topography {
  position: absolute;
  inset: -10%;
  z-index: 1;
  opacity: 0.16;
  background-image:
    repeating-radial-gradient(ellipse at 38% 42%, transparent 0 44px, rgba(255, 255, 255, 0.65) 46px 51px),
    repeating-radial-gradient(ellipse at 64% 68%, transparent 0 54px, rgba(255, 255, 255, 0.35) 56px 60px);
  transform: rotate(-9deg) scale(1.08);
  pointer-events: none;
}

.topography::before,
.topography::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-radial-gradient(ellipse at 38% 42%, transparent 0 44px, rgba(255, 255, 255, 0.72) 46px 51px),
    repeating-radial-gradient(ellipse at 64% 68%, transparent 0 54px, rgba(255, 255, 255, 0.4) 56px 60px);
  transform-origin: 50% 50%;
  opacity: 0;
  animation: contourRipplePulse 14s linear infinite;
}

.topography::after {
  animation-delay: 7s;
}

.hero .topography {
  display: none;
}

.about-hero .topography,
.contact-hero .topography,
.seo-hero .topography {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 19vh;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.98) 72%, var(--cream));
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 5;
  left: clamp(22px, 7vw, 132px);
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  max-width: 710px;
  pointer-events: none;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.65);
}

.meta-line {
  margin: 0 0 6px;
  max-width: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero h1,
.hero-title-stack h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.15rem, 10.3vw, 8.6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-summary {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  pointer-events: auto;
}

.button {
  --button-fg: var(--white);
  --button-fill-color: var(--acid);
  --button-border-color: transparent;
  --button-shadow-color: rgba(149, 216, 220, 0.45);
  --button-hover-fg: var(--ink);
  --button-bg: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 52px;
  padding: 12px 36px;
  border: 3px solid var(--button-border-color);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--button-fg);
  background: var(--button-bg);
  box-shadow: 0 0 0 2px var(--button-shadow-color);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    color 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    border-radius 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.button svg {
  position: absolute;
  width: 24px;
  height: 24px;
  fill: currentColor;
  z-index: 3;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.button .text {
  position: relative;
  z-index: 2;
  display: inline-block;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.button .arr-1 {
  right: 16px;
}

.button .arr-2 {
  left: -25%;
}

.button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 20px;
  height: 20px;
  background: var(--button-fill-color);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  color: var(--button-hover-fg);
  border-radius: 28px;
  box-shadow: 0 0 0 12px transparent;
}

.button:hover .arr-1,
.button:focus-visible .arr-1 {
  right: -25%;
}

.button:hover .arr-2,
.button:focus-visible .arr-2 {
  left: 16px;
}

.button:hover .text,
.button:focus-visible .text {
  transform: translateX(12px);
}

.button:hover .circle,
.button:focus-visible .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

.button:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 0 0 4px var(--button-shadow-color);
}

.button.primary {
  --button-fg: var(--ink);
  --button-fill-color: var(--acid);
  --button-shadow-color: rgba(149, 216, 220, 0.45);
  --button-hover-fg: var(--ink);
  --button-bg: var(--white);
  box-shadow: 0 0 0 3px rgba(149, 216, 220, 0.45), 0 16px 40px rgba(0, 0, 0, 0.26);
}

.button.dark {
  --button-fg: var(--white);
  --button-fill-color: var(--acid);
  --button-shadow-color: rgba(149, 216, 220, 0.3);
  --button-hover-fg: var(--ink);
  --button-bg: var(--ink);
}

.button.outline {
  --button-fg: var(--white);
  --button-fill-color: var(--acid);
  --button-border-color: rgba(255, 255, 255, 0.62);
  --button-shadow-color: rgba(255, 255, 255, 0.18);
  --button-hover-fg: var(--ink);
}

.text-link {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 10px;
  border-block: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.carousel-shell {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  perspective: 1800px;
  perspective-origin: 50% 44%;
}

.carousel-stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-height: none;
  transform: none;
  cursor: grab;
  touch-action: pan-y;
}

.carousel-stage:active {
  cursor: grabbing;
}

.carousel-stage:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 8px;
}

.carousel-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.5));
}

.still {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.still-1,
.mini.still-1 { background-image: url("assets/carousel-posters/poster-01.png"); }
.still-2,
.mini.still-2 { background-image: url("assets/carousel-posters/poster-02.png"); }
.still-3,
.mini.still-3 { background-image: url("assets/carousel-posters/poster-03.png"); }
.still-4,
.mini.still-4 { background-image: url("assets/carousel-posters/poster-04.png"); }
.still-5,
.mini.still-5 { background-image: url("assets/carousel-posters/poster-05.png"); }
.still-6,
.mini.still-6 { background-image: url("assets/carousel-posters/poster-06.png"); }

.carousel-arrow {
  position: absolute;
  z-index: 8;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: var(--white);
  background: rgba(43, 52, 66, 0.38);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.carousel-arrow svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-arrow.prev { left: 18px; }
.carousel-arrow.next { right: 18px; }

.hero-title-stack {
  position: absolute;
  z-index: 7;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(102px, 14vh, 158px);
  display: grid;
  align-items: end;
  justify-items: end;
  width: min(46vw, 760px);
  text-align: right;
  pointer-events: none;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.68);
}

.hero-title-layer {
  grid-area: 1 / 1;
  width: 100%;
  transition: opacity 220ms ease;
}

.hero-title-layer.is-next {
  opacity: 0;
}

.project-type {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title-stack h2 {
  font-size: clamp(3rem, 8vw, 7.5rem);
  width: 100%;
  text-align: right;
}

.hero-title-stack .carousel-title-line {
  display: block;
  width: max-content;
  margin-left: auto;
  white-space: nowrap;
}

.hero-title-stack p {
  margin: 9px 0 0 auto;
  max-width: 430px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.video-status {
  min-height: 1.3em;
  margin-top: 8px;
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.thumb-row {
  position: absolute;
  z-index: 8;
  right: clamp(24px, 4vw, 58px);
  bottom: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.thumb {
  width: 103px;
  height: 58px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  transform: translateY(0);
  transition: border-color 180ms ease, transform 180ms ease;
}

.thumb:hover,
.thumb:focus-visible,
.thumb.is-active {
  border-color: var(--acid);
  transform: translateY(-4px);
}

.mini {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.spotlight,
.feature-band,
.portfolio,
.process,
.contact {
  position: relative;
  z-index: 1;
}

.content-band {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}

.spotlight {
  position: relative;
  padding: clamp(72px, 10vw, 130px) max(clamp(22px, 7vw, 120px), calc((100% - var(--content-max)) / 2));
  background: var(--cream);
  perspective: 900px;
  overflow: hidden;
}

.spotlight-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) 1fr;
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
}

.spotlight-media {
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  box-shadow: none;
}

.spotlight-video-plane {
  position: relative;
  overflow: visible;
  width: 100%;
  background: transparent;
  isolation: isolate;
}

.spotlight-video-plane::before {
  content: none;
}

.spotlight-video-plane.is-tilting {
  box-shadow: none;
}

.spotlight-video-plane::after {
  content: none;
}

.spotlight-source-video,
.spotlight-panel-canvas {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.spotlight-source-video {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.spotlight-panel-canvas {
  position: absolute;
  top: -6%;
  left: -4%;
  width: 118%;
  height: 176%;
  z-index: 1;
  pointer-events: none;
}

.spotlight-plane-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.spotlight-video-plane.is-webgl-ready .spotlight-source-video {
  opacity: 0;
  visibility: hidden;
}

.spotlight-video-plane video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  backface-visibility: hidden;
}

.spotlight-copy h2,
.process-band > h2,
.feature-band h2,
.portfolio h2,
.process h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.spotlight-copy p,
.process-band p,
.feature-band p,
.process p,
.contact p {
  color: rgba(43, 52, 66, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.feature-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 86px max(clamp(22px, 7vw, 120px), calc((100% - var(--content-max)) / 2));
  color: var(--white);
  background: linear-gradient(120deg, #2B3442, #015C71 54%, #02818E);
}

.feature-band p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.72);
}

.section-kicker {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio {
  position: relative;
  padding: clamp(128px, 11vw, 172px) clamp(22px, 6vw, 96px) clamp(108px, 12vw, 170px);
  color: var(--white);
  background: #2B3442;
  overflow: hidden;
  scroll-margin-top: 120px;
}

.portfolio-band {
  position: relative;
}

.work-scene-canvas {
  position: absolute;
  inset: auto;
  left: 0;
  top: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  cursor: default;
  pointer-events: auto;
}

.portfolio.is-work-focused .work-scene-canvas {
  z-index: 4;
}

.section-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.text-link.light {
  color: var(--acid);
}

.work-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 58px) clamp(22px, 2.4vw, 34px);
  pointer-events: none;
}

.work-card {
  min-width: 0;
  display: grid;
  align-content: start;
}

.work-panel {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  width: 100%;
  background: transparent;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.work-panel-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  background: #0b1016;
}

.work-card p {
  margin: 18px 0 5px;
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.work-card span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
}

.social-proof {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 9vw, 122px) clamp(22px, 6vw, 96px);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(149, 216, 220, 0.18), transparent 28%),
    linear-gradient(135deg, #2B3442, #015C71 68%);
  overflow: hidden;
}

.social-proof-band {
  position: relative;
  z-index: 1;
}

.social-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.36) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.36) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

.social-proof-head,
.social-proof-layout,
.stats-grid {
  position: relative;
  z-index: 1;
}

.social-proof-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.social-proof h2,
.social-proof h3 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
}

.social-proof h2 {
  max-width: none;
  font-size: clamp(3rem, 6.2vw, 6.2rem);
  line-height: 0.94;
  white-space: nowrap;
}

.creator-list img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.stats-grid article {
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.stats-grid [data-ytjobs-stat] {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.35rem, 5.4vw, 5.4rem);
  line-height: 0.86;
  color: var(--acid);
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
}

.stats-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.social-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.7fr);
  gap: 24px;
}

.section-heading.compact {
  margin-bottom: 18px;
}

.panel-note {
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading.compact h3,
.creator-panel h3 {
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.95;
}

.top-video-panel,
.creator-panel {
  min-width: 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.top-video-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.top-video-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.92fr) minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  padding: 12px;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, background 180ms ease;
}

.top-video-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.top-video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.top-video-card h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.top-video-card p,
.top-video-card span {
  display: block;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.top-video-card strong {
  display: block;
}

.video-views {
  margin: 0 0 9px;
  font-family: var(--display);
  line-height: 0.86;
  letter-spacing: 0.01em;
}

.video-views .video-views-number {
  display: block;
  color: var(--acid);
  font-size: clamp(2.1rem, 4.2vw, 3.9rem);
}

.video-views .video-views-label {
  display: block;
  margin-top: 0.18em;
  color: rgba(149, 216, 220, 0.84);
  font-size: clamp(1.35rem, 2.6vw, 2.3rem);
  line-height: 0.98;
}

.video-likes {
  color: rgba(149, 216, 220, 0.84);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.creator-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.creator-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.creator-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.creator-card {
  display: block;
  min-width: 0;
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
}

.creator-card img {
  width: 88px;
  height: 88px;
  margin: 0 auto 12px;
}

.creator-card h4 {
  margin: 0;
  font-size: 1rem;
}

.creator-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  line-height: 1.35;
}

.data-status {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pixel-reveal-section {
  position: relative;
  z-index: 1;
  height: 390vh;
  color: var(--white);
  background: #000;
}

.pixel-reveal-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(149, 216, 220, 0.08), transparent 28%),
    #000;
}

.pixel-reveal-copy {
  position: absolute;
  z-index: 2;
  top: clamp(34px, 7vh, 82px);
  left: clamp(22px, 5vw, 96px);
  max-width: min(680px, 86vw);
  pointer-events: none;
}

.pixel-reveal-copy h2 {
  margin: 0;
  max-width: 760px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.pixel-reveal-copy p:last-child {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.pixel-grid-shell {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.pixel-grid {
  --pixel-cols: 48;
  --pixel-rows: 27;
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  grid-template-columns: repeat(var(--pixel-cols), 1fr);
  grid-template-rows: repeat(var(--pixel-rows), 1fr);
  width: max(100vw, calc(100vh * var(--pixel-cols) / var(--pixel-rows)));
  height: max(100vh, calc(100vw * var(--pixel-rows) / var(--pixel-cols)));
  gap: 3px;
  transform: translate3d(-50%, -50%, 0);
  overflow: hidden;
}

.pixel-tile {
  min-width: 0;
  min-height: 0;
  background-image: url("images/pixel_grid.png");
  background-repeat: no-repeat;
  opacity: 0;
  filter: brightness(0.76) saturate(1.02);
  transition: filter 140ms ease;
}

.pixel-tile.is-pointer {
  filter: brightness(1.28) saturate(1.18);
}

.process {
  padding: clamp(72px, 10vw, 126px) clamp(22px, 7vw, 120px);
  background: var(--paper);
}

.process-band {
  position: relative;
  z-index: 1;
  margin-top: clamp(48px, 8vw, 94px);
}

.process-band > h2 {
  max-width: 880px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.process-list div {
  padding-top: 24px;
  border-top: 2px solid rgba(43, 52, 66, 0.16);
}

.process-list span {
  color: var(--leaf);
  font-family: var(--display);
  font-size: 1.5rem;
}

.process-list h3 {
  margin: 12px 0 8px;
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.japan-map-section {
  position: relative;
  z-index: 1;
  padding: clamp(76px, 10vw, 128px) clamp(22px, 6vw, 96px);
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--forest) 54%, var(--leaf));
  overflow: hidden;
}

.japan-map-vanta {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

.japan-map-vanta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(149, 216, 220, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(43, 52, 66, 0.22), rgba(1, 92, 113, 0.28) 52%, rgba(43, 52, 66, 0.34));
}

.japan-map-vanta canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.japan-map-band {
  position: relative;
  z-index: 1;
}

.japan-map-copy,
.japan-map-layout {
  position: relative;
  z-index: 1;
}

.japan-map-copy {
  max-width: 960px;
  margin-bottom: clamp(32px, 5vw, 54px);
}

.japan-map-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.japan-map-copy p:last-child {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.japan-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}

.japan-map-stage {
  position: relative;
  min-height: clamp(540px, 64vw, 760px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(43, 52, 66, 0.55);
  background-size: 48px 48px;
  box-shadow: inset 0 0 70px rgba(149, 216, 220, 0.1), 0 34px 90px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  cursor: default;
}

.japan-map-stage.is-map-hovered {
  cursor: grab;
}

.japan-map-stage.is-map-dragging {
  cursor: grabbing;
}

.japan-map-svg {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  user-select: none;
  touch-action: none;
}

.japan-map-controls {
  position: absolute;
  z-index: 6;
  top: 18px;
  left: 18px;
  display: flex;
  gap: 8px;
  opacity: 0.66;
  transition: opacity 180ms ease, transform 180ms ease;
}

.japan-map-stage:hover .japan-map-controls,
.japan-map-stage:focus-within .japan-map-controls {
  opacity: 1;
  transform: translateY(-2px);
}

.japan-map-controls button {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(43, 52, 66, 0.72);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.japan-map-controls button[data-japan-map-reset] {
  padding: 0 14px;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.japan-map-hint {
  position: absolute;
  z-index: 6;
  left: 18px;
  bottom: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.62;
  pointer-events: none;
}

.japan-prefecture {
  fill: rgba(149, 216, 220, 0.44);
  stroke: #ffffff;
  stroke-width: 2px;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  opacity: 1;
  transition: opacity 160ms ease, stroke-width 160ms ease;
}

.japan-map-svg.is-ready .japan-prefecture {
  animation: mapRegionIn 680ms ease forwards;
}

.japan-map-svg g:focus {
  outline: none;
}

.japan-map-svg g:focus-visible .japan-prefecture {
  stroke-width: 3px;
}

.japan-prefecture.has-project {
  fill: rgba(149, 216, 220, 0.44);
}

.japan-prefecture:hover,
.japan-prefecture.is-hovered {
  stroke-width: 3px;
}

.japan-prefecture.is-selected {
  fill: rgba(149, 216, 220, 0.44);
  stroke: #ffffff;
  stroke-width: 3px;
}

.japan-map-tooltip {
  position: absolute;
  z-index: 5;
  display: none;
  transform: translate(14px, 14px);
  padding: 7px 10px;
  border-radius: 4px;
  color: var(--ink);
  background: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}

.japan-map-popup {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(43, 52, 66, 0.92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.japan-map-popup-head,
.japan-map-popup-body,
.japan-map-nav {
  padding: 22px;
}

.japan-map-popup-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.japan-map-popup-head p {
  margin: 0 0 4px;
  color: var(--acid);
  font-size: 1.35rem;
  font-weight: 800;
}

.japan-map-popup h3,
.japan-map-popup h4 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
}

.japan-map-popup h3 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.japan-map-close,
.japan-map-nav button,
.japan-map-tabs button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.japan-map-close {
  align-self: flex-start;
  padding: 10px 14px;
}

.japan-map-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #2B3442;
}

.japan-map-popup:not(.has-selection) .japan-map-media,
.japan-map-popup:not(.has-selection) .japan-map-tabs {
  display: none;
}

.japan-map-media img,
.japan-map-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.japan-map-media img {
  display: none;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.japan-map-media iframe {
  display: none;
}

.japan-map-tabs {
  display: none;
  gap: 8px;
  padding: 16px 22px 0;
}

.japan-map-tabs.is-visible {
  display: flex;
}

.japan-map-tabs button {
  width: 38px;
  height: 38px;
}

.japan-map-tabs button.is-active {
  border-color: var(--acid);
  color: var(--ink);
  background: var(--acid);
}

.japan-map-popup-body {
  flex: 1;
}

.japan-map-popup h4 {
  color: var(--acid);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.japan-map-role {
  margin: 10px 0 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.japan-map-popup-body p:not(.japan-map-role) {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.japan-map-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.japan-map-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(149, 216, 220, 0.9);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.japan-map-nav {
  display: flex;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.japan-map-nav button {
  flex: 1;
  min-height: 42px;
}

@keyframes mapRegionIn {
  from {
    opacity: 0;
    transform: translateY(0.08px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contourRipplePulse {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }

  16% {
    opacity: 0.2;
  }

  52% {
    opacity: 0.12;
  }

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

@keyframes mapContourRipplePulse {
  0% {
    opacity: 0;
    transform: rotate(-12deg) scale(0.96);
  }

  16% {
    opacity: 0.18;
  }

  52% {
    opacity: 0.1;
  }

  100% {
    opacity: 0;
    transform: rotate(-12deg) scale(1.18);
  }
}

.contact {
  min-height: 58vh;
  padding: 80px 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(149, 216, 220, 0.2), transparent 30%),
    #2B3442;
}

.contact-band {
  display: grid;
  justify-items: center;
  text-align: center;
  row-gap: 0;
}

.contact p {
  max-width: 620px;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-action-button {
  --contact-button-radius: 999px;
  --contact-button-offset-y: 24px;
  position: relative;
  display: inline-block;
  width: min(100%, 228px);
  height: 80px;
  border: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  transform: translateY(var(--contact-button-offset-y)) rotate(-7deg) skewX(4deg);
}

.contact-action-button__bg,
.contact-action-button__outline,
.contact-action-button__wrap {
  position: absolute;
  inset: 0;
  border-radius: var(--contact-button-radius);
}

.contact-action-button__bg {
  filter: blur(1px);
}

.contact-action-button__bg::before,
.contact-action-button__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(1, 92, 113, 0.98), rgba(2, 129, 142, 0.94));
}

.contact-action-button__bg::before {
  filter: blur(6px);
  transition: box-shadow 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
  box-shadow:
    -7px 6px 0 0 rgba(149, 216, 220, 0.16),
    -14px 12px 0 0 rgba(149, 216, 220, 0.1),
    -21px 18px 4px 0 rgba(43, 52, 66, 0.2),
    -28px 24px 8px 0 rgba(43, 52, 66, 0.14);
}

.contact-action-button__outline {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.contact-action-button__outline::before {
  content: "";
  position: absolute;
  inset: 3px;
  width: 108px;
  height: 260px;
  margin: auto;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.88) 50%, transparent 100%);
  animation: contact-button-spin 3s linear infinite;
  animation-play-state: paused;
}

.contact-action-button__wrap {
  overflow: hidden;
  padding: 3px;
  background: linear-gradient(180deg, rgba(149, 216, 220, 0.95) 0%, rgba(1, 92, 113, 0.94) 100%);
  transform: translate(6px, -6px);
  transition: transform 0.35s ease;
}

.contact-action-button__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--contact-button-radius) - 6px);
  background: linear-gradient(180deg, rgba(43, 52, 66, 0.96) 0%, rgba(1, 92, 113, 0.96) 100%);
  box-shadow:
    inset -2px 10px 12px -5px rgba(149, 216, 220, 0.32),
    inset 0 10px 14px -12px rgba(0, 0, 0, 0.24);
}

.contact-action-button__content::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 48%;
  bottom: 30%;
  background: linear-gradient(to bottom, transparent, rgba(149, 216, 220, 0.34));
  filter: blur(5px);
  opacity: 0.55;
}

.contact-action-button__label,
.contact-action-button__icon {
  position: relative;
  z-index: 1;
}

.contact-action-button__label {
  display: inline-flex;
  align-items: center;
  gap: 0.02em;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  transform: translateX(0);
  transition: transform 0.35s ease;
}

.contact-action-button__label span {
  display: inline-block;
  color: var(--white);
  text-shadow: -1px 1px 2px rgba(43, 52, 66, 0.55);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.contact-action-button:hover .contact-action-button__label span,
.contact-action-button:focus-visible .contact-action-button__label span {
  transform: translateY(-1px);
}

.contact-action-button__icon {
  position: absolute;
  top: 50%;
  right: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-action-button__icon span,
.contact-action-button__icon span::before,
.contact-action-button__icon span::after {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
}

.contact-action-button__icon span {
  position: relative;
  width: 22px;
  background: linear-gradient(to bottom, var(--white), rgba(149, 216, 220, 0.9));
  box-shadow: -2px 2px 5px rgba(1, 92, 113, 0.42);
  transition: transform 0.45s ease;
}

.contact-action-button__icon span::before,
.contact-action-button__icon span::after {
  content: "";
  position: absolute;
  right: 0;
  width: 14px;
  transform-origin: center right;
  transition: transform 0.45s ease;
}

.contact-action-button__icon span::before {
  top: 1px;
  transform: rotate(44deg);
}

.contact-action-button__icon span::after {
  bottom: 1px;
  transform: rotate(316deg);
}

.contact-action-button:hover,
.contact-action-button:focus-visible {
  transform: translateY(calc(var(--contact-button-offset-y) - 1px)) rotate(-7deg) skewX(4deg);
}

.contact-action-button:hover .contact-action-button__wrap,
.contact-action-button:focus-visible .contact-action-button__wrap {
  transform: translate(8px, -8px);
}

.contact-action-button:hover .contact-action-button__outline,
.contact-action-button:focus-visible .contact-action-button__outline {
  opacity: 1;
}

.contact-action-button:hover .contact-action-button__outline::before,
.contact-action-button:focus-visible .contact-action-button__outline::before {
  animation-play-state: running;
}

.contact-action-button:hover .contact-action-button__bg::before,
.contact-action-button:focus-visible .contact-action-button__bg::before {
  transform: scale(1.02);
  box-shadow:
    -7px 6px 0 0 rgba(149, 216, 220, 0.2),
    -14px 12px 0 0 rgba(149, 216, 220, 0.14),
    -21px 18px 4px 0 rgba(43, 52, 66, 0.22),
    -28px 24px 8px 0 rgba(43, 52, 66, 0.16),
    -35px 30px 12px 0 rgba(43, 52, 66, 0.1);
}

.contact-action-button:hover .contact-action-button__label,
.contact-action-button:focus-visible .contact-action-button__label {
  transform: translateX(3px);
}

.contact-action-button:hover .contact-action-button__icon,
.contact-action-button:focus-visible .contact-action-button__icon {
  transform: translateY(-50%) translateX(5px);
}

.contact-action-button:hover .contact-action-button__icon span,
.contact-action-button:focus-visible .contact-action-button__icon span {
  transform: translateX(2px);
}

.contact-action-button:hover .contact-action-button__icon span::before,
.contact-action-button:focus-visible .contact-action-button__icon span::before {
  transform: rotate(30deg);
}

.contact-action-button:hover .contact-action-button__icon span::after,
.contact-action-button:focus-visible .contact-action-button__icon span::after {
  transform: rotate(332deg);
}

.contact-action-button:active {
  transform: translateY(calc(var(--contact-button-offset-y) + 1px)) rotate(-7deg) skewX(4deg) translateX(1px);
}

.contact-action-button:active .contact-action-button__wrap {
  transform: translate(4px, -4px);
}

@keyframes contact-button-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact-page-main {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 14%, rgba(149, 216, 220, 0.18), transparent 30%),
    linear-gradient(145deg, #2B3442 0%, #015C71 54%, #02818E 100%);
}

.contact-hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.78fr);
  gap: clamp(30px, 4.8vw, 64px);
  align-items: center;
  padding: clamp(124px, 12vw, 164px) max(clamp(34px, 5.5vw, 92px), calc((100% - var(--content-max)) / 2)) clamp(58px, 7vw, 88px);
  overflow: hidden;
}

.contact-hero .hero-thpace-canvas {
  z-index: 0;
}

.contact-intro,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-hero .topography {
  z-index: -1;
  opacity: 0.2;
}

.contact-hero .contact-intro {
  max-width: 680px;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
}

.contact-hero .contact-intro h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.7rem, 8.6vw, 8rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-hero .contact-intro p:not(.meta-line) {
  max-width: 590px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.98rem, 1.22vw, 1.08rem);
  line-height: 1.66;
}

.contact-form {
  position: relative;
  align-self: center;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(43, 52, 66, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-related-links {
  margin-top: 26px;
}

.contact-related-links--footer {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-related-links__label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-related-links .seo-inline-links {
  gap: 8px 14px;
  margin-top: 0;
}

.contact-related-links--footer .seo-inline-links {
  justify-content: center;
}

.contact-related-links .text-link {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
}

.contact-related-links .text-link::after {
  opacity: 0.45;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.checkbox-field {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(149, 216, 220, 0.28);
  border-radius: 6px;
  background: rgba(149, 216, 220, 0.08);
}

.checkbox-field input {
  width: 20px;
  min-height: 20px;
  accent-color: var(--acid);
}

.contact-form label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.checkbox-field span {
  color: rgba(255, 255, 255, 0.86);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.22);
  font: 600 0.95rem/1.4 var(--body);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(149, 216, 220, 0.78);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(149, 216, 220, 0.18);
}

.contact-form .button {
  width: fit-content;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.drone-disclosure {
  display: grid;
  gap: 12px;
}

.drone-fields {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
}

.drone-fields[hidden] {
  display: none;
}

.file-upload-control {
  margin-top: 12px;
}

.file-upload-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px 28px;
}

.folder-upload {
  --folder-lift: 0px;
  position: relative;
  display: grid;
  justify-items: start;
  gap: 16px;
  width: 140px;
  padding: 8px 0 4px;
  cursor: pointer;
  user-select: none;
  transform: translateY(var(--folder-lift));
  transition: transform 260ms ease;
}

.folder-upload__stack {
  position: relative;
  display: block;
  width: 120px;
  height: 80px;
  transform-origin: center bottom;
  perspective: 1500px;
}

.folder-upload__shell,
.folder-upload__sheet,
.folder-upload__face {
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 20px;
  transform-origin: center bottom;
  transition: transform 300ms ease, box-shadow 300ms ease, filter 300ms ease;
}

.folder-upload__shell {
  top: 3px;
  height: 70px;
  border-top-left-radius: 0;
  background: linear-gradient(180deg, rgba(1, 92, 113, 0.95) 0%, rgba(2, 129, 142, 0.92) 100%);
}

.folder-upload__shell::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  width: 40px;
  height: 8px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background: inherit;
}

.folder-upload__shell::before {
  content: "";
  position: absolute;
  top: -7.5px;
  left: 37.75px;
  width: 8px;
  height: 8px;
  background: rgba(1, 92, 113, 0.95);
  clip-path: polygon(0 35%, 0 100%, 50% 100%);
}

.folder-upload__sheet {
  inset: 5px 4px auto;
  width: auto;
  height: 69px;
}

.folder-upload__sheet--back {
  background: rgba(178, 225, 230, 0.54);
}

.folder-upload__sheet--mid {
  background: rgba(222, 243, 245, 0.82);
}

.folder-upload__sheet--front {
  background: rgba(255, 255, 255, 0.88);
}

.folder-upload__face {
  bottom: 0;
  height: 62px;
  border-top-right-radius: 0;
  background: linear-gradient(180deg, rgba(149, 216, 220, 1) 0%, rgba(2, 129, 142, 0.96) 100%);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.folder-upload__face::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: calc(100% - 1px);
  width: 73px;
  height: 8px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background: rgba(149, 216, 220, 1);
}

.folder-upload__face::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 71px;
  width: 6px;
  height: 6px;
  background: rgba(149, 216, 220, 1);
  clip-path: polygon(100% 14%, 50% 100%, 100% 100%);
}

.folder-upload__copy {
  display: grid;
  gap: 4px;
  justify-items: start;
  text-align: left;
}

.folder-upload__title {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.folder-upload__status {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  line-height: 1.5;
}

.field-note.file-upload-note {
  margin: 0;
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
}

.folder-upload:hover,
.folder-upload:focus-visible,
.file-upload-input:focus-visible + .folder-upload {
  --folder-lift: -2px;
}

.folder-upload:hover .folder-upload__shell,
.folder-upload:focus-visible .folder-upload__shell,
.file-upload-input:focus-visible + .folder-upload .folder-upload__shell {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.folder-upload:hover .folder-upload__sheet--back,
.folder-upload:focus-visible .folder-upload__sheet--back,
.file-upload-input:focus-visible + .folder-upload .folder-upload__sheet--back {
  transform: rotateX(-20deg);
}

.folder-upload:hover .folder-upload__sheet--mid,
.folder-upload:focus-visible .folder-upload__sheet--mid,
.file-upload-input:focus-visible + .folder-upload .folder-upload__sheet--mid {
  transform: rotateX(-30deg);
}

.folder-upload:hover .folder-upload__sheet--front,
.folder-upload:focus-visible .folder-upload__sheet--front,
.file-upload-input:focus-visible + .folder-upload .folder-upload__sheet--front {
  transform: rotateX(-38deg);
}

.folder-upload:hover .folder-upload__face,
.folder-upload:focus-visible .folder-upload__face,
.file-upload-input:focus-visible + .folder-upload .folder-upload__face {
  transform: rotateX(-46deg) translateY(1px);
  box-shadow: inset 0 20px 40px rgba(149, 216, 220, 0.8), inset 0 -20px 40px rgba(1, 92, 113, 0.56), 0 18px 36px rgba(0, 0, 0, 0.2);
}

.file-upload-input:disabled + .folder-upload {
  cursor: not-allowed;
  opacity: 0.5;
}

.file-upload-input:disabled + .folder-upload .folder-upload__stack {
  filter: grayscale(0.12);
}

.file-upload-input:not(:disabled):focus-visible + .folder-upload {
  outline: 2px solid rgba(149, 216, 220, 0.72);
  outline-offset: 10px;
  border-radius: 24px;
}

.form-note {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.55;
}

.field-note {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  line-height: 1.5;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.placeholder-page {
  min-height: 100vh;
  color: var(--white);
  background: var(--ink);
}

.placeholder-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(130px, 14vw, 180px) max(clamp(22px, 7vw, 120px), calc((100% - var(--content-max)) / 2)) clamp(58px, 8vw, 96px);
  background:
    radial-gradient(circle at 74% 28%, rgba(149, 216, 220, 0.18), transparent 28%),
    linear-gradient(145deg, #2B3442 0%, #015C71 54%, #02818E 100%);
  overflow: hidden;
}

.placeholder-panel {
  position: relative;
  max-width: 920px;
  text-align: center;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
}

.placeholder-panel h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.93;
  text-transform: uppercase;
}

.placeholder-panel p:not(.meta-line) {
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.72;
}

.placeholder-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

body.services-page,
body.support-page,
body.map-page {
  background: var(--white);
}

.seo-page-main {
  min-height: 100vh;
  color: var(--ink);
  background: var(--white);
}

.seo-hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: grid;
  align-items: center;
  padding: clamp(132px, 14vw, 180px) max(clamp(22px, 7vw, 120px), calc((100% - var(--content-max)) / 2)) clamp(58px, 8vw, 96px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(149, 216, 220, 0.18), transparent 28%),
    linear-gradient(145deg, #2B3442 0%, #015C71 54%, #02818E 100%);
}

.seo-hero .hero-thpace-canvas {
  z-index: 0;
}

body.services-page .seo-hero {
  min-height: 100vh;
}

.seo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43, 52, 66, 0.82), rgba(43, 52, 66, 0.4) 48%, rgba(1, 92, 113, 0.22)),
    linear-gradient(0deg, rgba(43, 52, 66, 0.18), transparent 44%);
  pointer-events: none;
}

.seo-hero .topography {
  z-index: 0;
  opacity: 0.18;
}

.seo-hero-copy,
.seo-hero-media {
  position: relative;
  z-index: 1;
}

.seo-hero-copy {
  max-width: 940px;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.48);
}

.seo-hero-copy h1,
.seo-page-section h2,
.seo-page-section h3,
.seo-cta-band h2 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
}

.seo-hero-copy h1 {
  font-size: clamp(3.8rem, 9vw, 8.8rem);
  line-height: 0.93;
}

.seo-hero-copy p:not(.meta-line) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.72;
}

.seo-hero-copy .hero-actions {
  margin-top: 28px;
}

.seo-inline-links,
.seo-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
}

.seo-inline-links a,
.seo-link-list a {
  color: inherit;
}

.seo-page-section {
  position: relative;
  z-index: 1;
  padding: clamp(76px, 9vw, 122px) max(clamp(22px, 7vw, 120px), calc((100% - var(--content-max)) / 2));
}

.seo-page-section.light {
  color: var(--ink);
  background: var(--white);
}

.seo-page-section.grid {
  color: var(--ink);
  background:
    linear-gradient(rgba(43, 52, 66, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 52, 66, 0.05) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px;
}

.seo-page-section.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 24%, rgba(149, 216, 220, 0.14), transparent 26%),
    linear-gradient(145deg, #2B3442 0%, #015C71 100%);
}

.seo-page-section h2,
.seo-cta-band h2 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.96;
}

.seo-page-section h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.98;
}

.seo-page-section p,
.seo-page-section li,
.seo-cta-band p {
  line-height: 1.72;
}

.seo-page-section.light p,
.seo-page-section.light li,
.seo-page-section.grid p,
.seo-page-section.grid li {
  color: rgba(43, 52, 66, 0.74);
}

.seo-page-section.dark p,
.seo-page-section.dark li,
.seo-page-section.dark .text-link {
  color: rgba(255, 255, 255, 0.76);
}

.seo-section-head,
.seo-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: end;
}

.seo-section-head p:last-child,
.seo-split-copy p:last-child {
  margin-bottom: 0;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-card-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-card {
  min-height: 100%;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(43, 52, 66, 0.14);
  border-radius: 8px;
  background: rgba(43, 52, 66, 0.055);
  box-shadow: 0 22px 64px rgba(31, 53, 73, 0.14);
}

.seo-page-section.dark .seo-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.24);
}

.seo-card .seo-card-number,
.seo-card .seo-card-kicker {
  display: block;
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.seo-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.seo-card li + li,
.seo-copy-stack p + p {
  margin-top: 10px;
}

.seo-copy-stack {
  display: grid;
  gap: 12px;
}

.seo-note {
  margin-top: 14px;
  color: rgba(43, 52, 66, 0.58);
  font-size: 0.86rem;
}

.seo-page-section.dark .seo-note {
  color: rgba(255, 255, 255, 0.58);
}

.seo-cta-band {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(76px, 9vw, 122px) max(clamp(22px, 7vw, 120px), calc((100% - var(--content-max)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(149, 216, 220, 0.18), transparent 30%),
    #2B3442;
}

.seo-cta-band p {
  max-width: 760px;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.74);
}

.services-overview-list {
  display: grid;
  gap: 14px;
}

.map-page-intro {
  padding-bottom: 0;
}

.map-page-intro .seo-inline-links {
  margin-top: 24px;
}

.drone-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(132px, 14vw, 180px) max(clamp(22px, 7vw, 120px), calc((100% - var(--content-max)) / 2)) clamp(58px, 8vw, 96px);
  overflow: hidden;
  background: #061316;
}

.drone-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43, 52, 66, 0.92), rgba(43, 52, 66, 0.42) 46%, rgba(1, 92, 113, 0.28)),
    linear-gradient(0deg, rgba(43, 52, 66, 0.96), transparent 44%);
  pointer-events: none;
}

.drone-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(120px, 18vw, 220px);
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 100%);
  pointer-events: none;
}

.drone-hero .topography {
  display: none;
}

.drone-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: saturate(0.9) contrast(1.08);
}

.drone-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.64);
}

.drone-hero-copy h1,
.drone-intro h2,
.drone-service-grid h2,
.drone-equipment h2,
.drone-rules h2,
.drone-cta h2 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
}

.drone-hero-copy h1 {
  font-size: clamp(4rem, 10vw, 9.6rem);
  line-height: 0.93;
}

.drone-hero-copy p:not(.meta-line) {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.72;
}

.drone-intro,
.drone-service-grid,
.drone-reference-map,
.drone-equipment,
.drone-rules,
.drone-cta {
  position: relative;
  z-index: 1;
  padding:
    clamp(76px, 9vw, 122px)
    max(clamp(22px, 7vw, 120px), calc((100% - var(--content-max)) / 2));
}

.drone-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  color: var(--ink);
  background: var(--white);
}

.drone-intro h2,
.drone-service-grid h2,
.drone-equipment h2,
.drone-rules h2,
.drone-cta h2 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.96;
}

.drone-intro p:last-child {
  margin: 0;
  color: rgba(43, 52, 66, 0.72);
  line-height: 1.78;
}

.drone-service-grid {
  color: var(--ink);
  background:
    linear-gradient(rgba(43, 52, 66, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 52, 66, 0.05) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px;
}

.drone-service-grid .text-link {
  color: var(--ink);
}

.drone-reference-map {
  color: var(--ink);
  background:
    linear-gradient(rgba(43, 52, 66, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 52, 66, 0.05) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px;
}

.drone-reference-map__head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.78fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: end;
  margin-bottom: 28px;
}

.drone-reference-map__head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.drone-reference-map__head p:last-child {
  margin: 0;
  max-width: 60ch;
  color: rgba(43, 52, 66, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.72;
}

.drone-reference-map__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 380px);
  gap: 24px;
  align-items: stretch;
}

.drone-reference-map__shell,
.drone-reference-map__panel {
  border: 1px solid rgba(1, 92, 113, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(43, 52, 66, 0.12);
  backdrop-filter: blur(14px);
}

.drone-reference-map__shell {
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.drone-reference-map__canvas {
  flex: 1 1 auto;
  min-height: 620px;
  border: 1px solid rgba(1, 92, 113, 0.16);
}

.drone-reference-map__footnote,
.drone-reference-map__disclaimer,
.drone-reference-map__attribution,
.drone-reference-map__status,
.drone-reference-map__card p,
.drone-reference-map__card li {
  color: rgba(43, 52, 66, 0.76);
  line-height: 1.72;
}

.drone-reference-map__footnote {
  margin: 14px 4px 0;
  font-size: 0.82rem;
}

.drone-reference-map__panel {
  padding: 20px;
}

.drone-reference-map__eyebrow {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.drone-reference-map__panel h3,
.drone-reference-map__card h4 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
}

.drone-reference-map__panel h3 {
  font-size: 1.55rem;
  line-height: 1;
}

.drone-reference-map__status,
.drone-reference-map__card {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(1, 92, 113, 0.12);
  background: rgba(149, 216, 220, 0.09);
}

.drone-reference-map__card h4 {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--forest);
}

.drone-reference-map__card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.94rem;
}

.drone-reference-map__links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.drone-reference-map__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(1, 92, 113, 0.22);
  color: var(--forest);
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.drone-reference-map__links a:hover,
.drone-reference-map__links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(2, 129, 142, 0.58);
  background: rgba(149, 216, 220, 0.24);
}

.drone-reference-map__cta {
  width: 100%;
  margin-top: 20px;
}

.drone-reference-map__disclaimer,
.drone-reference-map__attribution {
  margin: 16px 0 0;
  font-size: 0.87rem;
}

.drone-reference-map__disclaimer {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(1, 92, 113, 0.18);
  background: rgba(149, 216, 220, 0.14);
  color: rgba(43, 52, 66, 0.9);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.74;
}

.drone-reference-map__attribution {
  color: rgba(43, 52, 66, 0.58);
}

.leaflet-container {
  background: #dcecef;
}

.leaflet-control-layers {
  border: 1px solid rgba(1, 92, 113, 0.16);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.leaflet-control-layers-expanded {
  padding: 12px;
}

.leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(43, 52, 66, 0.72);
}

.leaflet-control-attribution a {
  color: var(--forest);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #ffffff;
  color: var(--ink);
}

.drone-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.drone-cards article,
.rules-grid article {
  min-height: 100%;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.24);
}

.drone-cards article {
  border-color: rgba(43, 52, 66, 0.14);
  background: rgba(43, 52, 66, 0.055);
  box-shadow: 0 22px 64px rgba(31, 53, 73, 0.14);
}

.drone-cards span {
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.drone-cards h3,
.rules-grid h3 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.drone-cards p,
.rules-grid li,
.drone-rules-head p,
.drone-cta p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.drone-cards p {
  color: rgba(43, 52, 66, 0.72);
}

.drone-equipment {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  color: var(--ink);
  background:
    linear-gradient(rgba(43, 52, 66, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 52, 66, 0.05) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px;
}

.drone-equipment-copy p {
  max-width: 640px;
  color: rgba(43, 52, 66, 0.72);
  line-height: 1.72;
}

.drone-spec-list {
  display: grid;
  gap: 10px;
}

.drone-spec-list div {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(43, 52, 66, 0.16);
}

.drone-spec-list strong {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.drone-spec-list span {
  color: rgba(43, 52, 66, 0.68);
  line-height: 1.55;
}

.drone-rules {
  background:
    radial-gradient(circle at 18% 24%, rgba(149, 216, 220, 0.14), transparent 26%),
    linear-gradient(145deg, #2B3442 0%, #015C71 100%);
}

.drone-rules-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 26px;
}

.drone-rules-head .section-kicker {
  grid-column: 1 / -1;
}

.drone-rules-head p:last-child {
  margin: 0;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.rules-grid ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.rules-grid li + li {
  margin-top: 10px;
}

.drone-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(149, 216, 220, 0.18), transparent 30%),
    #2B3442;
}

.drone-cta p {
  max-width: 680px;
  margin: 18px auto 28px;
}

.about-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: clamp(132px, 14vw, 180px) max(clamp(22px, 7vw, 120px), calc((100% - var(--content-max)) / 2)) clamp(58px, 8vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(149, 216, 220, 0.2), transparent 28%),
    linear-gradient(145deg, #2B3442 0%, #015C71 54%, #02818E 100%);
}

.about-hero .hero-thpace-canvas {
  z-index: 0;
}

.about-hero .topography {
  opacity: 0.2;
}

.about-hero-copy,
.about-frame {
  position: relative;
  z-index: 1;
}

.about-hero-copy {
  max-width: 830px;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.48);
}

.about-hero-copy h1,
.about-story h2,
.about-cred h2,
.about-gear h2,
.about-cta h2 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
}

.about-hero-copy h1 {
  font-size: clamp(4rem, 10vw, 9.4rem);
  line-height: 0.93;
}

.about-hero-copy p:not(.meta-line) {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.72;
}

.about-frame {
  min-height: clamp(420px, 50vw, 640px);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg);
}

.about-story,
.about-cred,
.about-gear,
.about-cta {
  position: relative;
  z-index: 1;
  padding: clamp(76px, 9vw, 122px) max(clamp(22px, 7vw, 120px), calc((100% - var(--content-max)) / 2));
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  color: var(--ink);
  background: var(--white);
}

.about-story h2,
.about-cred h2,
.about-gear h2,
.about-cta h2 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.96;
}

.about-story-copy p {
  margin: 0;
  color: rgba(43, 52, 66, 0.72);
  line-height: 1.78;
}

.about-story-copy p + p {
  margin-top: 16px;
}

.about-cred {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 0.9fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
  background:
    radial-gradient(circle at 76% 34%, rgba(149, 216, 220, 0.16), transparent 28%),
    #2B3442;
}

.about-cred-media {
  min-height: clamp(360px, 44vw, 560px);
  border-radius: 8px;
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.34);
  transform: rotate(-2deg);
}

.about-cred-copy p:not(.section-kicker) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.about-gear {
  color: var(--ink);
  background:
    linear-gradient(rgba(43, 52, 66, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 52, 66, 0.05) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px;
}

.about-gear .text-link {
  color: var(--ink);
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gear-grid article {
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(43, 52, 66, 0.14);
  border-radius: 8px;
  background: rgba(43, 52, 66, 0.055);
  box-shadow: 0 22px 64px rgba(31, 53, 73, 0.14);
}

.gear-grid article > p {
  margin: 0 0 16px;
  color: var(--leaf);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gear-grid h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.gear-grid ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.gear-grid li {
  color: rgba(43, 52, 66, 0.7);
  line-height: 1.6;
}

.gear-grid li + li {
  margin-top: 8px;
}

.about-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(149, 216, 220, 0.18), transparent 30%),
    #2B3442;
}

.about-cta p {
  max-width: 680px;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.portfolio-page-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(132px, 14vw, 180px) max(clamp(22px, 7vw, 120px), calc((100% - var(--content-max)) / 2)) clamp(58px, 8vw, 96px);
  overflow: hidden;
  background: #061316;
}

.portfolio-page-hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: saturate(0.9) contrast(1.08);
}

.portfolio-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43, 52, 66, 0.94), rgba(43, 52, 66, 0.5) 46%, rgba(1, 92, 113, 0.22)),
    linear-gradient(0deg, rgba(43, 52, 66, 0.98), transparent 44%);
  pointer-events: none;
}

.portfolio-page-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(120px, 18vw, 220px);
  z-index: 1;
  background: linear-gradient(180deg, rgba(43, 52, 66, 0), #2B3442 100%);
  pointer-events: none;
}

.portfolio-page-hero .topography {
  display: none;
}

.portfolio-page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.64);
}

.portfolio-page-hero-copy h1,
.portfolio-project-copy h2,
.portfolio-more h2,
.portfolio-cta h2 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
}

.portfolio-page-hero-copy h1 {
  font-size: clamp(4rem, 10vw, 9.6rem);
  line-height: 0.93;
}

.portfolio-page-hero-copy p:not(.meta-line) {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.72;
}

.portfolio-project {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(76px, 9vw, 122px) max(clamp(22px, 7vw, 120px), calc((100% - var(--content-max)) / 2));
  overflow: hidden;
  background: #2B3442;
}

.portfolio-project.is-light {
  color: var(--ink);
  background: var(--white);
}

.portfolio-project-bg {
  position: absolute;
  inset: -4%;
  z-index: -2;
  width: 108%;
  height: 108%;
  object-fit: cover;
  opacity: 0.3;
  filter: blur(16px) saturate(0.9) contrast(1.05);
}

.portfolio-project::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 22%, rgba(149, 216, 220, 0.16), transparent 26%),
    rgba(43, 52, 66, 0.82);
}

.portfolio-project.is-light::after {
  background:
    linear-gradient(rgba(43, 52, 66, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 52, 66, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.78);
  background-size: 42px 42px;
}

.portfolio-project-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.portfolio-project-inner.reverse {
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
}

.portfolio-media-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: rotate(-1.5deg);
}

.portfolio-project-inner.reverse .portfolio-media-card {
  transform: rotate(1.5deg);
}

.portfolio-media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-media-card:hover img,
.portfolio-media-card:focus-visible img {
  transform: scale(1.04);
}

.play-mark {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: var(--ink);
  background: var(--acid);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-project-copy h2 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.96;
}

.portfolio-project-copy > p:not(.section-kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.portfolio-project.is-light .portfolio-project-copy > p:not(.section-kicker) {
  color: rgba(43, 52, 66, 0.72);
}

.portfolio-project-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
}

.portfolio-project-copy dl div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.portfolio-project.is-light .portfolio-project-copy dl div {
  border-color: rgba(43, 52, 66, 0.14);
  background: rgba(43, 52, 66, 0.055);
}

.portfolio-project-copy dt {
  color: var(--acid);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-project.is-light .portfolio-project-copy dt {
  color: var(--leaf);
}

.portfolio-project-copy dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.portfolio-project.is-light .portfolio-project-copy dd {
  color: rgba(43, 52, 66, 0.72);
}

.portfolio-still-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.portfolio-still-grid div {
  min-height: clamp(220px, 32vw, 460px);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(31, 53, 73, 0.18);
}

.portfolio-more,
.portfolio-cta {
  padding: clamp(76px, 9vw, 122px) clamp(22px, 7vw, 120px);
}

.portfolio-more {
  background: linear-gradient(145deg, #2B3442 0%, #015C71 100%);
}

.portfolio-more h2,
.portfolio-cta h2 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.96;
}

.portfolio-more-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-more-grid a {
  display: grid;
  gap: 12px;
}

.portfolio-more-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.24);
}

.portfolio-more-grid span {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(149, 216, 220, 0.18), transparent 30%),
    #2B3442;
}

.portfolio-cta p {
  max-width: 680px;
  margin: 18px auto 28px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

@media (max-width: 900px) {
  .social-proof h2 {
    font-size: clamp(3.2rem, 8vw, 7rem);
    white-space: normal;
  }

  .site-header {
    padding: 18px clamp(16px, 5vw, 24px);
    pointer-events: auto;
  }

  .site-header__inner {
    width: 100%;
    align-items: center;
    gap: 12px;
  }

  body.has-scrolled:not(.nav-open) .brand,
  body.has-scrolled:not(.nav-open) .site-header nav {
    opacity: 1;
    transform: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .site-header nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 10px;
    justify-items: stretch;
    align-content: start;
    padding: 16px;
    border: 1px solid rgba(149, 216, 220, 0.24);
    border-radius: 22px;
    background: rgba(43, 52, 66, 0.96);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    font-size: clamp(1.24rem, 4.9vw, 1.75rem);
    text-align: left;
    backdrop-filter: blur(16px);
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  body.mobile-nav-open .site-header nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-header nav a {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .language-toggle {
    --switch-width: 3.95rem;
    --switch-height: 2.06rem;
    justify-content: flex-start;
    gap: 0.45rem;
    margin: 2px 0 0;
  }

  .language-toggle__label {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .hero {
    align-items: start;
    min-height: 860px;
  }

  .hero-copy {
    top: 132px;
    bottom: auto;
    left: 22px;
    right: auto;
    width: min(100%, 320px);
    transform: none;
  }

  .carousel-stage {
    width: 100vw;
    height: 100vh;
    margin-top: 0;
    transform: none;
  }

  .hero-title-stack {
    left: auto;
    right: 22px;
    bottom: 120px;
    width: min(48vw, 220px);
    justify-items: end;
    text-align: right;
  }

  .hero-title-stack h2 {
    font-size: clamp(2.2rem, 10vw, 4rem);
    line-height: 0.9;
  }

  .hero-title-stack p {
    max-width: 210px;
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .thumb-row {
    left: 18px;
    right: 18px;
    bottom: 28px;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 2px;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .thumb-row::-webkit-scrollbar {
    display: none;
  }

  .carousel-arrow {
    display: none;
  }

  .spotlight,
  .contact-hero,
  .portfolio-project-inner,
  .portfolio-project-inner.reverse,
  .about-hero,
  .about-story,
  .about-cred,
  .drone-intro,
  .drone-equipment,
  .drone-rules-head,
  .work-grid,
  .process-list,
  .social-proof-layout,
  .japan-map-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    align-items: start;
    padding-top: 132px;
  }

  .feature-band,
  .section-heading,
  .social-proof-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats-grid,
  .top-video-list,
  .portfolio-more-grid,
  .drone-cards,
  .rules-grid,
  .gear-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .drone-reference-map__head,
  .drone-reference-map__layout {
    grid-template-columns: 1fr;
  }

  .top-video-card {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .japan-map-stage {
    min-height: 520px;
  }

  .meta-line {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }

  .seo-hero-copy,
  .drone-hero-copy,
  .portfolio-page-hero-copy,
  .about-hero-copy,
  .contact-hero .contact-intro {
    max-width: min(100%, 540px);
  }

  .seo-hero-copy .hero-actions,
  .about-hero .hero-actions,
  .portfolio-page-hero .hero-actions,
  .drone-hero .hero-actions {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px;
  }

  .seo-hero-copy .text-link,
  .drone-hero .text-link,
  .about-hero .text-link,
  .portfolio-page-hero .text-link {
    font-size: 0.72rem;
  }
}

@media (max-width: 620px) {
  .brand {
    width: clamp(112px, 27vw, 146px);
  }

  .hero {
    min-height: 780px;
    padding-top: 92px;
  }

  .hero h1 {
    font-size: clamp(2.95rem, 15vw, 4.6rem);
    line-height: 0.94;
  }

  .hero-summary {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .hero-copy {
    top: 126px;
    left: 18px;
    width: min(100%, 290px);
  }

  .contact-hero {
    padding: 104px 18px 46px;
  }

  .portfolio-page-hero {
    min-height: 760px;
    padding: 104px 18px 46px;
  }

  .drone-hero {
    min-height: 760px;
    padding: 104px 18px 46px;
  }

  .drone-reference-map__canvas {
    min-height: 380px;
  }

  .about-hero {
    min-height: 760px;
    padding: 104px 18px 46px;
  }

  .seo-hero {
    min-height: 760px;
    padding: 104px 18px 46px;
  }

  .drone-hero-copy h1 {
    font-size: clamp(2.95rem, 15vw, 4.7rem);
  }

  .portfolio-page-hero-copy h1 {
    font-size: clamp(2.95rem, 15vw, 4.7rem);
  }

  .about-hero-copy h1 {
    font-size: clamp(2.95rem, 15vw, 4.7rem);
  }

  .seo-hero-copy h1 {
    font-size: clamp(2.95rem, 15vw, 4.7rem);
  }

  .hero-title-stack {
    right: 18px;
    bottom: 108px;
    width: min(46vw, 184px);
  }

  .hero-title-stack h2 {
    font-size: clamp(1.95rem, 9vw, 3rem);
  }

  .hero-title-stack p {
    max-width: 176px;
    font-size: 0.82rem;
    line-height: 1.34;
  }

  .portfolio-project,
  .portfolio-more,
  .portfolio-cta,
  .drone-intro,
  .drone-service-grid,
  .drone-equipment,
  .drone-rules,
  .drone-cta,
  .about-story,
  .about-cred,
  .about-gear,
  .about-cta {
    padding-inline: 18px;
  }

  .contact-intro h1 {
    max-width: 9.5ch;
    font-size: clamp(2.9rem, 15vw, 4.7rem);
    line-height: 0.95;
  }

  .contact-hero .contact-intro p:not(.meta-line),
  .seo-hero-copy p:not(.meta-line),
  .drone-hero-copy p:not(.meta-line),
  .portfolio-page-hero-copy p:not(.meta-line),
  .about-hero-copy p:not(.meta-line) {
    font-size: 0.98rem;
    line-height: 1.56;
  }

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

  .contact-form {
    width: 100%;
    max-width: 100%;
    gap: 16px;
    padding: 18px;
  }

  .contact-form .button {
    width: 100%;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
  }

  .button {
    min-height: 50px;
    padding-inline: 30px;
  }

  .carousel-stage {
    margin-top: 0;
    height: 100vh;
  }

  .thumb {
    flex: 0 0 auto;
    width: 76px;
    height: 43px;
  }

  .spotlight-media {
    min-height: 0;
  }

  .japan-map-section {
    padding-inline: 16px;
  }

  .social-proof {
    padding-inline: 16px;
  }

  .pixel-reveal-section {
    height: 430vh;
  }

  .pixel-reveal-copy {
    top: 96px;
    left: 16px;
    right: 16px;
  }

  .pixel-grid-shell {
    inset: 0;
  }

  .pixel-grid {
    gap: 2px;
  }

  .stats-grid,
  .top-video-list,
  .portfolio-more-grid,
  .drone-cards,
  .rules-grid,
  .gear-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-project {
    min-height: auto;
  }

  .portfolio-project-copy dl {
    grid-template-columns: 1fr;
  }

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

  .portfolio-still-grid div {
    min-height: 220px;
  }

  .drone-spec-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .file-upload-row {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
  }

  .top-video-card {
    grid-template-columns: 1fr;
  }

  .japan-map-stage {
    min-height: 430px;
  }

  .japan-map-popup-head,
  .japan-map-popup-body,
  .japan-map-nav {
    padding: 18px;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-inline: 14px;
  }

  .site-header nav {
    left: 14px;
    right: 14px;
    padding: 14px;
  }

  .mobile-nav-toggle {
    min-height: 46px;
    padding-inline: 14px;
  }

  .hero-copy,
  .seo-hero,
  .portfolio-page-hero,
  .drone-hero,
  .about-hero,
  .contact-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-copy {
    left: 14px;
    width: min(100%, 270px);
  }

  .hero-title-stack {
    right: 14px;
    width: min(44vw, 160px);
  }

  .hero-title-stack p {
    max-width: 154px;
    font-size: 0.76rem;
  }

  .thumb-row {
    left: 14px;
    right: 14px;
  }

  .portfolio-project,
  .portfolio-more,
  .portfolio-cta,
  .drone-intro,
  .drone-service-grid,
  .drone-equipment,
  .drone-rules,
  .drone-cta,
  .about-story,
  .about-cred,
  .about-gear,
  .about-cta,
  .japan-map-section,
  .social-proof {
    padding-inline: 14px;
  }
}

.portfolio-directory,
.portfolio-cta {
  width: min(1800px, calc(100% - 48px));
  margin: 0 auto;
}

.portfolio-directory {
  position: relative;
  z-index: 3;
  padding: clamp(28px, 3.6vw, 40px) clamp(18px, 2.4vw, 28px) clamp(48px, 5vw, 64px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 244, 239, 0.96)),
    radial-gradient(circle at top right, rgba(149, 216, 220, 0.22), transparent 34%);
  border-radius: 32px;
  box-shadow: 0 34px 90px rgba(7, 14, 23, 0.28);
  transform: none;
}

.portfolio-directory::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(43, 52, 66, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.portfolio-directory__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 10px;
}

.portfolio-directory__header h2 {
  margin-top: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.94;
}

.portfolio-directory__header .section-kicker {
  margin-bottom: 2px;
}

.portfolio-directory__sort {
  display: grid;
  gap: 8px;
  min-width: min(100%, 220px);
}

.portfolio-directory__sort span,
.portfolio-card__meta,
.portfolio-modal__meta,
.portfolio-empty h3 {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-directory__sort span {
  color: rgba(43, 52, 66, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

.portfolio-directory__sort select {
  width: 100%;
  min-height: 52px;
  padding: 0 48px 0 16px;
  border: 1px solid rgba(43, 52, 66, 0.12);
  border-radius: 18px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(149, 216, 220, 0.16));
  font: 600 0.95rem/1 var(--body);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(43, 52, 66, 0.84) 50%),
    linear-gradient(135deg, rgba(43, 52, 66, 0.84) 50%, transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(149, 216, 220, 0.16));
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

.portfolio-directory__sort select:focus-visible,
.portfolio-filter:focus-visible,
.portfolio-card__button:focus-visible,
.portfolio-modal__close:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.portfolio-filter {
  border: 1px solid rgba(43, 52, 66, 0.12);
  border-radius: 999px;
  padding: 10px 16px;
  color: #243043;
  background: rgba(18, 26, 39, 0.04);
  font: 700 0.82rem/1 var(--body);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.portfolio-filter--all-projects {
  color: #243043;
  background: rgba(36, 48, 67, 0.08);
  border-color: rgba(36, 48, 67, 0.12);
}

.portfolio-filter:hover,
.portfolio-filter:focus-visible {
  transform: translateY(-1px);
}

.portfolio-filter--all-projects.is-active,
.portfolio-filter--all-projects:hover,
.portfolio-filter--all-projects:focus-visible {
  color: #f6f4ef;
  background: #243043;
  border-color: #243043;
  box-shadow: 0 14px 32px rgba(36, 48, 67, 0.22);
}

.portfolio-filter:not(.portfolio-filter--all-projects).is-active,
.portfolio-filter:hover,
.portfolio-filter:focus-visible {
  box-shadow: 0 14px 32px rgba(36, 48, 67, 0.16);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.portfolio-card {
  min-width: 0;
}

.portfolio-card__button {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #1b2533;
  text-align: left;
  font: inherit;
  box-shadow: 0 22px 56px rgba(8, 14, 24, 0.18);
  cursor: pointer;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.portfolio-card__media,
.portfolio-card__media img {
  width: 100%;
  height: 100%;
}

.portfolio-card__media img {
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 420ms ease;
}

.portfolio-card__button:hover,
.portfolio-card__button:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(8, 14, 24, 0.24);
}

.portfolio-card__button:hover .portfolio-card__media img,
.portfolio-card__button:focus-visible .portfolio-card__media img {
  transform: scale(1.05);
}

.portfolio-card__body,
.portfolio-card__tags {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
}

.portfolio-card__tags {
  top: 18px;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  right: 76px;
  max-height: 32px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, #000 0 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0 88%, transparent 100%);
}

.portfolio-card__index {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #f6f4ef;
  background: rgba(18, 26, 39, 0.34);
  backdrop-filter: blur(10px);
  font: 800 0.74rem/1 var(--body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-tag,
#portfolio-modal-prefecture {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #f6f4ef;
  border: 1px solid transparent;
  backdrop-filter: none;
}

.portfolio-filter--corporate,
.portfolio-tag--corporate {
  background: rgba(91, 133, 186, 0.18);
  border-color: rgba(91, 133, 186, 0.34);
  color: #23476d;
}

.portfolio-filter--creator-youtube,
.portfolio-tag--creator-youtube {
  background: rgba(193, 109, 95, 0.18);
  border-color: rgba(193, 109, 95, 0.34);
  color: #6d3429;
}

.portfolio-filter--documentary,
.portfolio-tag--documentary {
  background: rgba(108, 161, 131, 0.2);
  border-color: rgba(108, 161, 131, 0.34);
  color: #244f39;
}

.portfolio-filter--entertainment-and-bts,
.portfolio-tag--entertainment-and-bts {
  background: rgba(138, 118, 183, 0.2);
  border-color: rgba(138, 118, 183, 0.34);
  color: #4a3972;
}

.portfolio-filter--live-event,
.portfolio-tag--live-event {
  background: rgba(202, 149, 77, 0.2);
  border-color: rgba(202, 149, 77, 0.34);
  color: #704718;
}

.portfolio-filter--production-support,
.portfolio-tag--production-support {
  background: rgba(74, 166, 162, 0.2);
  border-color: rgba(74, 166, 162, 0.34);
  color: #165b58;
}

.portfolio-filter--social-media,
.portfolio-tag--social-media {
  background: rgba(83, 171, 136, 0.2);
  border-color: rgba(83, 171, 136, 0.34);
  color: #1b6045;
}

.portfolio-filter--travel-and-tourism,
.portfolio-tag--travel-and-tourism {
  background: rgba(72, 163, 184, 0.2);
  border-color: rgba(72, 163, 184, 0.34);
  color: #155063;
}

.portfolio-card__tags .portfolio-tag,
.portfolio-modal__tags .portfolio-tag {
  color: #f6f4ef;
}

.portfolio-card__tags .portfolio-tag--corporate,
.portfolio-modal__tags .portfolio-tag--corporate,
.portfolio-filter--corporate.is-active,
.portfolio-filter--corporate:hover,
.portfolio-filter--corporate:focus-visible {
  background: rgba(91, 133, 186, 0.84);
  border-color: rgba(169, 204, 247, 0.42);
  color: #edf5ff;
}

.portfolio-card__tags .portfolio-tag--creator-youtube,
.portfolio-modal__tags .portfolio-tag--creator-youtube,
.portfolio-filter--creator-youtube.is-active,
.portfolio-filter--creator-youtube:hover,
.portfolio-filter--creator-youtube:focus-visible {
  background: rgba(193, 109, 95, 0.84);
  border-color: rgba(244, 191, 181, 0.38);
  color: #fff1ec;
}

.portfolio-card__tags .portfolio-tag--documentary,
.portfolio-modal__tags .portfolio-tag--documentary,
.portfolio-filter--documentary.is-active,
.portfolio-filter--documentary:hover,
.portfolio-filter--documentary:focus-visible {
  background: rgba(108, 161, 131, 0.86);
  border-color: rgba(183, 224, 198, 0.4);
  color: #effaf2;
}

.portfolio-card__tags .portfolio-tag--entertainment-and-bts,
.portfolio-modal__tags .portfolio-tag--entertainment-and-bts,
.portfolio-filter--entertainment-and-bts.is-active,
.portfolio-filter--entertainment-and-bts:hover,
.portfolio-filter--entertainment-and-bts:focus-visible {
  background: rgba(138, 118, 183, 0.86);
  border-color: rgba(220, 205, 247, 0.38);
  color: #f7f1ff;
}

.portfolio-card__tags .portfolio-tag--live-event,
.portfolio-modal__tags .portfolio-tag--live-event,
.portfolio-filter--live-event.is-active,
.portfolio-filter--live-event:hover,
.portfolio-filter--live-event:focus-visible {
  background: rgba(202, 149, 77, 0.86);
  border-color: rgba(245, 215, 163, 0.38);
  color: #fff6e8;
}

.portfolio-card__tags .portfolio-tag--production-support,
.portfolio-modal__tags .portfolio-tag--production-support,
.portfolio-filter--production-support.is-active,
.portfolio-filter--production-support:hover,
.portfolio-filter--production-support:focus-visible {
  background: rgba(74, 166, 162, 0.86);
  border-color: rgba(173, 235, 230, 0.38);
  color: #ecfffd;
}

.portfolio-card__tags .portfolio-tag--social-media,
.portfolio-modal__tags .portfolio-tag--social-media,
.portfolio-filter--social-media.is-active,
.portfolio-filter--social-media:hover,
.portfolio-filter--social-media:focus-visible {
  background: rgba(83, 171, 136, 0.86);
  border-color: rgba(180, 241, 215, 0.38);
  color: #edfff7;
}

.portfolio-card__tags .portfolio-tag--travel-and-tourism,
.portfolio-modal__tags .portfolio-tag--travel-and-tourism,
.portfolio-filter--travel-and-tourism.is-active,
.portfolio-filter--travel-and-tourism:hover,
.portfolio-filter--travel-and-tourism:focus-visible {
  background: rgba(72, 163, 184, 0.86);
  border-color: rgba(178, 230, 241, 0.38);
  color: #ecfbff;
}

.portfolio-card__body {
  bottom: 14px;
  display: grid;
  gap: 0;
  max-width: min(100%, calc(100% - 64px));
  padding-right: 56px;
}

.portfolio-card__meta {
  color: rgba(246, 244, 239, 0.78);
  font-size: 0.7rem;
  font-weight: 700;
}

.portfolio-card__title {
  color: #f6f4ef;
  font: 700 clamp(1.2rem, 1.6vw, 1.5rem) / 1.05 "Anton", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
  max-width: 100%;
  max-height: 2.2em;
  overflow: hidden;
  text-wrap: balance;
}

.portfolio-card__summary {
  display: none;
}

@supports not (text-wrap: balance) {
  .portfolio-card__title {
    text-wrap: wrap;
  }
}

.portfolio-card__button:is(:hover, :focus-visible) .portfolio-card__tags {
  max-height: 32px;
}

.portfolio-card__button:is(:hover, :focus-visible) .portfolio-card__body {
  max-width: min(100%, calc(100% - 64px));
}

.portfolio-card__button::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 0;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 72%);
  pointer-events: none;
}

.portfolio-card__arrow {
  flex-shrink: 0;
}

.portfolio-card__body > *:not(.portfolio-card__arrow) {
  min-width: 0;
}

.portfolio-card__arrow {
  position: absolute;
  right: -6px;
  bottom: 0;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #f6f4ef;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1rem;
  font-weight: 700;
}

.portfolio-empty {
  padding: 40px 24px;
  border: 1px dashed rgba(43, 52, 66, 0.16);
  border-radius: 24px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(36, 48, 67, 0.04), rgba(149, 216, 220, 0.14));
  text-align: center;
}

.portfolio-empty h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.portfolio-empty p {
  max-width: 42ch;
  margin: 0 auto;
  color: rgba(43, 52, 66, 0.74);
  line-height: 1.65;
}

.portfolio-modal[hidden] {
  display: none;
}

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
}

.portfolio-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, 0.72);
  backdrop-filter: blur(6px);
}

.portfolio-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(100%, calc(100vh - 48px));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: auto;
  background: #101a28;
  color: #f6f4ef;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.32);
}

.portfolio-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #f6f4ef;
  background: rgba(16, 26, 40, 0.62);
  font: 700 0.72rem/1 var(--body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.portfolio-modal__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.portfolio-modal__copy {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.portfolio-modal__meta,
.portfolio-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.portfolio-modal__meta {
  color: rgba(246, 244, 239, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
}

.portfolio-modal__meta span:first-child {
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.portfolio-modal__copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.portfolio-modal__copy p {
  margin: 0;
  color: rgba(246, 244, 239, 0.84);
  font-size: 1rem;
  line-height: 1.75;
}

.portfolio-modal-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .portfolio-directory,
  .portfolio-cta {
    width: min(100%, calc(100% - 24px));
  }

  .portfolio-directory {
    padding: 40px 16px 42px;
    border-radius: 28px;
    transform: translateY(-30px);
  }

  .portfolio-directory__header {
    align-items: start;
    flex-direction: column;
  }

  .portfolio-directory__sort {
    width: 100%;
  }

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

  .portfolio-card__body,
  .portfolio-card__tags {
    left: 16px;
    right: 16px;
  }

  .portfolio-card__tags {
    right: 68px;
    max-height: 32px;
  }

  .portfolio-card__index {
    right: 16px;
  }

  .portfolio-card__body {
    max-width: min(100%, calc(100% - 52px));
    padding-right: 52px;
  }

  .portfolio-modal {
    padding: 14px;
  }

  .portfolio-modal__dialog {
    max-height: calc(100vh - 28px);
  }

  .portfolio-modal__copy {
    padding: 22px 18px 20px;
  }

  .portfolio-modal__close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 520px) {
  .portfolio-page-hero-copy p:not(.meta-line) {
    max-width: 96%;
  }

  .portfolio-card__title {
    font-size: 1.08rem;
  }

  .portfolio-card__summary {
    font-size: 0.88rem;
    max-height: calc(1.45em * 2);
  }

  .portfolio-card__arrow {
    width: 40px;
    height: 40px;
  }

  .portfolio-modal__copy h3 {
    font-size: clamp(2rem, 12vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .pixel-tile {
    transition: filter 120ms ease !important;
  }

  .site-header {
    transition: top 720ms cubic-bezier(0.16, 1, 0.3, 1), background 420ms ease, border-color 420ms ease, box-shadow 420ms ease !important;
  }

  .brand,
  .site-header nav {
    transition: opacity 260ms ease 140ms, transform 360ms cubic-bezier(0.16, 1, 0.3, 1) 100ms !important;
  }

  .language-switch,
  .language-switch__slider,
  .language-switch__card,
  .language-switch__face,
  .language-toggle__label {
    transition: none !important;
  }

  .button {
    transition:
      box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
      color 0.6s cubic-bezier(0.23, 1, 0.32, 1),
      border-radius 0.6s cubic-bezier(0.23, 1, 0.32, 1),
      transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) !important;
  }

  .button svg,
  .button .text,
  .button .circle {
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1) !important;
  }

  .contact-action-button,
  .contact-action-button__bg::before,
  .contact-action-button__outline,
  .contact-action-button__wrap,
  .contact-action-button__label,
  .contact-action-button__label span,
  .contact-action-button__icon,
  .contact-action-button__icon span,
  .contact-action-button__icon span::before,
  .contact-action-button__icon span::after {
    transition-duration: 0.35s !important;
  }

  .contact-action-button__outline::before {
    animation-duration: 3s !important;
  }

  .folder-upload,
  .folder-upload__shell,
  .folder-upload__sheet,
  .folder-upload__face,
  .folder-upload__face::after,
  .folder-upload__face::before,
  .folder-upload__stack {
    transition-duration: 300ms !important;
  }

  .portfolio-card__button {
    transition-duration: 280ms !important;
  }

  .portfolio-card__media img {
    transition-duration: 420ms !important;
  }

  .topography::before,
  .topography::after {
    animation-duration: 14s !important;
    animation-iteration-count: infinite !important;
  }

  .japan-map-section::after {
    animation-duration: 16s !important;
    animation-iteration-count: infinite !important;
  }
}

@media (max-width: 1100px) {
  .seo-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-section-head,
  .seo-split {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .seo-card-grid,
  .seo-card-grid.two-up {
    grid-template-columns: minmax(0, 1fr);
  }

  .seo-hero {
    min-height: auto;
  }

  body.services-page .seo-hero {
    min-height: 100vh;
  }
}
