/* =========================================================
   Midfield Sports Media — styles
   Bold & energetic: deep navy base, orange/amber energy,
   turf-green accent, condensed athletic display type.
   ========================================================= */

:root {
  --bg: #0B0F1A;
  --bg-2: #111827;
  --card: #161E30;
  --card-2: #1B2438;
  --line: rgba(255, 255, 255, 0.08);

  --brand: #FF6A13;      /* orange energy */
  --brand-2: #FFB800;    /* amber */
  --turf: #17C98B;       /* turf green accent */

  --text: #F5F7FA;
  --muted: #A7B2C4;
  --muted-2: #7E8AA0;

  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1160px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--brand-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.sr-only,
.skip-link {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  width: auto; height: auto; clip: auto;
  background: var(--brand); color: #0B0F1A; padding: 10px 16px; border-radius: 8px;
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 1rem;
  padding: 13px 22px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-sm { padding: 9px 16px; font-size: .92rem; }
.btn-lg { padding: 16px 30px; font-size: 1.08rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #16110A;
  box-shadow: 0 10px 26px rgba(255, 106, 19, 0.35);
}
.btn-primary:hover { box-shadow: 0 16px 34px rgba(255, 106, 19, 0.5); color: #16110A; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); color: var(--text); }

.btn-outline {
  background: transparent; color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand-2); }

.yt-icon { color: #FF3B30; font-size: .8em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 15, 26, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { background: rgba(11, 15, 26, 0.94); box-shadow: 0 8px 30px rgba(0,0,0,.4); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand-mark svg { display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-size: 1.32rem; letter-spacing: 1.5px; color: var(--text); }
.brand-sub { font-size: .62rem; letter-spacing: 3px; color: var(--brand-2); font-weight: 700; margin-top: 3px; }

.nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { color: var(--muted); font-weight: 600; font-size: .96rem; }
.nav-menu a:hover { color: var(--text); text-decoration: none; }
.nav-menu .btn { color: #16110A; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle .bar { width: 26px; height: 3px; background: var(--text); border-radius: 3px; transition: transform .2s, opacity .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 96px 0 84px; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1000px 520px at 78% -8%, rgba(255, 106, 19, 0.28), transparent 60%),
    radial-gradient(760px 460px at 4% 14%, rgba(23, 201, 139, 0.16), transparent 60%),
    linear-gradient(180deg, #0B0F1A 0%, #0D1424 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 46px);
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 2px; font-size: .78rem; font-weight: 700;
  color: var(--muted); margin: 0 0 18px;
}
.eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--turf); box-shadow: 0 0 0 4px rgba(23,201,139,.2); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 8vw, 6rem);
  line-height: 0.96; letter-spacing: 1px;
  margin: 0 0 22px; text-transform: uppercase;
}
.hero-title .accent {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lede { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--muted); max-width: 640px; margin: 0 0 32px; }
.hero-lede strong { color: var(--text); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 40px; list-style: none; margin: 0; padding: 30px 0 0; border-top: 1px solid var(--line); }
.hero-stats li { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--brand-2); }
.stat-label { font-size: .86rem; color: var(--muted-2); margin-top: 6px; max-width: 130px; }

/* ---------- Sections ---------- */
.section { padding: 82px 0; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-label {
  text-transform: uppercase; letter-spacing: 3px; font-size: .78rem; font-weight: 800;
  color: var(--brand); margin: 0 0 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.02; letter-spacing: .5px;
  text-transform: uppercase; margin: 0 0 16px;
}
.section-intro { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- Cards / services ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(255,106,19,.5); box-shadow: var(--shadow); }
.card-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.6rem; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(255,106,19,.18), rgba(255,184,0,.12));
  border: 1px solid rgba(255,184,0,.25);
}
.card h3 { font-size: 1.2rem; margin: 0 0 8px; }
.card p { color: var(--muted); margin: 0; }

