:root {
  --bg: #0b0b0d;
  --bg-soft: #11161f;
  --bg-elevated: #161d28;
  --surface: rgba(24, 30, 40, 0.92);
  --surface-strong: #1c2430;
  --surface-muted: #24384a;
  --surface-teal: #355a74;
  --surface-teal-dark: #244253;
  --text: #f2f2f2;
  --text-soft: #c6ccd4;
  --text-muted: #98a1ab;
  --border: rgba(169, 162, 154, 0.2);
  --border-strong: rgba(183, 165, 123, 0.32);
  --accent: #ffb319;
  --accent-soft: #f39a1e;
  --danger: #c75a45;
  --success: #5a8f5b;
  --shadow-lg: 0 26px 60px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 16px 38px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(243, 154, 30, 0.14), transparent 26%),
    radial-gradient(circle at top left, rgba(53, 90, 116, 0.22), transparent 28%),
    linear-gradient(180deg, #070809 0%, #0d1015 45%, #121721 100%);
  line-height: 1.65;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

.site-shell {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  background: rgba(11, 11, 13, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.brand-mark { white-space: nowrap; }

.brand-mark,
.brand-mark:hover {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 0 0 6px rgba(255, 179, 25, 0.12);
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar { display: none; }

.nav-links a {
  color: var(--text-soft);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
  background: rgba(53, 90, 116, 0.34);
  text-decoration: none;
  transform: translateY(-1px);
}

.hero-banner,
.page-card,
.info-card,
.shot-frame,
.site-footer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.hero-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 4rem);
  min-height: min(72vh, 36rem);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(255, 179, 25, 0.22), transparent 24%),
    radial-gradient(circle at bottom left, rgba(53, 90, 116, 0.28), transparent 28%),
    linear-gradient(135deg, #0b0b0d 0%, #141a24 52%, #22384b 100%);
  box-shadow: var(--shadow-lg);
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: auto -8% -32% auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 154, 30, 0.26), transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.eyebrow,
.pill,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.eyebrow {
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.08);
  color: #fbe1a6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pill,
.badge {
  background: rgba(53, 90, 116, 0.36);
  color: var(--text);
}

h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.2rem, 4vw, 4.4rem); line-height: 1.02; margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 2vw, 2.35rem); line-height: 1.15; margin-bottom: 0.85rem; }
h3 { font-size: 1.12rem; line-height: 1.3; margin-bottom: 0.6rem; }
p, li { color: var(--text-soft); }
.lead { font-size: 1.08rem; max-width: 44rem; }
.section-copy { max-width: 44rem; }

.actions,
.meta-row,
.card-grid,
.shot-carousel,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.actions { margin-top: 1.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-soft)); color: #201508; }
.btn-secondary { background: rgba(53, 90, 116, 0.34); color: #fff; border-color: rgba(169, 162, 154, 0.24); }
.btn-danger { background: rgba(199, 90, 69, 0.18); color: #ffd8cf; border-color: rgba(199, 90, 69, 0.28); }

.section-block { margin-top: 1.5rem; }
.section-header { margin-bottom: 1rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.page-card,
.shot-frame,
.site-footer { padding: 1.4rem; }

.page-card { margin-top: 1.5rem; }
.page-card + .page-card { margin-top: 1rem; }
.prose ul { padding-left: 1.1rem; }
.prose li + li { margin-top: 0.35rem; }

.shot-carousel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  background: #0c0f13;
}

.shot-frame figcaption {
  margin-top: 0.85rem;
  color: var(--text-soft);
}

.site-footer {
  margin-top: 1.5rem;
  background: rgba(18, 23, 33, 0.94);
}

.footer-links { justify-content: space-between; align-items: center; }
.footer-links nav { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.footer-links a { color: var(--text-soft); }
.footer-note { color: var(--text-muted); font-size: 0.95rem; }
.muted { color: var(--text-muted); }
.accent { color: var(--accent); }

@media (max-width: 960px) {
  .card-grid,
  .shot-carousel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-shell { width: min(calc(100% - 1rem), var(--container)); padding-bottom: 2rem; }
  .site-nav { border-radius: 24px; grid-template-columns: auto minmax(0, 1fr); }
  .nav-links { justify-content: flex-start; gap: 0.35rem; }
  .nav-links a { padding: 0.55rem 0.7rem; font-size: 0.83rem; }
  .card-grid,
  .shot-carousel { grid-template-columns: 1fr; }
  .actions,
  .footer-links { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .hero-banner { min-height: auto; }
}
