:root {
  --navy: #0a1a3a;
  --navy-deep: #06102a;
  --ink: #0e1c38;
  --cyan: #00c2ef;
  --cyan-hot: #3ad9ff;
  --cyan-soft: rgba(0, 194, 239, 0.14);
  --mist: #f4f7fb;
  --paper: #ffffff;
  --muted: #5a6b86;
  --line: rgba(10, 26, 58, 0.12);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --max: 1120px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cyan);
  color: var(--navy);
  padding: 0.75rem 1rem;
  z-index: 100;
}

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

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header:not(.is-scrolled):not(.is-open) .nav-toggle span {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.site-header:not(.is-scrolled):not(.is-open) .nav-toggle {
  background: rgba(0, 0, 0, 0.22);
  border-radius: 6px;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand img {
  width: 118px;
  height: auto;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 1.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a {
  color: var(--navy);
  opacity: 0.78;
  transition: opacity 0.2s, color 0.2s;
}

.nav a:hover {
  opacity: 1;
  color: var(--cyan);
}

.header-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 22px;
  background: var(--navy);
  margin-inline: auto;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem var(--space) 1.25rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.55rem 0;
}

.mobile-nav .btn {
  margin-top: 0.5rem;
  text-align: center;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  background: var(--cyan);
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--cyan);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  background: var(--cyan-hot);
  border-color: var(--cyan-hot);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}

.btn-sm {
  min-height: 40px;
  padding: 0.45rem 1rem;
  font-size: 1rem;
}

/* Hero — one composition, brand-first */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--navy-deep);
}

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

.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 16, 42, 0.92) 0%, rgba(6, 16, 42, 0.55) 45%, rgba(6, 16, 42, 0.82) 100%),
    url("assets/images/hero-team.jpg") center 30% / cover no-repeat;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 35%, rgba(0, 194, 239, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 45% at 15% 80%, rgba(58, 217, 255, 0.12), transparent 50%);
}

.hero-speed {
  position: absolute;
  inset: -10% -5%;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0 18px,
      rgba(255, 255, 255, 0.03) 18px 19px
    );
  animation: drift 28s linear infinite;
  opacity: 0.7;
}

.hero-athlete {
  display: none;
}

.about-photo {
  margin: 1.75rem 0 0;
  overflow: hidden;
  border-radius: 2px;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.collection-tile.has-image {
  min-height: 260px;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(6, 16, 42, 0.15) 0%, rgba(6, 16, 42, 0.88) 72%),
    var(--tile-image) center / cover no-repeat;
}

.collection-tile.has-image .tile-label {
  position: relative;
  z-index: 1;
}

.collection-tile.has-image h3,
.collection-tile.has-image p {
  position: relative;
  z-index: 1;
}

.collection-tile.has-image p {
  color: rgba(255, 255, 255, 0.78);
}

.collection-tile.has-image:hover {
  background:
    linear-gradient(180deg, rgba(0, 194, 239, 0.2) 0%, rgba(6, 16, 42, 0.95) 75%),
    var(--tile-image) center / cover no-repeat;
}

.collection-tile.has-image:hover p {
  color: rgba(255, 255, 255, 0.85);
}

/* Awards */
.awards {
  background: var(--paper);
}

.awards-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.award-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--mist);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.award-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.award-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2px;
}

.award-copy h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.award-copy p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Gallery */
.gallery {
  background: var(--navy-deep);
  color: var(--paper);
}

.gallery .section-head h2 {
  color: var(--paper);
}

.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
}

.gallery-cta {
  max-width: var(--max);
  margin: 1.75rem auto 0;
  text-align: center;
}

.gallery-cta-btn {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.45);
}

.gallery-cta-btn:hover {
  color: var(--navy);
  background: var(--paper);
  border-color: var(--paper);
}

.footer-inner .credit {
  margin: 0;
  font-size: 0.88rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) var(--space) clamp(3rem, 8vh, 5rem);
}

.hero-logo {
  width: min(280px, 68vw);
  height: auto;
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
  animation: rise 0.9s var(--ease) both;
}

