:root {
  --ink: #14170F;
  --ink-raised: #1B1F15;
  --paper: #F3EFE4;
  --paper-dim: #C9C2AC;
  --stone: #8B8578;
  /* secondary accent, carried in the logo's core node — replaces the old warm
     eucalyptus green, a bronze-palette leftover that failed contrast on raised ink */
  --teal: #5A9A82;
  --teal-deep: #3E6B57;
  --accent: #2F6FFF;
  --accent-bright: #5B93FF;
  --accent-lift: #7FACFF;

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --wrap: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--paper-dim); }

a { color: inherit; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin: 0 0 1em;
}

/* subtle film-grain overlay for texture */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Intro title sequence (17.5s) ---------- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.7s ease;
}

/* hold the page still behind the overlay; releases automatically when
   .intro-out is set or the node is removed, so a JS failure can't trap scroll */
body:has(.intro:not(.intro-out)) { overflow: hidden; }

.intro.intro-out {
  opacity: 0;
  pointer-events: none;
}

.intro-stage {
  position: relative;
  width: min(620px, 78vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-water {
  position: absolute;
  left: -50%; right: -50%;
  bottom: 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(20, 23, 15, 0) 0%, rgba(14, 27, 26, 0.9) 45%, #0E1B1A 100%);
}

.intro-water::before {
  content: "";
  position: absolute;
  inset: -10% -20%;
  background: repeating-linear-gradient(96deg, rgba(243, 239, 228, 0.05) 0px, rgba(243, 239, 228, 0.05) 1px, transparent 1px, transparent 26px);
  animation: rippleDrift 16s linear infinite;
}

.intro-butterfly {
  position: relative;
  width: 78%;
  animation: introRise 7.5s cubic-bezier(0.16, 0.7, 0.24, 1) forwards;
}

.intro-butterfly::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 165%;
  height: 165%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(91, 147, 255, 0.26) 0%, rgba(47, 111, 255, 0.11) 38%, transparent 68%);
}

.intro-butterfly svg {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 34px rgba(47, 111, 255, 0.45)) drop-shadow(0 20px 30px rgba(0, 0, 0, 0.55));
}

@keyframes introRise {
  0%   { transform: translateY(260px) scale(0.72); opacity: 0; }
  5%   { opacity: 0; }
  20%  { opacity: 1; }
  43%  { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-26px) scale(1.04); opacity: 1; }
}

.intro-mark {
  position: absolute;
  bottom: 2%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  animation: introMarkIn 7.5s ease-out forwards;
}

.intro-name {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
  color: var(--paper);
}

.intro-tagline {
  margin-top: 10px;
  font-size: clamp(0.7rem, 1.3vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  color: var(--stone);
}

@keyframes introMarkIn {
  0%, 47%   { opacity: 0; transform: translateY(18px); }
  64%, 100% { opacity: 1; transform: translateY(0); }
}

.intro-skip {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid rgba(243, 239, 228, 0.25);
  border-radius: 3px;
  background: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-dim);
  opacity: 0;
  animation: skipIn 0.4s ease 0.6s forwards;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.intro-skip:hover {
  color: var(--paper);
  border-color: var(--paper);
}

@keyframes skipIn { to { opacity: 1; } }

/* let the hero's own take-off play after the intro, not behind it */
body.intro-active .butterfly-rig,
body.intro-active .butterfly-bob { animation-play-state: paused; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(20, 23, 15, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(243, 239, 228, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--paper);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo { flex-shrink: 0; }

.logo-name {
  font-size: 1.725rem;
  line-height: 1;
}

/* Tracked out so the tagline sits to roughly the width of the wordmark above it */
.logo-tagline {
  margin-top: 5px;
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.235em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--stone);
}

/* Node lattice in the butterfly's own gradients — bright blue nodes on a deep
   blue fall-off, with the core node picking up the teal of the lower wing. */
.logo-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 7px rgba(47, 111, 255, 0.32));
}

.mark-link {
  fill: none;
  stroke: rgba(91, 147, 255, 0.5);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.92rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--paper-dim);
  transition: color 0.2s ease;
}

.main-nav a:hover, .main-nav a:focus-visible {
  color: var(--paper);
}

.nav-cta {
  padding: 9px 18px;
  border: 1px solid var(--accent);
  border-radius: 3px;
  color: var(--paper) !important;
}

.nav-cta:hover { background: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--paper);
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}

#lattice {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 40%, rgba(20,23,15,0.2), var(--ink) 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Signature: a butterfly lifting off a reflective water surface —
   metamorphosis as the literal image of "Morphex". */
.flight-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.water-surface {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(20, 23, 15, 0) 0%, rgba(14, 27, 26, 0.85) 40%, #0E1B1A 100%);
}

.water-surface::before {
  content: "";
  position: absolute;
  inset: -10% -20%;
  background: repeating-linear-gradient(96deg, rgba(243, 239, 228, 0.035) 0px, rgba(243, 239, 228, 0.035) 1px, transparent 1px, transparent 28px);
  animation: rippleDrift 16s linear infinite;
}

