:root {
  color-scheme: dark;
  --ink: #070a0d;
  --ink-soft: #0d1217;
  --paper: #f2eadc;
  --muted: #a6b0b7;
  --line: rgba(255, 255, 255, 0.14);
  --blue: #29d4e8;
  --blue-deep: #0a7197;
  --page-x: clamp(1.25rem, 5vw, 5rem);
  --section-y: clamp(5rem, 10vw, 9rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 88% 0%, rgba(11, 119, 145, 0.12), transparent 26rem),
    var(--ink);
  font-family: "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem var(--page-x);
}

.brand {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 1.7rem;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(41, 212, 232, 0.75);
}

.main-nav {
  display: flex;
  gap: clamp(1rem, 2.8vw, 2.5rem);
}

.main-nav a {
  position: relative;
  color: rgba(244, 246, 247, 0.78);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.95fr) minmax(25rem, 1.05fr);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  max-width: 46rem;
  flex-direction: column;
  justify-content: center;
  padding: 8.5rem 2rem 7rem var(--page-x);
}

.eyebrow {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin: 0 0 1.15rem;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 1px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: "Arial Black", "Franklin Gothic Heavy", "Segoe UI", sans-serif;
  font-weight: 770;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

h1 {
  max-width: 7ch;
  font-size: clamp(4.8rem, 10.3vw, 9.75rem);
  text-transform: uppercase;
}

h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 234, 220, 0.72);
}

.hero-lead {
  margin: clamp(1.7rem, 4vw, 3rem) 0 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.15vw, 1.85rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-text {
  max-width: 33rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-primary {
  color: #031115;
  background: var(--blue);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #8af3ff;
}

.button-ghost {
  border-color: var(--line);
  color: var(--paper);
  background: rgba(0, 0, 0, 0.15);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(41, 212, 232, 0.65);
}

.hero-visual {
  position: relative;
  min-height: 38rem;
}

.hero-photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo-wrap::before,
.hero-photo-wrap::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-photo-wrap::before {
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(7, 10, 13, 0.56) 16%, transparent 48%),
    linear-gradient(0deg, var(--ink) 0%, transparent 28%);
}

.hero-photo-wrap::after {
  background: linear-gradient(120deg, rgba(16, 209, 223, 0.06), transparent 58%);
  mix-blend-mode: screen;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(0.92) contrast(1.05);
}

.hero-sideword {
  position: absolute;
  right: 1.45rem;
  bottom: 6rem;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 1.6rem;
  left: var(--page-x);
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-line {
  width: 3rem;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.section {
  padding: var(--section-y) var(--page-x);
}

.section-heading h2 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  text-transform: uppercase;
}

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

.about::after {
  position: absolute;
  top: 5rem;
  right: -10rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(41, 212, 232, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 90px rgba(12, 133, 156, 0.07) inset;
}

.about .eyebrow,
.social-section .eyebrow {
  color: var(--blue);
}

.about-body {
  max-width: 64rem;
  margin: clamp(3rem, 7vw, 6.5rem) 0;
  padding-left: clamp(0rem, 8vw, 8rem);
}

.about-intro {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-style: italic;
  font-weight: 550;
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.about-copy {
  max-width: 43rem;
  columns: 2;
  column-gap: clamp(2rem, 5vw, 4rem);
  color: var(--muted);
}

.about-copy p {
  margin: 0 0 1.25rem;
  break-inside: avoid;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: stretch;
}

.photo-card {
  position: relative;
  min-height: 28rem;
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.36));
  pointer-events: none;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.photo-card:hover img {
  transform: scale(1.025);
}

.photo-card-tall {
  height: clamp(32rem, 54vw, 48rem);
}

.photo-card-square {
  align-self: end;
  height: clamp(25rem, 39vw, 35rem);
}

.fact-card {
  display: flex;
  min-height: clamp(25rem, 39vw, 35rem);
  flex-direction: column;
  align-self: end;
  justify-content: center;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(15, 53, 61, 0.34), rgba(11, 15, 19, 0.2));
}

.fact-card div {
  display: grid;
  gap: 0.25rem;
  padding: 1.6rem clamp(1rem, 2.5vw, 2.1rem);
  border-bottom: 1px solid var(--line);
}

.fact-card div:last-child {
  border-bottom: 0;
}

.fact-card strong {
  color: var(--paper);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.04em;
}

.fact-card span {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.videos {
  border-top: 1px solid var(--line);
  background: #090d11;
}

.video-heading {
  display: flex;
  gap: 3rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.video-heading > p {
  max-width: 31rem;
  margin: 0 0 0.5rem;
  color: var(--muted);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.5rem) clamp(1rem, 2.5vw, 2rem);
}

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

.video-card:nth-child(even) {
  margin-top: clamp(2rem, 6vw, 6rem);
}

.video-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--paper);
  background: #10161b;
  cursor: pointer;
}

.video-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid transparent;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.58));
  transition: border-color 200ms ease;
}

