:root {
  --bg: #071113;
  --bg-soft: #0c1719;
  --bg-panel: #0e1d20;
  --bg-panel-2: #12262a;
  --grid: rgba(126, 203, 208, 0.12);
  --text: #eff5f3;
  --muted: rgba(239, 245, 243, 0.68);
  --soft: rgba(239, 245, 243, 0.08);
  --line: rgba(160, 226, 230, 0.14);
  --brand: #71c6cb;
  --brand-strong: #2a8b93;
  --gold: #c7a279;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(43, 139, 147, 0.14), transparent 22%),
    linear-gradient(180deg, #071113 0%, #050d0f 100%);
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: var(--grid-size, 34px) var(--grid-size, 34px);
  mask-image: radial-gradient(circle at center, black 28%, transparent 82%);
  will-change: background-size;
}

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

.shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  padding-top: 18px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(9, 18, 20, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand span,
.footer-brand div {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand strong,
.footer-brand strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.site-nav a:hover {
  color: var(--brand);
  text-shadow: 0 0 18px rgba(113, 198, 203, 0.2);
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, #2a8b93, #164f54);
  color: white !important;
  box-shadow: 0 12px 28px rgba(10, 57, 61, 0.28);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
}

.nav-toggle {
  display: none;
}

.hero {
  padding: 24px 0 18px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 0;
  grid-template-areas:
    "headline headline"
    "copy stage";
}

.hero-headline {
  grid-area: headline;
  max-width: none;
  padding: 4px 0 6px;
}

.hero-copy {
  grid-area: copy;
  max-width: none;
  padding: 0;
  align-self: stretch;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
}

.eyebrow-dark {
  color: #92d9dd;
}

.hero-headline .eyebrow {
  margin-bottom: 10px;
}

h1,
h2 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
}

h1 {
  display: grid;
  gap: 0.04em;
  margin-top: 0;
  font-size: clamp(3rem, 3.5vw, 4rem);
  line-height: 0.92;
  max-width: none;
  color: #f3f7f5;
}

h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 12ch;
}

.headline-accent {
  color: #a7dde0;
}

h1 span {
  display: block;
}

.hero-title {
  width: 100%;
  max-width: 100%;
}

.hero-line-single {
  display: flex;
  flex-wrap: wrap;
  gap: 0.22em;
  align-items: baseline;
  width: 100%;
}

.hero-line-single span:nth-child(2),
.hero-line-single span:nth-child(4) {
  color: #a7dde0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.hero-lead,
.section-head p,
.service-stack p,
.workflow-copy p,
.workflow-steps p,
.hero-panel p,
.contact-copy p,
.contact-card p,
.footer-brand p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.hero-lead {
  max-width: 40ch;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
}

.hero-copy-card {
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 14px 16px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(12, 23, 25, 0.92), rgba(8, 17, 19, 0.92));
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.hero-copy-card:hover {
  transform: translateY(-3px);
  border-color: rgba(160, 226, 230, 0.24);
  background:
    radial-gradient(circle at top left, rgba(71, 194, 203, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(16, 31, 34, 0.98), rgba(8, 17, 19, 0.97));
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(113, 198, 203, 0.05) inset;
}

.hero-meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  flex: 1 1 auto;
  align-content: start;
}

.hero-meta div {
  padding: 12px 0;
  border-top: 1px solid rgba(160, 226, 230, 0.14);
}

.hero-meta span {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-meta strong {
  font-size: 1rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  color: inherit;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease;
}

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

.button-ghost {
  border-color: rgba(160, 226, 230, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stage {
  grid-area: stage;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  align-items: stretch;
  align-self: stretch;
}

.hero-video-card,
.hero-panel,
.service-feature,
.service-row,
.gallery-card,
.workflow-steps article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(12, 23, 25, 0.92), rgba(8, 17, 19, 0.92));
  box-shadow: var(--shadow);
}

.hero-video-card {
  padding: 14px;
  height: 100%;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hero-video-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 0 2px 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-video-top span:first-child {
  color: var(--brand);
  font-weight: 800;
}

.hero-video-wrap {
  position: relative;
  height: clamp(420px, calc(100vh - 300px), 760px);
  min-height: 0;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 14%, rgba(47, 158, 166, 0.16), transparent 20%),
    radial-gradient(circle at 78% 12%, rgba(199, 162, 121, 0.1), transparent 18%),
    linear-gradient(160deg, #03090a 0%, #071214 42%, #0f2225 100%);
}

.hero-video-grid,
.hero-video-wrap video,
.hero-video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video-grid {
  z-index: 1;
  background-image:
    linear-gradient(rgba(126, 203, 208, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 203, 208, 0.16) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
}

.hero-video-wrap video {
  z-index: 2;
  object-fit: cover;
}

.hero-video-shade {
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 36%, rgba(1, 5, 6, 0.5) 100%),
    linear-gradient(180deg, rgba(3, 8, 9, 0.5), rgba(3, 8, 9, 0.04) 28%, rgba(3, 8, 9, 0.62) 100%);
}

.hero-tag {
  position: absolute;
  z-index: 4;
  padding: 11px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(160, 226, 230, 0.16);
  background: rgba(3, 10, 11, 0.68);
  color: white;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-tag-a {
  top: 26px;
  left: 26px;
}

.hero-tag-b {
  right: 26px;
  bottom: 26px;
}

.hero-aside {
  display: grid;
  gap: 18px;
}

.hero-panel {
  padding: 18px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.hero-aside {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 18px;
}

.hero-panel {
  min-height: 0;
}

.hero-panel-dark {
  background:
    radial-gradient(circle at top left, rgba(41, 168, 176, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(14, 31, 34, 0.94), rgba(8, 17, 19, 0.96));
}

.hero-video-card:hover,
.hero-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(160, 226, 230, 0.24);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(113, 198, 203, 0.05) inset;
}

.hero-panel:hover {
  background:
    radial-gradient(circle at top left, rgba(71, 194, 203, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(16, 31, 34, 0.98), rgba(8, 17, 19, 0.97));
}

.hero-panel-line ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.hero-panel-line li {
  padding-top: 10px;
  border-top: 1px solid rgba(160, 226, 230, 0.12);
  font-weight: 700;
}

.panel-label {
  display: block;
  color: var(--brand);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.hero-signals p {
  margin: 0;
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(239, 245, 243, 0.9);
  text-align: center;
  font-weight: 800;
  font-size: 0.94rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.hero-signals p:hover {
  transform: translateY(-2px);
  border-color: rgba(160, 226, 230, 0.24);
  background:
    radial-gradient(circle at top center, rgba(71, 194, 203, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(113, 198, 203, 0.04) inset;
}

.section {
  padding: 78px 0;
}

.services {
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 203, 208, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 203, 208, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 88%);
  pointer-events: none;
}

.services::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(42, 139, 147, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 38%);
  pointer-events: none;
}

.section-head {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.section-head-wide {
  max-width: none;
}

.section-head p:last-child {
  margin-top: 16px;
}

.section-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head-split h2 {
  max-width: 13ch;
}

.section-kicker {
  margin: 0;
  max-width: 38ch;
  justify-self: end;
  align-self: center;
  padding: 22px 24px;
  border: 1px solid rgba(160, 226, 230, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(113, 198, 203, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(15, 28, 30, 0.94), rgba(8, 17, 19, 0.96));
  box-shadow: var(--shadow);
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.section-kicker:hover {
  transform: translateY(-3px);
  border-color: rgba(160, 226, 230, 0.24);
  background:
    radial-gradient(circle at top left, rgba(113, 198, 203, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(18, 32, 35, 0.98), rgba(8, 17, 19, 0.97));
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(113, 198, 203, 0.05) inset;
}

.service-stack {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.service-feature,
.service-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.service-feature {
  grid-template-columns: 96px 1fr auto;
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(42, 139, 147, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(15, 28, 30, 0.98), rgba(8, 17, 19, 0.96));
  border-color: rgba(160, 226, 230, 0.2);
}

.service-feature::before,
.service-row::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 42%;
  height: 140%;
  background: radial-gradient(circle, rgba(113, 198, 203, 0.18), transparent 68%);
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.service-feature:hover,
.service-row:hover {
  transform: translateY(-3px);
  border-color: rgba(160, 226, 230, 0.28);
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(113, 198, 203, 0.05) inset;
}

.service-feature:hover::before,
.service-row:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.service-feature:hover {
  background:
    radial-gradient(circle at top right, rgba(71, 194, 203, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(16, 31, 34, 0.99), rgba(8, 17, 19, 0.97));
}

.service-row:hover {
  background:
    radial-gradient(circle at top left, rgba(71, 194, 203, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(14, 26, 28, 0.98), rgba(7, 15, 16, 0.96));
}

.service-row-muted {
  background: linear-gradient(180deg, rgba(14, 24, 26, 0.9), rgba(7, 15, 16, 0.94));
}

.service-index {
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.service-accent {
  align-self: start;
  padding: 10px 14px;
  border: 1px solid rgba(160, 226, 230, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--brand);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.gallery {
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 203, 208, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 203, 208, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 92%);
  pointer-events: none;
}

.gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(113, 198, 203, 0.08), transparent 20%),
    radial-gradient(circle at 18% 72%, rgba(113, 198, 203, 0.08), transparent 16%);
  pointer-events: none;
}

.gallery-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.gallery-title-wrap h2 {
  max-width: 15ch;
  font-size: clamp(3rem, 4.4vw, 4.4rem);
  line-height: 0.94;
}

.gallery-intro-card {
  align-self: center;
  padding: 22px 24px;
  border: 1px solid rgba(160, 226, 230, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(113, 198, 203, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(15, 28, 30, 0.94), rgba(8, 17, 19, 0.96));
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.gallery-intro-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.gallery-intro-card:hover {
  transform: translateY(-3px);
  border-color: rgba(160, 226, 230, 0.24);
  background:
    radial-gradient(circle at top left, rgba(113, 198, 203, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(18, 32, 35, 0.98), rgba(8, 17, 19, 0.97));
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(113, 198, 203, 0.05) inset;
}

.gallery-card-featured {
  grid-row: span 2;
  min-height: 658px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.06) brightness(1.04);
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(160, 226, 230, 0.24);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(113, 198, 203, 0.05) inset;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: auto auto -12% -8%;
  width: 48%;
  height: 48%;
  background: radial-gradient(circle, rgba(113, 198, 203, 0.18), transparent 72%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.gallery-card:hover::before {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 6px;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(2, 8, 9, 0.9));
  color: white;
  pointer-events: none;
}

.gallery-overlay strong {
  font-size: 1rem;
}

.gallery-overlay span:last-child {
  color: rgba(239, 245, 243, 0.74);
  line-height: 1.6;
}

.workflow {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(39, 172, 181, 0.16), transparent 22%),
    linear-gradient(180deg, #050d0f 0%, #081214 100%);
}

.workflow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 203, 208, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 203, 208, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 84%);
  pointer-events: none;
}

.workflow-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.workflow-copy p {
  max-width: 42ch;
}

.workflow-copy h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 4.2vw, 4.5rem);
  line-height: 0.94;
}

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

.workflow-steps article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  box-shadow: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.workflow-steps span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2a8b93, #164f54);
  font-weight: 800;
}

.workflow-steps article:hover {
  transform: translateY(-3px);
  border-color: rgba(160, 226, 230, 0.24);
  background:
    radial-gradient(circle at top left, rgba(113, 198, 203, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(113, 198, 203, 0.04) inset;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 22px;
}

.contact-copy h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 4.3vw, 4.6rem);
  line-height: 0.94;
}

.contact-copy p {
  max-width: 44ch;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-card a {
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.06rem;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(160, 226, 230, 0.24);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(113, 198, 203, 0.05) inset;
}

.contact-card-group {
  display: grid;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(160, 226, 230, 0.12);
}

.contact-label {
  color: var(--brand);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.contact-card-group p {
  margin: 0;
  color: var(--muted);
}

.contact-card-note {
  padding: 16px 18px;
  border: 1px solid rgba(160, 226, 230, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(239, 245, 243, 0.9);
  line-height: 1.65;
  font-weight: 600;
}

.site-footer {
  padding: 26px 0 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(160, 226, 230, 0.14);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand p,
.footer-copy {
  color: var(--muted);
  margin: 0;
}

.lightbox {
  width: min(92vw, 1120px);
  border: 0;
  padding: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(12px);
}

.lightbox-close-wrap {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.lightbox-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 1.7rem;
  cursor: pointer;
}

.lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.lightbox p {
  margin: 14px 0 0;
  color: white;
  text-align: center;
  font-weight: 700;
}

@media (min-width: 1180px) and (max-height: 940px) {
  .site-header {
    top: 10px;
    padding-top: 12px;
  }

  .header-inner {
    padding: 12px 16px;
  }

  .hero {
    padding: 18px 0 14px;
  }

  .hero-layout {
    gap: 14px;
    min-height: 0;
  }

  h1 {
    font-size: clamp(2.45rem, 2.9vw, 3.35rem);
  }

  .hero-copy-card {
    padding: 12px 14px;
  }

  .hero-lead {
    font-size: 0.96rem;
    line-height: 1.54;
  }

  .hero-meta {
    gap: 6px;
    margin-top: 14px;
  }

  .hero-meta div {
    padding: 10px 0;
  }

  .hero-meta span {
    margin-bottom: 4px;
    font-size: 0.74rem;
  }

  .hero-meta strong {
    font-size: 0.94rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 12px;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
  }

  .hero-stage {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 14px;
  }

  .hero-video-card {
    padding: 12px;
  }

  .hero-video-top {
    padding-bottom: 10px;
    font-size: 0.8rem;
  }

  .hero-video-wrap {
    height: clamp(360px, calc(100vh - 255px), 500px);
    min-height: 0;
  }

  .hero-panel {
    padding: 18px;
  }

  .hero-panel-line ul {
    margin-top: 14px;
    gap: 8px;
  }

  .hero-panel-line li {
    padding-top: 10px;
  }

  .hero-signals {
    gap: 10px;
    margin-top: 12px;
  }

  .hero-signals p {
    padding: 14px 14px;
    font-size: 0.94rem;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 1120px) {
  .hero-layout,
  .workflow-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    grid-template-areas:
      "headline"
      "copy"
      "stage";
  }

  .section-head-split {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-kicker {
    justify-self: start;
  }

  .hero-stage {
    grid-template-columns: 1fr;
  }

  .hero-copy-card,
  .hero-video-wrap {
    min-height: auto;
  }

  .hero-video-card {
    min-height: auto;
    height: auto;
  }

  .hero-aside {
    grid-template-rows: none;
    grid-template-columns: 1fr;
  }

  .hero-video-wrap {
    min-height: 620px;
  }

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

  .gallery-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-card-featured {
    grid-row: span 1;
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font: inherit;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }

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

  h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero,
  .section {
    padding: 64px 0;
  }

  .hero-signals,
  .workflow-steps,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-feature,
  .service-row {
    grid-template-columns: 1fr;
  }

  .hero-video-wrap {
    min-height: 460px;
  }

  .hero-tag-b {
    right: 18px;
    bottom: 18px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