.hero h1 {
  font-size: clamp(3.4rem, 12vw, 7.5rem);
  max-width: 10ch;
  margin-bottom: 1rem;
  animation: rise 0.9s 0.08s var(--ease) both;
}

.hero-lead {
  max-width: 34rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.75rem;
  animation: rise 0.9s 0.16s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: rise 0.9s 0.24s var(--ease) both;
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-40px); }
}

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

/* Strip */
.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.strip p {
  margin: 0;
  padding: 1.15rem var(--space);
  background: var(--mist);
  font-size: 0.92rem;
  color: var(--muted);
}

.strip strong {
  color: var(--navy);
  font-weight: 700;
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 6.5rem) var(--space);
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 2.75rem;
}

.section-head.light {
  color: var(--paper);
}

.section-head h2,
.section-intro h2,
.contact-panel h2 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-top: 0.4rem;
}

.section-sub {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.section-head.light .eyebrow {
  color: var(--cyan-hot);
}

/* About */
.about {
  background: var(--paper);
}

.section-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.mission-row {
  max-width: var(--max);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.mission-row article {
  padding: 1.5rem 0 0;
  border-top: 3px solid var(--cyan);
}

.mission-row h3 {
  font-size: 1.65rem;
  margin-bottom: 0.65rem;
  color: var(--navy);
}

.mission-row p {
  margin: 0;
  color: var(--muted);
}

/* Collections — athletic tiles, not soft cards */
.collections {
  background:
    linear-gradient(180deg, var(--mist) 0%, #e8eef7 100%);
  position: relative;
  overflow: hidden;
}

.collections::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(0, 194, 239, 0.12), transparent 60%);
  pointer-events: none;
}

.collection-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  position: relative;
}

.collection-tile {
  background: var(--paper);
  padding: 1.5rem 1.25rem 1.75rem;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.3s var(--ease), color 0.3s;
  position: relative;
  overflow: hidden;
}

.collection-tile::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.collection-tile:hover {
  background: var(--navy);
  color: var(--paper);
}

.collection-tile:hover::after {
  transform: scaleX(1);
}

.collection-tile:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.tile-label {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: auto;
  padding-bottom: 1.5rem;
}

.collection-tile h3 {
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.collection-tile p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Services */
.services {
  background: var(--navy-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0 28px,
      rgba(255, 255, 255, 0.02) 28px 29px
    );
  pointer-events: none;
}

.service-stack {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  position: relative;
}

.service-block {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-block h3 {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
  color: var(--cyan-hot);
}

.service-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

/* Why */
.why-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 1.5rem;
}

.why-list li {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-left: 1rem;
  border-left: 3px solid var(--cyan);
}

.why-list strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
}

.why-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.industries {
  max-width: var(--max);
  margin: 3.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.industry-line {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--navy);
}

/* Contact */
.contact {
  background:
    linear-gradient(135deg, #071428 0%, #0a1a3a 50%, #0c2d52 100%);
  color: var(--paper);
}

.contact-panel {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

.contact-details {
  font-style: normal;
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

.contact-details a {
  color: var(--cyan-hot);
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

.quote-form {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
}

.quote-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
  color: var(--paper);
  font: inherit;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

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

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 1px;
  border-color: transparent;
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--cyan-hot);
}

/* Footer */
.site-footer {
  background: #040b1a;
  color: rgba(255, 255, 255, 0.55);
  padding: 1.75rem var(--space);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  justify-content: space-between;
}

.footer-inner img {
  width: 96px;
  filter: brightness(1.05);
}

.footer-inner a {
  color: var(--cyan);
  font-weight: 600;
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 960px) {
  .nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .why-list {
    grid-template-columns: 1fr 1fr;
  }

  .section-grid,
  .mission-row,
  .service-stack,
  .contact-panel,
  .awards-grid {
    grid-template-columns: 1fr;
  }

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

  .award-card {
    grid-template-columns: 110px 1fr;
  }
}

@media (max-width: 640px) {
  .strip {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .why-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .award-card img {
    max-height: 220px;
    aspect-ratio: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-ghost {
    color: var(--paper);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
