:root {
  color-scheme: light dark;
  --bg: #0f1013;
  --fg: #f5f5f0;
  --muted: rgba(245, 245, 240, 0.6);
  --accent: #7af0c4;
  --border: rgba(255, 255, 255, 0.12);
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: inherit;
  line-height: 1.5;
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
}

img,
iframe {
  max-width: 100%;
  border: 0;
  display: block;
}

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

a:hover,
a:focus-visible {
  color: var(--accent);
}

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.logo-stack {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.logo-stack .sub-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  text-transform: lowercase;
  font-weight: 500;
}

.site-nav a[aria-disabled='true'] {
  opacity: 0.4;
  pointer-events: none;
}

.hero {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}

.hero .lede {
  max-width: 60ch;
  font-size: 1.125rem;
  color: var(--muted);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.media-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.media-frame {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  min-height: 220px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.25));
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-frame {
  aspect-ratio: 16 / 9;
  min-height: auto;
}

.media-card figcaption {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact {
  padding: 3rem 0;
  max-width: 580px;
}

.contact h2 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}

.contact p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 600;
}

.cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.5);
}

@media (max-width: 640px) {
  body {
    padding-inline: 1.25rem;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }
}
