@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --ink: #15181D;
  --paper: #F5F2EA;
  --paper-dim: #EBE6D9;
  --steel: #263752;
  --steel-dark: #182338;
  --signal: #E1531E;
  --gold: #C39A2E;
  --line: #C9C1AC;
  --line-dark: #3B4B68;
  --white: #FDFCF8;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  margin: 0;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--steel-dark);
  color: var(--white);
  border-bottom: 4px solid var(--signal);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--white);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  transform: rotate(-2deg);
  flex-shrink: 0;
}

nav.main-nav { display: flex; gap: 28px; }

nav.main-nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C7CEDB;
  transition: color 0.15s ease;
}

nav.main-nav a:hover, nav.main-nav a.active { color: var(--white); }

.nav-toggle { display: none; }

@media (max-width: 760px) {
  nav.main-nav { display: none; }
}

/* ---------- Hero (crate stencil) ---------- */
.hero {
  background: var(--steel);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px dashed var(--line-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 26px);
  pointer-events: none;
}

.hero .wrap { padding-top: 88px; padding-bottom: 88px; position: relative; }

.eyebrow-stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  transform: rotate(-1.5deg);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 92px);
  max-width: 900px;
}

.hero h1 .accent { color: var(--signal); }

.hero p.lede {
  max-width: 560px;
  font-size: 19px;
  color: #D7DCE6;
  margin-top: 22px;
}

.hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary { background: var(--signal); color: var(--white); }
.btn-primary:hover { background: #C74617; }

.btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { border-color: var(--white); }

.btn-dark { border-color: var(--ink); color: var(--ink); }
.btn-dark:hover { background: var(--ink); color: var(--white); }

/* manifest strip under hero */
.manifest-strip {
  background: var(--steel-dark);
  border-top: 1px dashed var(--line-dark);
}

.manifest-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.manifest-strip .stat {
  flex: 1 1 200px;
  padding: 22px 0;
  border-right: 1px dashed var(--line-dark);
  color: #C7CEDB;
}

.manifest-strip .stat:last-child { border-right: none; }

.manifest-strip .stat .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 26px;
  color: var(--gold);
  display: block;
}

.manifest-strip .stat .label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }

.section-tight { padding: 64px 0; }

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 14px;
  display: block;
}

.section-title { font-size: clamp(30px, 4vw, 46px); max-width: 640px; }

.section-intro { max-width: 620px; margin-top: 18px; font-size: 17px; color: #4A4F58; }

.on-dark { background: var(--ink); color: var(--white); }
.on-dark .section-intro { color: #B9BCC2; }

/* Package tiers - manifest cards */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.tier-card {
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 32px 28px;
  background: var(--white);
  position: relative;
}

.tier-card.featured { background: var(--steel); color: var(--white); }

.tier-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--signal);
  text-transform: uppercase;
}

.tier-card.featured .tier-tag { color: var(--gold); }

.tier-card h3 { font-size: 26px; margin-top: 8px; }

.tier-price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 32px;
  margin-top: 18px;
  color: var(--signal);
}

.tier-card.featured .tier-price { color: var(--gold); }

.tier-price small {
  font-size: 13px;
  font-weight: 400;
  color: inherit;
  opacity: 0.7;
}

.tier-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  font-size: 14px;
}

.tier-list li {
  padding: 9px 0;
  border-top: 1px dashed var(--line);
  display: flex;
  gap: 10px;
}

.tier-card.featured .tier-list li { border-top: 1px dashed rgba(255,255,255,0.2); }

.tier-list li::before { content: "▸"; color: var(--signal); flex-shrink: 0; }

.tier-card.featured .tier-list li::before { color: var(--gold); }

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

/* Process / how it works */
.process-list { margin-top: 48px; }

.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px dashed var(--line);
}

.process-item:last-child { border-bottom: 1px dashed var(--line); }

.process-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 32px;
  color: var(--signal);
}

