/* Self-hosted fonts (SIL Open Font License, see assets/fonts/OFL.txt) */
@font-face { font-family: 'Anton'; src: url('../fonts/Anton-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Barlow Condensed'; src: url('../fonts/BarlowCondensed-SemiBold.ttf') format('truetype'); font-weight: 500 600; font-display: swap; }
@font-face { font-family: 'Barlow Condensed'; src: url('../fonts/BarlowCondensed-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Barlow'; src: url('../fonts/Barlow-Regular.ttf') format('truetype'); font-weight: 400 500; font-display: swap; }
@font-face { font-family: 'Barlow'; src: url('../fonts/Barlow-SemiBold.ttf') format('truetype'); font-weight: 600 700; font-display: swap; }

/* Known Good Media: brand tokens */
:root {
  --black: #0B0D10;
  --panel: #14171C;
  --line: #262A31;
  --blue: #2F7BFF;
  --blue-dark: #1F5FE0;
  --white: #FFFFFF;
  --muted: #B4BAC4;
  --display: 'Anton', Impact, sans-serif;
  --label: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body: 'Barlow', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
}
a { color: var(--blue); }
a:hover { color: var(--white); }
img { max-width: 100%; height: auto; display: block; }
.accent { color: var(--blue); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(11, 13, 16, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav nav { display: flex; align-items: center; gap: 24px; }
.nav nav a {
  font-family: var(--label); font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; color: var(--white);
}
.nav nav a:not(.btn):hover { color: var(--blue); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 28px;
  font-family: var(--label); font-weight: 700; font-size: 18px;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  background: var(--blue); color: var(--white) !important;
  border: 2px solid var(--blue); border-radius: 6px;
}
.btn:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: var(--blue); }
.btn-small { min-height: 44px; padding: 0 18px; font-size: 16px; }

/* Hero */
.hero {
  text-align: center;
  padding: clamp(64px, 12vw, 140px) 16px clamp(56px, 9vw, 110px);
}
.eyebrow {
  margin: 0 0 12px;
  font-family: var(--label); font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted);
}
.hero-title {
  margin: 0;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(72px, 21vw, 260px); line-height: 0.9; letter-spacing: 0.02em;
}
.hero-sub { max-width: 620px; margin: 28px auto 0; font-size: 19px; color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }

/* Band */
.band {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.band-item { background: var(--black); padding: 28px clamp(16px, 3vw, 32px); display: flex; flex-direction: column; gap: 6px; }
.band-item strong { font-family: var(--label); font-size: 22px; letter-spacing: 0.06em; text-transform: uppercase; }
.band-item span { color: var(--muted); font-size: 16px; }

/* Sections */
.section { padding: clamp(64px, 9vw, 110px) clamp(16px, 4vw, 48px); max-width: 1280px; margin: 0 auto; }
.section-alt { max-width: none; background: var(--panel); }
.section-alt > * { max-width: 1184px; margin-left: auto !important; margin-right: auto !important; }
.section-title {
  margin: 0 auto 12px; text-align: center;
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(40px, 6vw, 72px); line-height: 1; letter-spacing: 0.02em;
}
.section-sub { text-align: center; color: var(--muted); margin: 0 auto 40px; max-width: 560px; }

/* Packages */
.packages { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-top: 44px; }
.pkg {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 28px 24px; background: var(--panel);
  border: 1px solid var(--line); border-radius: 12px;
}
.pkg-featured { border: 2px solid var(--blue); }
.pkg-tag {
  position: absolute; top: -14px; left: 24px; margin: 0; padding: 2px 12px;
  background: var(--blue); border-radius: 4px;
  font-family: var(--label); font-weight: 700; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
}
.pkg h3 { margin: 0; font-family: var(--display); font-weight: 400; font-size: 34px; text-transform: uppercase; letter-spacing: 0.02em; }
.price { margin: 0; font-family: var(--label); font-weight: 700; font-size: 30px; color: var(--blue); }
.pkg-desc { margin: 0; color: var(--muted); }
.pkg ul { margin: 6px 0 18px; padding-left: 20px; flex-grow: 1; }
.pkg li { margin-bottom: 6px; }
.pkg .btn { width: 100%; min-height: 52px; white-space: nowrap; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 44px auto 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.steps li { text-align: center; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border: 3px solid var(--blue); border-radius: 50%;
  font-family: var(--display); font-size: 30px;
}
.steps h3 { margin: 16px 0 6px; font-family: var(--label); font-size: 26px; letter-spacing: 0.06em; text-transform: uppercase; }
.steps p { margin: 0; color: var(--muted); }

/* Work */
.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.work-card {
  aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; padding: 16px; text-align: center;
  background: var(--panel); border: 1px dashed var(--line); border-radius: 12px;
  color: var(--muted); font-family: var(--label); letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: border-color .2s, color .2s;
}
.work-card:not(.work-video) { aspect-ratio: auto; min-height: 220px; }
.work-video { min-width: 0; max-width: 100%; display: block; margin: 0; padding: 0; aspect-ratio: auto; border-style: solid; overflow: hidden; }
.video-frame { position: relative; overflow: hidden; width: 100%; height: 0; padding-top: 56.25%; background: #000; }
.video-frame iframe { position: absolute; top: 0; left: 0; width: 1px; min-width: 100%; max-width: 100%; height: 100%; border: 0; }
.work-video figcaption { padding: 12px 14px; font-size: 14px; }
a.work-card:hover { border-color: var(--blue); color: var(--white, #fff); }

/* Footer */
.footer {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 48px 16px; border-top: 1px solid var(--line); color: var(--muted);
  font-family: var(--label); letter-spacing: 0.08em; text-transform: uppercase;
}
.footer p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.footer-links a { text-decoration: none; }
.footer-small { font-size: 13px; opacity: .7; }
.btn { white-space: nowrap; }

/* Responsive */
@media (max-width: 1000px) {
  .packages { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
  .band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .nav nav a:not(.btn) { display: none; }
  .nav nav { gap: 10px; }
  .nav .btn-small { min-height: 40px; padding: 0 12px; font-size: 14px; letter-spacing: 0.08em; }
  .nav-logo img { width: 110px; }
  .book .btn { width: 100%; max-width: 300px; }
  .eyebrow { letter-spacing: 0.2em; font-size: 13px; }
  .packages, .steps, .work-grid, .band { grid-template-columns: minmax(0, 1fr); }
}