.video-poster:hover::after,
.video-poster:focus-visible::after {
  border-color: rgba(41, 212, 232, 0.72);
}

.video-poster img,
.video-card > iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-card > iframe {
  display: block;
  aspect-ratio: 16 / 9;
}

.video-poster img {
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.video-poster:hover img,
.video-poster:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.025);
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(3.3rem, 6vw, 4.8rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(4, 9, 12, 0.35);
  font-size: clamp(0.8rem, 1.2vw, 1.05rem);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(4px);
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.video-poster:hover .play-button,
.video-poster:focus-visible .play-button {
  border-color: var(--blue);
  color: #021013;
  background: var(--blue);
}

.duration {
  position: absolute;
  right: 0.8rem;
  bottom: 0.75rem;
  z-index: 2;
  padding: 0.2rem 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.58);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.video-meta {
  display: grid;
  grid-template-columns: minmax(5rem, 0.28fr) 1fr;
  gap: 1rem;
  padding-top: 1.15rem;
}

.video-meta span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.video-meta h3 {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.text-link {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(41, 212, 232, 0.5);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.social-section {
  position: relative;
  background:
    linear-gradient(115deg, rgba(9, 75, 92, 0.24), transparent 42%),
    var(--ink);
}

.social-copy {
  max-width: 48rem;
  margin: 0 auto;
}

.social-section::before {
  position: absolute;
  top: 0;
  right: var(--page-x);
  left: var(--page-x);
  height: 5px;
  content: "";
  background: linear-gradient(
    90deg,
    var(--blue) 0 34%,
    var(--blue-deep) 34% 66%,
    var(--paper) 66% 82%,
    var(--blue) 82% 100%
  );
}

.social-section h2 {
  font-size: clamp(3.5rem, 8vw, 8rem);
  text-transform: uppercase;
}

.social-copy > p {
  max-width: 38rem;
  margin: 0 0 2.4rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.social-links {
  border-top: 1px solid var(--line);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, padding 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  padding-left: 0.6rem;
  color: var(--blue);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--page-x);
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

@media (max-width: 950px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 47rem;
    padding-top: 9rem;
    padding-bottom: 6rem;
  }

  .hero-visual {
    position: absolute;
    inset: 0 0 0 29%;
    min-height: 0;
    opacity: 0.73;
  }

  .hero-photo-wrap::before {
    background:
      linear-gradient(90deg, var(--ink) 0%, rgba(7, 10, 13, 0.76) 28%, transparent 82%),
      linear-gradient(0deg, var(--ink) 0%, transparent 32%),
      linear-gradient(180deg, rgba(7, 10, 13, 0.24), transparent 26%);
  }

  .hero-sideword {
    display: none;
  }

  .about-body {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-left: 0;
  }

  .about-gallery {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .fact-card {
    grid-column: 1 / -1;
    min-height: 0;
    flex-direction: row;
  }

  .fact-card div {
    flex: 1;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .fact-card div:last-child {
    border-right: 0;
  }

  .video-heading {
    display: block;
  }

  .video-heading > p {
    margin-top: 2rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    padding-top: 1.2rem;
  }

  .main-nav {
    gap: 0.9rem;
  }

  .main-nav a {
    font-size: 0.62rem;
  }

  .main-nav a:first-child {
    display: none;
  }

  .brand {
    font-size: 0.7rem;
  }

  .brand-mark {
    width: 1rem;
  }

  .hero-copy {
    min-height: 45rem;
    padding-right: var(--page-x);
  }

  .hero-visual {
    inset: 0 0 0 6%;
    opacity: 0.62;
  }

  .hero-photo {
    object-position: 62% 28%;
  }

  .hero-photo-wrap::before {
    background:
      linear-gradient(90deg, var(--ink) 0%, rgba(7, 10, 13, 0.78) 22%, transparent 100%),
      linear-gradient(0deg, var(--ink) 0%, rgba(7, 10, 13, 0.25) 42%, transparent 70%),
      linear-gradient(180deg, rgba(7, 10, 13, 0.34), transparent 30%);
  }

  .hero-lead {
    margin-top: 2rem;
  }

  .hero-text {
    max-width: 26rem;
  }

  .scroll-cue {
    display: none;
  }

  .about-copy {
    columns: 1;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .photo-card-tall,
  .photo-card-square {
    height: 29rem;
  }

  .photo-card-square {
    display: none;
  }

  .fact-card {
    grid-column: auto;
    flex-direction: column;
  }

  .fact-card div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .video-card:nth-child(even) {
    margin-top: 0;
  }

  .video-meta {
    grid-template-columns: 5.5rem 1fr;
  }

  .social-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .site-footer {
    gap: 0.8rem;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