@keyframes rippleDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-280px); }
}

.butterfly-rig {
  position: absolute;
  right: 6%;
  bottom: 30%;
  width: 460px;
  animation: riseFromWater 5s cubic-bezier(0.16, 0.7, 0.24, 1) forwards;
}

/* Iridescent bloom, so the morpho reads as the lit subject of the hero */
.butterfly-rig::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 150%;
  height: 150%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(91, 147, 255, 0.22) 0%, rgba(47, 111, 255, 0.10) 38%, transparent 68%);
  pointer-events: none;
}

.butterfly {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 28px rgba(47, 111, 255, 0.4)) drop-shadow(0 18px 26px rgba(0, 0, 0, 0.5));
}

@keyframes riseFromWater {
  0%   { transform: translateY(150px) translateX(14px) scale(0.86); opacity: 0; }
  18%  { opacity: 1; }
  100% { transform: translateY(0) translateX(-10px) scale(1); opacity: 1; }
}

.butterfly-bob {
  animation: bob 4.6s ease-in-out infinite 5s;
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-1.5deg); }
}

/* suspended spray around the point of take-off — static, since the scene
   already carries the rise, bob, flap and ripple */
.spray {
  position: absolute;
  right: 1%;
  bottom: 16%;
  width: 620px;
  height: auto;
  pointer-events: none;
  animation: shimmer 7s ease-in-out infinite;
}

.butterfly-reflection {
  position: absolute;
  right: 6%;
  bottom: 2%;
  width: 460px;
  transform: scaleY(-0.5);
  opacity: 0.28;
  filter: blur(2.5px);
  animation: shimmer 5s ease-in-out infinite;
}

.butterfly-reflection svg {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.28; filter: blur(2.5px); }
  50% { opacity: 0.16; filter: blur(4.5px); }
}

.wing { transform-origin: 60px 50px; }
.wing-left { animation: flapLeft 1.7s ease-in-out infinite; }
.wing-right { animation: flapRight 1.7s ease-in-out infinite; }

@keyframes flapLeft {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.35); }
}
@keyframes flapRight {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(0.35); }
}

.hero-copy { max-width: 620px; }

.hero-lede {
  font-size: 1.15rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 2em;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

/* --accent as the fill gives dark-on-blue only 4.17:1, and white on it is 4.34:1
   — both under AA. --accent-bright with the dark ink reaches 6.09:1. */
.btn-primary {
  background: var(--accent-bright);
  color: var(--ink);
  font-weight: 500;
}
.btn-primary:hover { background: var(--accent-lift); }

.btn-ghost {
  border: 1px solid rgba(243, 239, 228, 0.3);
  color: var(--paper);
}
.btn-ghost:hover { border-color: var(--paper); }

/* ---------- Trust strip ---------- */
.trust-strip {
  border-top: 1px solid rgba(243, 239, 228, 0.08);
  border-bottom: 1px solid rgba(243, 239, 228, 0.08);
  padding: 22px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--stone);
  text-transform: uppercase;
}

.dot { color: var(--teal); }

/* ---------- Capability ---------- */
.capability { padding: 120px 0; }

.capability-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.capability-head h2 { max-width: 380px; }

.capability-body p:first-child { color: var(--paper); font-size: 1.1rem; }

/* ---------- Services ---------- */
.services {
  padding: 120px 0;
  background: var(--ink-raised);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(243, 239, 228, 0.08);
  margin-top: 48px;
  border: 1px solid rgba(243, 239, 228, 0.08);
}

.service-card {
  background: var(--ink-raised);
  padding: 32px 24px;
  transition: background 0.25s ease;
}

