:root {
  --black: #000000;
  --charcoal: #030303;
  --charcoal-2: #080808;
  --orange: #ff6a00;        /* Fox 2.5 orange */
  --orange-light: #ff8a33;
  --cream: #f5f3f0;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, 0.09);
  --radius: 6px;
  --wrap: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--cream);
  background: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .brand-text, .display { font-family: "Anton", "Barlow Condensed", sans-serif; font-weight: 400; letter-spacing: 0.005em; text-transform: uppercase; }
.eyebrow, .btn, .nav a, .sec-num, .ticker, .scroll-cue, .field label { font-family: "Barlow Condensed", sans-serif; }

h1 { font-size: clamp(3.2rem, 9vw, 6.6rem); line-height: 0.92; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 0.98; }
h3 { font-family: "Barlow Condensed", sans-serif; font-size: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 780px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.82rem; font-weight: 600; color: var(--orange-light);
  margin-bottom: 0.5rem;
}
.eyebrow .tick { width: 8px; height: 8px; background: var(--orange); display: inline-block; box-shadow: 0 0 12px var(--orange); }
.center { text-align: center; }
.section-lead { color: var(--muted); max-width: 640px; font-size: 1.05rem; }
.section-lead.center { margin-left: auto; margin-right: auto; }

/* HAZARD STRIPE (reusable accent) */
.stripe {
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--orange) 0 18px, #000000 18px 36px);
}

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 5px;
  background: var(--orange); color: #000000; font-family: "Anton", sans-serif; font-size: 1.15rem;
  box-shadow: 0 0 20px rgba(255,106,0,0.35);
}
.brand-text { font-size: 1.5rem; }
.brand-text em { color: var(--orange); font-style: normal; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 1.05rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.82; transition: opacity 0.2s, color 0.2s; }
.nav a:hover { opacity: 1; color: var(--orange-light); }
.nav-cta { background: var(--orange); color: #000000 !important; padding: 9px 20px; border-radius: 5px; opacity: 1 !important; transition: transform 0.15s, box-shadow 0.2s; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 18px rgba(255,106,0,0.5); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); transition: 0.2s; }

/* HERO */
.hero { position: relative; min-height: 94vh; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 72% 22%, rgba(255,106,0,0.18), transparent 52%), linear-gradient(120deg, #000000, #070707), url("assets/img/hero.jpg") center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.74) 55%, rgba(0,0,0,0.99) 100%);
}
.hero-corner {
  position: absolute; top: 22px; right: 24px; z-index: 3;
  font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 0.78rem; color: var(--muted); border: 1px solid var(--line); padding: 6px 12px; border-radius: 4px;
}
.hero-inner { position: relative; z-index: 2; padding: 90px 24px; max-width: 900px; }
.hero h1 { margin-top: 0.4rem; }
.hero h1 .hl { color: var(--orange); display: inline-block; position: relative; }
.hero-sub { font-size: 1.22rem; color: #ded9d2; max-width: 600px; margin-top: 1.6rem; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.4rem; }
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.72rem; color: var(--muted);
  padding-bottom: 26px;
}
.scroll-cue::after {
  content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 18px; background: var(--orange); animation: cue 1.6s infinite;
}
@keyframes cue { 0%,100% { opacity: 0.3; height: 10px; } 50% { opacity: 1; height: 20px; } }

/* TRADES TICKER */
.ticker { background: var(--orange); color: #000000; overflow: hidden; white-space: nowrap; border-bottom: 1px solid #000000; }
.ticker-track { display: inline-flex; align-items: center; gap: 26px; padding: 13px 0; animation: scroll 34s linear infinite; }
.ticker-track span { font-family: "Barlow Condensed", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.15rem; }
.ticker-track .dot { opacity: 0.55; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* BUTTONS */
.btn {
  display: inline-block; padding: 15px 28px; border-radius: 5px;
  font-size: 1.08rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  cursor: pointer; border: 0; transition: transform 0.14s ease, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #000000; }
.btn-primary:hover { box-shadow: 0 8px 30px rgba(255,106,0,0.4); }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--cream); border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--orange); }
.btn-block { width: 100%; margin-top: 6px; }

/* SECTIONS */
.section { padding: 104px 0; position: relative; }
.sec-head { display: flex; align-items: flex-start; gap: 22px; margin-bottom: 1rem; }
.sec-head.center-head { justify-content: center; text-align: left; }
.sec-num {
  font-family: "Anton", sans-serif; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 0.8;
  color: transparent; -webkit-text-stroke: 1.5px var(--orange); text-stroke: 1.5px var(--orange);
  flex-shrink: 0;
}
.sec-num.inline { display: block; margin-bottom: 0.6rem; -webkit-text-stroke: 1.5px rgba(255,106,0,0.7); }
.section-lead { margin-bottom: 3.4rem; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2rem; }
.card {
  position: relative; background: var(--charcoal-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px 30px; overflow: hidden; transition: border-color 0.25s, transform 0.2s, background 0.25s;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--orange); transition: width 0.3s ease; }
.card:hover { border-color: rgba(255,106,0,0.4); transform: translateY(-5px); background: #0c0c0c; }
.card:hover::before { width: 100%; }
.card.feature { border-color: rgba(255,106,0,0.5); background: linear-gradient(165deg, #1a1109, var(--charcoal-2)); }
.card.feature::before { width: 100%; }
.card-icon { font-size: 1.9rem; margin-bottom: 16px; filter: grayscale(0.1); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.98rem; }

/* SPLIT SECTIONS */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-copy p { color: var(--muted); margin-top: 1rem; }
.split-copy h2 { margin-top: 0.2rem; }
.split-media {
  position: relative; min-height: 460px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, #140f08, #070707);
  border: 1px solid var(--line); display: grid; place-items: center;
}
.split-media::after {
  content: ""; position: absolute; top: 14px; left: 14px; right: 14px; bottom: 14px;
  border: 1px solid rgba(255,106,0,0.25); border-radius: 4px; pointer-events: none;
}
.split-media.alt { background: linear-gradient(135deg, #141414, #070707); }
.spotlight { background: var(--charcoal); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.check-list { list-style: none; margin: 1.6rem 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 32px; color: #ded9d2; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px;
  background: var(--orange); clip-path: polygon(14% 44%, 0 58%, 40% 100%, 100% 16%, 86% 4%, 40% 72%);
}

/* GALLERY */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 1rem; }
.tile {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, #120d07, #070707); border: 1px solid var(--line);
  display: grid; place-items: center; transition: transform 0.25s, border-color 0.25s;
}
.tile:hover { transform: scale(1.02); border-color: rgba(255,106,0,0.4); }
.tile figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
}

/* ABOUT */
.about { background: var(--charcoal); border-top: 1px solid var(--line); }
.stats { display: flex; gap: 40px; margin: 2rem 0; flex-wrap: wrap; }
.stat strong { display: block; font-family: "Anton", sans-serif; font-size: 2.2rem; color: var(--orange); line-height: 1; }
.stat span { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.fineprint { font-size: 0.9rem; color: var(--muted); }
.fineprint em { color: var(--orange-light); font-style: normal; }

/* QUOTE FORM */
.quote { background: linear-gradient(180deg, var(--black), #050505); }
.quote-form { margin-top: 2.6rem; display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--charcoal-2); border: 1px solid var(--line); border-radius: 5px;
  padding: 14px 15px; color: var(--cream); font-family: inherit; font-size: 1rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,106,0,0.15); }
.field textarea { resize: vertical; }
.form-status { text-align: center; font-size: 0.95rem; min-height: 1.2em; }
.form-status.ok { color: #7ac77a; }
.form-status.err { color: #e08a8a; }

/* IMG PLACEHOLDER NOTES */
.img-note {
  position: relative; z-index: 1;
  color: rgba(245,243,240,0.5); font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.88rem; padding: 9px 14px;
  border: 1px dashed rgba(245,243,240,0.22); border-radius: 5px;
}

/* FOOTER */
.site-footer { background: #050505; border-top: 1px solid var(--line); padding-top: 56px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; }
.footer-brand { display: flex; gap: 14px; align-items: flex-start; max-width: 420px; }
.footer-brand strong { font-family: "Anton", sans-serif; font-size: 1.35rem; text-transform: uppercase; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin-top: 6px; line-height: 1.5; }
.footer-contact { display: flex; flex-direction: column; gap: 11px; }
.footer-contact a { color: #ded9d2; transition: color 0.2s; font-size: 1.02rem; }
.footer-contact a:hover { color: var(--orange); }
.footer-legal { border-top: 1px solid var(--line); padding-top: 22px; padding-bottom: 30px; }
.footer-legal p { color: var(--muted); font-size: 0.85rem; }

/* SCROLL REVEAL */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .ticker-track, .scroll-cue::after { animation: none; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cards, .gallery { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-media { min-height: 320px; order: -1; }
}
@media (max-width: 680px) {
  .nav { position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0; background: var(--charcoal-2); border-bottom: 1px solid var(--line); padding: 8px 0; transform: translateY(-150%); transition: transform 0.28s; }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: 15px 24px; }
  .nav-cta { border-radius: 0; }
  .nav-toggle { display: flex; }
  .cards, .gallery { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .sec-head { gap: 16px; }
  .hero { min-height: 88vh; }
}