.process-item h3 { font-size: 20px; text-transform: none; font-family: 'Inter'; font-weight: 700; letter-spacing: 0; }

.process-item p { margin: 8px 0 0; color: #4A4F58; max-width: 520px; }

/* Sport gallery - scroll reveal */
.gallery-section { padding: 72px 0 88px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.gallery-card {
  position: relative;
  aspect-ratio: 2 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-dim);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card .placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    repeating-linear-gradient(135deg, rgba(38,55,82,0.06) 0 2px, transparent 2px 22px),
    var(--paper-dim);
  border: 1px dashed var(--line);
}

.gallery-card .placeholder svg { width: 34px; height: 34px; stroke: var(--steel); opacity: 0.55; }

.gallery-card .placeholder .ph-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  opacity: 0.7;
}

.gallery-card.has-img .placeholder { display: none; }
.gallery-card.has-img .tag { display: none; }

.gallery-card .tag {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(0deg, rgba(21,24,29,0.82), transparent);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-card { transition: none; opacity: 1; transform: none; }
}

/* Category grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.cat-card {
  border: 1px solid var(--line);
  padding: 24px 18px;
  background: var(--white);
}

.cat-card .mono { font-size: 12px; color: var(--signal); letter-spacing: 0.08em; }
.cat-card h3 { font-size: 18px; margin-top: 10px; text-transform: none; font-family: 'Inter'; font-weight: 700; }
.cat-card p { font-size: 14px; color: #5A5F68; margin: 8px 0 0; }

@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Trust / compliance strip */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.trust-card { border-left: 3px solid var(--signal); padding-left: 20px; }
.trust-card h3 { font-size: 17px; text-transform: none; font-family: 'Inter'; font-weight: 700; }
.trust-card p { font-size: 14px; color: #4A4F58; margin-top: 8px; }

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

/* Quote / testimonial band */
.quote-band {
  background: var(--paper-dim);
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}

.quote-band blockquote {
  font-family: 'Anton', sans-serif;
  font-size: clamp(24px, 3.4vw, 38px);
  text-transform: none;
  line-height: 1.15;
  max-width: 780px;
  margin: 0;
}

.quote-band cite {
  display: block;
  font-style: normal;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--signal);
  margin-top: 22px;
}

/* CTA band */
.cta-band {
  background: var(--steel-dark);
  color: var(--white);
  text-align: left;
}

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-band h2 { font-size: clamp(28px, 4vw, 42px); max-width: 560px; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: #9CA0A8;
  padding: 56px 0 28px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2A2D33;
}

footer h4 {
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; }
footer a { text-decoration: none; color: #9CA0A8; }
footer a:hover { color: var(--white); }

.footer-brand { font-family: 'Anton', sans-serif; color: var(--white); font-size: 22px; }
.footer-brand + p { max-width: 280px; margin-top: 14px; color: #7D818A; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
  color: #6B6F77;
}

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

/* ---------- Inner pages (policy/legal) ---------- */
.page-hero {
  background: var(--steel);
  color: var(--white);
  padding: 64px 0;
  border-bottom: 4px solid var(--signal);
}

.page-hero .section-label { color: var(--gold); }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); }
.page-hero p { color: #C7CEDB; margin-top: 14px; max-width: 560px; }

.prose { max-width: 760px; padding: 64px 0; }
.prose h2 { font-family: 'Inter'; font-weight: 700; text-transform: none; font-size: 22px; margin-top: 40px; margin-bottom: 12px; letter-spacing: 0; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: #383C43; font-size: 15.5px; line-height: 1.7; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose .updated { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: #6B6F77; margin-bottom: 8px; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
  align-items: start;
}

.info-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 28px;
  margin-bottom: 16px;
}

.info-card .mono { font-size: 12px; color: var(--signal); letter-spacing: 0.08em; }
.info-card p { margin: 8px 0 0; font-size: 15px; }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px 14px;
  font-family: 'Inter';
  font-size: 15px;
  color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 120px; }

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