/* ========================================================================
   PSM MULTI-PAGE WEBSITE - SHARED CSS STYLESHEET
   Process Sports Management (PSM) - Luxury Sports Agency
   ======================================================================== */

/* ========================================================================
   1. RESET & VARIABLES
   ======================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --cream:        #F4EFE6;
  --cream2:       #EDE6D9;
  --ink:          #0D0D0D;
  --ink2:         #1A1A1A;
  --maroon:       #8B1A1A;
  --red:          #A51C1C;
  --red-bright:   #C62828;
  --navy:         #0C1F3D;
  --sand:         #C8B89A;
  --muted:        rgba(13, 13, 13, 0.45);

  /* Fonts */
  --f-cond:       'Barlow Condensed', sans-serif;
  --f-serif:      'Lora', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-serif);
  overflow-x: hidden;
  cursor: none;
}

/* ========================================================================
   2. CUSTOM CURSOR
   ======================================================================== */

#dot,
#ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

#dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  transition: transform 0.12s;
}

#ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(165, 28, 28, 0.35);
  transition: all 0.2s ease;
}

/* ========================================================================
   3. NAVIGATION
   ======================================================================== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  transition: all 0.35s;
  background: transparent;
}

nav.stuck {
  background: rgba(13, 13, 13, 0.94);
  backdrop-filter: blur(16px);
  padding: 16px 56px;
  border-bottom: 1px solid rgba(165, 28, 28, 0.15);
}

nav.nav-solid {
  background: rgba(13, 13, 13, 0.94);
  backdrop-filter: blur(16px);
  padding: 16px 56px;
  border-bottom: 1px solid rgba(165, 28, 28, 0.15);
}

nav.nav-solid .nav-logo {
  height: 38px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 48px;
  width: auto;
  transition: height 0.3s;
}

nav.stuck .nav-logo {
  height: 38px;
}

.nav-center {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-center a {
  font-family: var(--f-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}

.nav-center a:hover,
.nav-center a.active {
  color: #fff;
}

.nav-right {
  font-family: var(--f-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 11px 26px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: none;
  display: inline-block;
  border: none;
}

.nav-right:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 301;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 299;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(8px);
  flex-direction: column;
  padding: 100px 28px 40px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: var(--f-cond);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--red);
}

/* ========================================================================
   4. PAGE HERO SYSTEM (Inner Pages)
   ======================================================================== */

.page-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(12, 31, 61, 0.8), rgba(139, 26, 26, 0.3));
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.4) 40%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 60px 28px;
}

.page-hero-title {
  font-family: var(--f-cond);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero-title em {
  font-style: italic;
  color: var(--red);
}

.page-hero-subtitle {
  font-family: var(--f-cond);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================================================
   5. HOME HERO
   ======================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  animation: fadeIn 0.6s ease;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.22) saturate(0.5);
  transform: scale(1.06);
  animation: slowZoom 14s ease-out forwards;
}

@keyframes slowZoom {
  to {
    transform: scale(1);
  }
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.4) 40%, transparent 70%);
}

.hero-watermark {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 500px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px 80px;
  max-width: 900px;
}