/* ---------- Tiers / packages ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.tier {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px; position: relative;
}
.tier-featured {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border-color: rgba(255,106,19,.55);
  box-shadow: 0 24px 50px rgba(0,0,0,.5);
}
.tier-badge {
  position: absolute; top: -13px; left: 28px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #16110A;
  font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 5px 14px; border-radius: 999px; margin: 0;
}
.tier-name { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: .5px; margin: 0 0 8px; text-transform: uppercase; }
.tier-desc { color: var(--muted); margin: 0 0 18px; }
.tier-list { list-style: none; padding: 0; margin: 0 0 22px; }
.tier-list li { padding: 8px 0 8px 28px; position: relative; color: var(--text); border-bottom: 1px solid var(--line); }
.tier-list li:last-child { border-bottom: 0; }
.tier-list li::before { content: "✓"; position: absolute; left: 0; color: var(--turf); font-weight: 800; }
.tier-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--brand-2); margin: 0 0 18px; letter-spacing: .5px; }

/* ---------- Work / videos ---------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-card {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius);
  display: grid; place-items: center; overflow: hidden;
  border: 1px solid var(--line); color: var(--text);
  background: linear-gradient(135deg, #1c2740, #101726);
  transition: transform .18s ease, box-shadow .18s ease;
}
.video-card-2 { background: linear-gradient(135deg, #2a1a12, #101726); }
.video-card-3 { background: linear-gradient(135deg, #10231d, #101726); }
.video-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(120deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 40px);
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); text-decoration: none; }
.video-card .play {
  position: relative; z-index: 1;
  width: 68px; height: 68px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.5rem; color: #16110A;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 26px rgba(255,106,19,.4); padding-left: 5px;
}
.video-card-label {
  position: absolute; bottom: 16px; left: 18px; z-index: 1;
  font-weight: 700; letter-spacing: .5px;
  background: rgba(11,15,26,.55); padding: 6px 12px; border-radius: 999px; font-size: .9rem;
}
.video-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.work-cta { text-align: center; margin-top: 42px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.about-copy .section-title { text-align: left; }
.about-copy p { color: var(--muted); font-size: 1.06rem; }
.about-copy .btn { margin-top: 10px; }
.about-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.about-points li {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px;
}
.point-num { font-family: var(--font-display); font-size: 1.7rem; color: var(--brand); line-height: 1; }
.about-points h3 { margin: 0 0 4px; font-size: 1.1rem; }
.about-points p { margin: 0; color: var(--muted); }

/* ---------- Coverage ---------- */
.counties { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.county {
  border-radius: var(--radius); padding: 44px 24px; text-align: center;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  transition: transform .18s ease, border-color .18s ease;
}
.county:hover { transform: translateY(-4px); border-color: rgba(23,201,139,.5); }
.county-name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .5px; text-transform: uppercase; }

/* ---------- Contact CTA ---------- */
.section-cta {
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(255,106,19,.22), transparent 62%),
    var(--bg-2);
}
.contact-inner { max-width: 720px; margin: 0 auto; }
.contact-actions { margin: 28px 0 34px; }
.contact-methods {
  list-style: none; padding: 0; margin: 0 auto 26px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
}
.contact-methods li {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 26px; min-width: 200px;
}
.cm-label { display: block; text-transform: uppercase; letter-spacing: 2px; font-size: .7rem; color: var(--muted-2); margin-bottom: 4px; }
.contact-methods a { font-size: 1.06rem; font-weight: 700; color: var(--text); }
.contact-methods a:hover { color: var(--brand-2); }
.booking-note { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #070A12; border-top: 1px solid var(--line); padding: 54px 0 26px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 1.5px; display: block; }
.footer-brand .brand-sub { font-size: .66rem; letter-spacing: 3px; color: var(--brand-2); font-weight: 700; }
.footer-tag { color: var(--muted); margin: 12px 0 0; max-width: 260px; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-contact a { color: var(--muted); font-weight: 500; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px;
  color: var(--muted-2); font-size: .86rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cards, .tiers, .video-grid, .counties { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 72px; right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(11, 15, 26, 0.98); border-bottom: 1px solid var(--line);
    padding: 14px 20px 22px; transform: translateY(-140%); transition: transform .28s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 12px 6px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-menu .btn { margin-top: 8px; text-align: center; }

  .hero { padding: 64px 0 60px; }
  .hero-stats { gap: 26px; }
  .stat-num { font-size: 2.1rem; }
  .section { padding: 60px 0; }
  .cards, .tiers, .video-grid, .counties { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