.service-card:hover { background: #212617; }

.service-index {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.service-card h3 { color: var(--paper); font-size: 1.1rem; }
.service-card p { margin-bottom: 0; font-size: 0.9rem; }

/* ---------- Sovereign ---------- */
.sovereign { padding: 120px 0; }

.sovereign-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.sovereign-copy h2 { max-width: 480px; }

/* every other text block is width-capped; without this the column ran to
   ~100 characters per line, well past the 45–75 readable range */
.sovereign-copy p { max-width: 56ch; }

.sovereign-list {
  list-style: none;
  padding: 0;
  margin: 1.5em 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sovereign-list li {
  padding-left: 26px;
  position: relative;
  color: var(--paper);
  font-size: 0.95rem;
}

.sovereign-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.sovereign-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* the spinning rings are circles inscribed in their boxes, so their rotated
     bounding boxes overflow the container without anything visible to show
     for it — clip that rather than let it force a horizontal scrollbar */
  overflow: hidden;
}

/* inset + margin:auto centres the rings without claiming `transform`,
   which the spin animation owns. */
.sovereign-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  border: 1px solid var(--teal-deep);
  border-radius: 50%;
  width: 60%;
  height: 60%;
  animation: spin 40s linear infinite;
}
.ring-2 { width: 80%; height: 80%; border-color: rgba(47, 111, 255, 0.35); animation-duration: 60s; animation-direction: reverse; }
.ring-3 { width: 100%; height: 100%; border-color: rgba(243, 239, 228, 0.1); animation-duration: 80s; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.sovereign-mark {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--accent-bright);
}

/* ---------- Process ---------- */
.process {
  padding: 120px 0;
  background: var(--ink-raised);
}

.process-steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.process-steps li {
  border-top: 1px solid var(--accent);
  padding-top: 20px;
}

.step-num {
  display: block;
  font-family: var(--font-mono);
  color: var(--stone);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.process-steps h3 { color: var(--paper); margin-bottom: 0.4em; }
.process-steps p { font-size: 0.92rem; margin-bottom: 0; }

/* ---------- Partner ecosystem ---------- */
.partners-section { padding: 120px 0; }

.partners {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(243, 239, 228, 0.08);
  border: 1px solid rgba(243, 239, 228, 0.08);
}

.partner {
  background: var(--ink);
  padding: 32px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: background 0.25s ease;
}

.partner:hover { background: var(--ink-raised); }

.partner-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.partner-name {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

/* Staggered reveal, 1s apart. The hidden state is only applied once JS has
   marked the list ready, so without JS the logos simply render. */
.partners.stagger-ready .partner {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease, background 0.25s ease;
}

.partners.stagger-ready.in-view .partner {
  opacity: 1;
  transform: none;
}

.partners.stagger-ready .partner:nth-child(1) { transition-delay: 0s; }
.partners.stagger-ready .partner:nth-child(2) { transition-delay: 1s; }
.partners.stagger-ready .partner:nth-child(3) { transition-delay: 2s; }
.partners.stagger-ready .partner:nth-child(4) { transition-delay: 3s; }
.partners.stagger-ready .partner:nth-child(5) { transition-delay: 4s; }
.partners.stagger-ready .partner:nth-child(6) { transition-delay: 5s; }

/* the global reduced-motion rule zeroes durations but not delays, so a
   staggered 4s wait would survive it — clear the delays explicitly */
@media (prefers-reduced-motion: reduce) {
  .partners.stagger-ready .partner {
    opacity: 1;
    transform: none;
    transition-delay: 0s !important;
  }
}

/* ---------- Contact ---------- */
.contact { padding: 140px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
}

.contact-lede { font-size: 1.05rem; max-width: 480px; }

.contact-card {
  border: 1px solid rgba(243, 239, 228, 0.12);
  padding: 40px;
  border-radius: 4px;
}

.contact-line {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent-bright);
  text-decoration: none;
  margin-bottom: 16px;
  word-break: break-word;
}
.contact-line:hover { color: var(--paper); }

.contact-meta {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--stone);
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(243, 239, 228, 0.08);
  padding: 28px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--stone);
}

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .butterfly-rig, .butterfly-reflection { width: 360px; }
  .spray { width: 490px; }
  .hero-copy { max-width: 540px; }
}

/* 8 service cards divide evenly by 4, 2 and 1 — never leave a part-filled row,
   or the 1px-gap hairline grid shows a broken cell. */
@media (max-width: 1140px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 6 partners divide evenly by 6, 3 and 1 — no part-filled row, so the
   hairline grid never shows a broken cell */
@media (max-width: 1040px) {
  .partners { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1000px) {
  .butterfly-rig { right: 4%; bottom: 34%; width: 280px; }
  .butterfly-reflection { right: 4%; width: 280px; }
  .spray { width: 380px; bottom: 20%; }
  .hero-copy { max-width: 460px; }
}

/* Nav collapses on its own breakpoint, ahead of the layout one below: the
   wordmark lockup plus six nav items stop fitting on one line around 970px,
   where the nav starts wrapping into the logo. */
@media (max-width: 1020px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  /* the toggle sets .nav-open — without this the button reports
     aria-expanded="true" while the menu stays hidden */
  .main-nav.nav-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 32px 18px;
    background: var(--ink-raised);
    border-bottom: 1px solid rgba(243, 239, 228, 0.08);
  }

  .main-nav.nav-open a {
    display: flex;
    align-items: center;
    min-height: 44px;
    border-top: 1px solid rgba(243, 239, 228, 0.07);
  }

  .main-nav.nav-open .nav-cta {
    margin-top: 14px;
    justify-content: center;
    border-top: 1px solid var(--accent);
  }
}

@media (max-width: 900px) {
  .capability-grid, .sovereign-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .sovereign-visual { max-width: 260px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-grid { align-items: start; }
  .flight-scene { display: none; }
  .partners { grid-template-columns: 1fr; }
  .partner { flex-direction: row; justify-content: flex-start; gap: 20px; text-align: left; padding: 24px 20px; }
}