.hero-issue {
  font-family: var(--f-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-issue::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.hero-hl {
  font-family: var(--f-cond);
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}

.hero-hl span {
  display: block;
  font-style: italic;
  color: var(--red);
  font-size: clamp(72px, 9vw, 140px);
}

.hero-sub {
  font-family: var(--f-cond);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}

.btn-red {
  font-family: var(--f-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 14px 34px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  cursor: none;
  border: none;
}

.btn-red:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
}

.btn-ghost-wh {
  font-family: var(--f-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  cursor: none;
}

.btn-ghost-wh:hover {
  color: #fff;
}

/* ========================================================================
   6. HERO BOTTOM STRIP
   ======================================================================== */

.hero-bottom {
  position: relative;
  z-index: 2;
  background: var(--ink);
  display: flex;
  align-items: center;
  padding: 0 56px;
  height: 64px;
  gap: 60px;
  border-top: 1px solid rgba(165, 28, 28, 0.2);
  opacity: 0;
  animation: fadeIn 1s 0.9s forwards;
  flex-wrap: wrap;
}

.hb-item {
  font-family: var(--f-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.hb-item .sep {
  color: var(--red);
}

/* ========================================================================
   7. RED BAND MARQUEE
   ======================================================================== */

.red-band {
  background: var(--red);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}

.red-track {
  display: inline-flex;
  animation: marqueeRed 22s linear infinite;
}

.rt-item {
  font-family: var(--f-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 48px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.rt-item::after {
  content: '×';
  opacity: 0.4;
}

@keyframes marqueeRed {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========================================================================
   8. SPORTS FEATURE SECTION
   ======================================================================== */

.sports-feature {
  padding: 120px 56px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.sf-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 8px;
}

.sf-title {
  font-family: var(--f-cond);
  font-size: clamp(52px, 5vw, 80px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.sf-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--muted);
  max-width: 260px;
}

.sf-divider2 {
  width: 48px;
  height: 2px;
  background: var(--red);
  margin: 40px 0;
}

.sf-stat-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sf-stat-num {
  font-family: var(--f-cond);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
}

.sf-stat-num sup {
  font-size: 22px;
  vertical-align: super;
  color: var(--red);
}

.sf-stat-lbl {
  font-family: var(--f-cond);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* Sport Panels Grid */
.sf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}

.sp-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--cream2);
}

.sp-card:first-child {
  height: 400px;
}

.sp-card:not(:first-child) {
  height: 400px;
}

.sp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.5s;
  filter: saturate(0.65) contrast(1.1) brightness(0.88);
}

.sp-card:hover img {
  transform: scale(1.05);
  filter: saturate(0.9) contrast(1.05) brightness(0.9);
}

.sp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.82) 0%, transparent 55%);
}

.sp-card:first-child .sp-overlay {
  background: linear-gradient(to top, rgba(13, 13, 13, 0.75) 0%, rgba(13, 13, 13, 0.1) 60%, transparent 100%);
}

.sp-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 32px;
}

.sp-sport {
  font-family: var(--f-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.sp-name {
  font-family: var(--f-cond);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 8px;
}

.sp-card:first-child .sp-name {
  font-size: clamp(40px, 4vw, 60px);
}

.sp-detail {
  font-family: var(--f-cond);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  max-width: 360px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.35s;
  opacity: 0;
}

.sp-card:hover .sp-detail {
  max-height: 60px;
  opacity: 1;
}

.sp-corner-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--f-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(13, 13, 13, 0.6);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================================================
   9. PULL QUOTE SECTION
   ======================================================================== */

.feature-quote {
  background: var(--ink);
  padding: 110px 56px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}

.fq-left {
  position: relative;
}

.fq-open {
  font-family: var(--f-cond);
  font-size: 180px;
  font-weight: 900;
  color: rgba(165, 28, 28, 0.12);
  line-height: 0.7;
  position: absolute;
  top: -20px;
  left: -12px;
}

.fq-quote {
  font-family: var(--f-cond);
  font-size: clamp(38px, 3.5vw, 58px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  color: #fff;
  position: relative;
  z-index: 1;
}

.fq-quote em {
  color: var(--red);
  font-style: normal;
}

.fq-source {
  font-family: var(--f-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fq-source::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--red);
}

.fq-right {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.fq-num-row {
  display: flex;
  align-items: stretch;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.fq-num {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  padding: 32px 28px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  cursor: none;
}

.fq-num:hover {
  background: rgba(255, 255, 255, 0.07);
  border-top-color: var(--red);
}

.fq-val {
  font-family: var(--f-cond);
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.fq-val span {
  color: var(--red);
}

.fq-lbl {
  font-family: var(--f-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
}

/* ========================================================================
   10. NFL REPRESENTATION SECTION
   ======================================================================== */

.nfl-section {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}

.nfl-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 56px;
  gap: 80px;
  align-items: start;
}

.nfl-shield-wrap {
  margin-bottom: 28px;
}

.nfl-shield {
  width: 100px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.nfl-headline {
  font-family: var(--f-cond);
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 32px;
}

.nfl-headline em {
  font-style: italic;
  color: var(--red-bright);
}

.nfl-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  max-width: 520px;
}

.nfl-body strong {
  color: rgba(255, 255, 255, 0.85);
}

.nfl-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 12px;
}

.nfl-feat {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.nfl-feat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-bright);
}

.nfl-feat-title {
  font-family: var(--f-cond);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 6px;
}

.nfl-feat-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

/* ========================================================================
   11. ABOUT SECTION
   ======================================================================== */

.about-section {
  padding: 120px 56px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.about-left {
  padding-top: 8px;
}

.sec-ey {
  font-family: var(--f-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.sec-h {
  font-family: var(--f-cond);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.01em;
}

.about-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 600px;
  margin-top: 32px;
}

.about-body strong {
  color: var(--ink);
  font-weight: 600;
}

.about-divider {
  width: 48px;
  height: 2px;
  background: var(--red);
  margin: 40px 0;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

.advantage-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--cream2);
  border-left: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  cursor: none;
}

.advantage-card:hover {
  border-left-color: var(--red);
  background: rgba(165, 28, 28, 0.03);
}

.adv-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(13, 13, 13, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: border-color 0.3s, background 0.3s;
}

.advantage-card:hover .adv-icon {
  border-color: var(--red);
  background: rgba(165, 28, 28, 0.06);
}

.adv-title {
  font-family: var(--f-cond);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.adv-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* ========================================================================
   12. STATS BAND
   ======================================================================== */

.stats-band {
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.stat-cell {
  padding: 56px 40px;
  text-align: center;
  background: var(--ink2);
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  cursor: none;
}

.stat-cell:hover {
  background: rgba(255, 255, 255, 0.04);
  border-top-color: var(--red);
}

.stat-val {
  font-family: var(--f-cond);
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-val span {
  color: var(--red);
}

.stat-lbl {
  font-family: var(--f-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 10px;
}

/* ========================================================================
   13. SERVICES SECTION
   ======================================================================== */

.services {
  padding: 120px 56px;
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.sec-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
}

.sec-link {
  font-family: var(--f-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  flex-shrink: 0;
  cursor: none;
}

.sec-link:hover {
  color: var(--red);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(13, 13, 13, 0.08);
}

.svc-card {
  background: var(--cream);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: background 0.3s;
}

.svc-card:hover {
  background: var(--cream2);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-n {
  font-family: var(--f-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(13, 13, 13, 0.2);
  margin-bottom: 32px;
}

.svc-ico {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(13, 13, 13, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--red);
  transition: border-color 0.3s, background 0.3s;
}

.svc-card:hover .svc-ico {
  border-color: var(--red);
  background: rgba(165, 28, 28, 0.05);
}

.svc-nm {
  font-family: var(--f-cond);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.svc-ds {
  font-family: var(--f-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--muted);
}

/* ========================================================================
   14. ROSTER SECTION
   ======================================================================== */

.roster-section {
  background: var(--navy);
  padding: 100px 56px;
}

.rs-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.rs-title {
  font-family: var(--f-cond);
  font-size: clamp(44px, 4vw, 68px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 0.9;
}

.rs-title em {
  font-style: italic;
  color: var(--red);
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.rc {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: rgba(255, 255, 255, 0.04);
}

.rc-img-wrap {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, rgba(12, 31, 61, 0.8), rgba(139, 26, 26, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.rc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.rc:hover .rc-img-wrap img {
  transform: scale(1.05);
}

.rc-initials {
  font-family: var(--f-cond);
  font-size: 64px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: absolute;
  transition: color 0.4s;
}

.rc:hover .rc-initials {
  color: rgba(255, 255, 255, 0.15);
}

.rc-number {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-family: var(--f-cond);
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
}

.rc-info {
  padding: 20px 20px 28px;
}

.rc-pos {
  font-family: var(--f-cond);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.rc-name {
  font-family: var(--f-cond);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

.rc-school {
  font-family: var(--f-cond);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

.rc-hover {
  position: absolute;
  inset: 0;
  background: rgba(139, 26, 26, 0.92);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.35s;
  padding: 24px;
  text-align: center;
}

.rc:hover .rc-hover {
  opacity: 1;
}

.rc-hover-name {
  font-family: var(--f-cond);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rc-hover-school {
  font-family: var(--f-cond);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.rc-hover-pos {
  font-family: var(--f-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.rc-hover-btn {
  margin-top: 16px;
  font-family: var(--f-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 8px 20px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  cursor: none;
  background: transparent;
}

.rc-hover-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ========================================================================
   15. LEGAL & NIL SERVICES SECTION
   ======================================================================== */

.legal-section {
  padding: 120px 56px;
  background: var(--cream);
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 72px;
}

.legal-left {
}

.legal-intro {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 40px;
}

.legal-intro strong {
  color: var(--ink);
  font-weight: 600;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
}

.fee-table th {
  font-family: var(--f-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--red);
}

.fee-table td {
  font-family: var(--f-cond);
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  color: var(--ink);
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.fee-table td:last-child {
  color: var(--red);
  font-weight: 800;
  font-size: 20px;
}

.legal-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-feature {
  padding: 28px 32px;
  background: var(--cream2);
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
  cursor: none;
}

.legal-feature:hover {
  border-left-color: var(--red);
}

.lf-title {
  font-family: var(--f-cond);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lf-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* ========================================================================
   16. PARENTS SECTION
   ======================================================================== */

.parents-section {
  background: var(--ink);
  padding: 120px 56px;
}

.parents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 72px;
}

.parents-left {
}

.parents-quote {
  font-family: var(--f-cond);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 32px;
}

.parents-quote em {
  color: var(--red);
  font-style: normal;
}

.parents-body {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 32px;
}

.parents-body strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.parents-right {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.parent-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  cursor: none;
}

.parent-card:hover {
  border-left-color: var(--red);
  background: rgba(255, 255, 255, 0.06);
}

.pc-num {
  font-family: var(--f-cond);
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  min-width: 36px;
}

.pc-title {
  font-family: var(--f-cond);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pc-desc {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
}

/* ========================================================================
   17. BLOG / RESOURCES SECTION
   ======================================================================== */

.blog-section {
  padding: 120px 56px;
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
}

.blog-card {
  cursor: none;
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-img {
  width: 100%;
  height: 220px;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.blog-img-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy), rgba(139, 26, 26, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-icon {
  font-family: var(--f-cond);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
}

.blog-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--f-cond);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 4px 12px;
}

.blog-info {
  padding: 24px 4px;
}

.blog-date {
  font-family: var(--f-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.blog-title {
  font-family: var(--f-cond);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* ========================================================================
   18. CTA / CONTACT SECTION
   ======================================================================== */

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.cta-img {
  position: relative;
  overflow: hidden;
}

.cta-img-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-logo-svg {
  width: 70%;
  max-width: 400px;
  height: auto;
}

.cta-text {
  background: var(--red);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-label {
  font-family: var(--f-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

.cta-h {
  font-family: var(--f-cond);
  font-size: clamp(44px, 4vw, 68px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 0.9;
  margin-bottom: 28px;
}

.cta-p {
  font-family: var(--f-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 360px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
}

.cf-input {
  font-family: var(--f-cond);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.cf-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cf-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
}

/* Light background form variant */
.form-light .cf-input {
  background: var(--cream);
  border: 1px solid rgba(13, 13, 13, 0.15);
  color: var(--ink);
}

.form-light .cf-input::placeholder {
  color: rgba(13, 13, 13, 0.35);
}

.form-light .cf-input:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(165, 28, 28, 0.08);
}

.form-light select.cf-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A51C1C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.cf-textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--f-serif);
}

.btn-wh {
  font-family: var(--f-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #fff;
  color: var(--red);
  padding: 14px 32px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  cursor: none;
  align-self: flex-start;
  border: none;
}

.btn-wh:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

/* ========================================================================
   19. FOOTER
   ======================================================================== */

footer {
  background: var(--ink);
  padding: 80px 56px 40px;
}

.f-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.f-logo {
  margin-bottom: 6px;
}

.footer-logo {
  height: 52px;
  width: auto;
}

.f-tag {
  font-family: var(--f-cond);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 24px;
}

.f-bio {
  font-family: var(--f-serif);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.3);
  max-width: 280px;
}

.f-ch {
  font-family: var(--f-cond);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 22px;
}

.f-cl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-cl a {
  font-family: var(--f-cond);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  cursor: none;
}

.f-cl a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.f-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}

.f-copy {
  font-family: var(--f-cond);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.16);
}

.f-soc {
  display: flex;
  gap: 24px;
}

.f-soc a {
  font-family: var(--f-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}

.f-soc a:hover {
  color: var(--red);
}

/* ========================================================================
   20. REVEAL ANIMATIONS
   ======================================================================== */

.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rv.on {
  opacity: 1;
  transform: none;
}

.rv-l {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rv-l.on {
  opacity: 1;
  transform: none;
}

.rv-r {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rv-r.on {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ========================================================================
   21. RESPONSIVE BREAKPOINTS
   ======================================================================== */

/* Tablet / Medium Screens (1024px and below) */
@media (max-width: 1024px) {
  nav {
    padding: 20px 28px;
  }

  nav.stuck {
    padding: 14px 28px;
  }

  nav.nav-solid {
    padding: 14px 28px;
  }

  .nav-center {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-content {
    padding: 0 28px 60px;
  }

  .hero-bottom {
    padding: 0 28px;
    gap: 32px;
    flex-wrap: wrap;
    height: auto;
    padding: 16px 28px;
  }

  .sports-feature {
    grid-template-columns: 1fr;
    padding: 80px 28px;
    gap: 48px;
  }

  .sf-grid {
    grid-template-columns: 1fr;
  }

  .sp-card:first-child {
    height: 300px;
  }

  .sp-card:not(:first-child) {
    height: 260px;
  }

  .nfl-inner {
    grid-template-columns: 1fr;
    padding: 80px 28px;
    gap: 48px;
  }

  .feature-quote {
    grid-template-columns: 1fr;
    padding: 80px 28px;
    gap: 48px;
  }

  .about-section {
    grid-template-columns: 1fr;
    padding: 80px 28px;
    gap: 48px;
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .services {
    padding: 80px 28px;
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roster-section {
    padding: 80px 28px;
  }

  .roster-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-section {
    padding: 80px 28px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .parents-section {
    padding: 80px 28px;
  }

  .parents-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .blog-section {
    padding: 80px 28px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-split {
    grid-template-columns: 1fr;
  }

  .cta-img {
    display: none;
  }

  .cta-text {
    padding: 60px 28px;
  }

  .f-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  footer {
    padding: 60px 28px 32px;
  }

  .page-hero {
    min-height: 35vh;
    margin-top: 70px;
  }
}

/* Mobile / Small Screens (640px and below) */
@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .roster-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .f-top {
    grid-template-columns: 1fr;
  }

  .hero-hl {
    font-size: clamp(48px, 12vw, 72px);
  }

  .hero-hl span {
    font-size: clamp(54px, 14vw, 82px);
  }

  nav {
    padding: 16px 20px;
  }

  .hero-content {
    padding: 0 20px 40px;
  }

  .sports-feature {
    padding: 60px 20px;
    gap: 32px;
  }

  .feature-quote {
    padding: 60px 20px;
  }

  .about-section {
    padding: 60px 20px;
  }

  .services {
    padding: 60px 20px;
  }

  .roster-section {
    padding: 60px 20px;
  }

  .legal-section {
    padding: 60px 20px;
  }

  .parents-section {
    padding: 60px 20px;
  }

  .blog-section {
    padding: 60px 20px;
  }

  .nfl-inner {
    padding: 60px 20px;
  }

  footer {
    padding: 40px 20px 24px;
  }

  .page-hero {
    min-height: 30vh;
    margin-top: 60px;
  }

  .rc-img-wrap {
    height: 240px;
  }
}

/* ========================================================================
   END OF STYLESHEET
   ======================================================================== */
