/* rivalhood.css — Rivalhood design system (V1, from Troy's hi-fi mockups).
   Shared across all rH pages: tokens, type, nav, ticker, hero, cards,
   quick-buy, email capture, footer. Page-specific styles live in
   rivalhood-region.css and rivalhood-school.css. */

:root {
  --ink: #0a0a0a;
  --ink-2: #111;
  --ink-3: #161616;
  --ink-4: #1f1f1f;
  --cream: #f3ede2;
  --cream-2: #ebe4d5;
  --bone: #d9d2c2;
  --muted: #a29a87;
  --muted-2: #6e6858;
  --red: #c8102e;
  --red-deep: #8a0f22;
  --rule: rgba(255,255,255,0.08);
  --rule-2: rgba(255,255,255,0.14);
  /* brand display font — the "Rep Your Rivalry" face, used for all headings/branded text */
  --font-display: 'Archivo', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--ink); color: var(--cream); font-family: 'Archivo', sans-serif; -webkit-font-smoothing: antialiased; }

/* type */
.rh-display { font-family: var(--font-display); font-weight: 900; font-stretch: 75%; letter-spacing: -0.012em; line-height: 0.92; text-transform: uppercase; }
.rh-body    { font-family:'Archivo', sans-serif; font-weight: 400; font-size: 15px; line-height: 1.55; }
.rh-eyebrow { font-family:'DM Mono', monospace; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); }
.rh-caption { font-family:'DM Mono', monospace; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.rh-mono    { font-family:'DM Mono', monospace; }

/* page shell */
.rh-page { background: var(--ink); min-height: 100vh; overflow-x: hidden; }

/* nav */
.rh-nav { position: sticky; top: 0; z-index: 50; background: rgba(10,10,10,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--rule); }
.rh-nav__inner { max-width: 1480px; margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.rh-nav__links { display: flex; gap: 4px; }
.rh-nav__link { font-family:'Archivo', sans-serif; font-weight: 600; font-stretch: 75%; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); padding: 8px 14px; border-radius: 2px; cursor: pointer; }
.rh-nav__link:hover { background: rgba(255,255,255,0.05); }
.rh-nav__link.is-active { color: var(--red); }
.rh-nav__cta { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; background: var(--red); color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-stretch: 75%; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; border-radius: 2px; cursor: pointer; }
.rh-nav__cta:hover { background: var(--red-deep); }
.rh-nav__link, .rh-nav__cta, .rh-wordmark-link { text-decoration: none; }

/* states dropdown */
.rh-nav__states { position: relative; display: inline-flex; }
.rh-nav__states-trig { display: inline-flex; align-items: center; gap: 6px; }
.rh-nav__caret { width: 9px; height: 6px; transition: transform 0.18s; opacity: 0.8; }
.rh-nav__states-trig.is-open .rh-nav__caret { transform: rotate(180deg); }
.rh-nav__dd { position: absolute; top: calc(100% + 12px); right: 0; min-width: 296px; background: #0e0e0e; border: 1px solid var(--rule-2); border-radius: 5px; box-shadow: 0 26px 64px rgba(0,0,0,0.62); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.16s, transform 0.16s, visibility 0.16s; z-index: 60; }
.rh-nav__dd.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.rh-nav__dd-head { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted-2); padding: 8px 12px 7px; }
.rh-nav__dd-item { display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 3px; font-family: var(--font-display); font-weight: 700; font-stretch: 75%; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); text-decoration: none; }
a.rh-nav__dd-item:hover { background: rgba(255,255,255,0.06); }
.rh-nav__dd-item.is-soon { color: var(--muted-2); cursor: default; justify-content: space-between; }
.rh-nav__dd-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 6px var(--red); flex: none; }
.rh-nav__dd-soon { font-family: 'DM Mono', monospace; font-weight: 400; font-size: 8.5px; letter-spacing: 0.14em; color: var(--red); border: 1px solid var(--red-deep); border-radius: 100px; padding: 3px 8px; }
.rh-nav__dd-div { height: 1px; background: var(--rule); margin: 8px 6px; }

/* ticker */
.rh-ticker { display: flex; overflow: hidden; white-space: nowrap; background: var(--red); color: #fff; border-top: 1px solid var(--red-deep); border-bottom: 1px solid var(--red-deep); }
.rh-ticker__track { display: inline-flex; gap: 36px; padding: 9px 0; font-family:'DM Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; animation: rh-marq 32s linear infinite; flex-shrink: 0; }
.rh-ticker__item { padding-right: 36px; flex-shrink: 0; }
@keyframes rh-marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* hero */
.rh-hero { position: relative; height: 720px; max-height: 92vh; overflow: hidden; background: var(--ink); }
.rh-hero__inner { position: absolute; inset: 0; max-width: 1480px; margin: 0 auto; padding: 40px 32px 56px; display: flex; flex-direction: column; justify-content: flex-end; z-index: 5; }
.rh-hero__content { max-width: 980px; }
.rh-hero__title { font-family:'Archivo', sans-serif; font-weight: 900; font-stretch: 75%; font-size: clamp(72px, 10vw, 168px); letter-spacing: -0.018em; line-height: 0.86; text-transform: uppercase; color: var(--cream); }
.rh-hero__title .red { color: var(--red); }
.rh-hero__sub { margin-top: 22px; max-width: 560px; font-size: 17px; line-height: 1.5; color: #c9c2b3; }
.rh-hero__cta { margin-top: 30px; display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.rh-hero__meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; }

/* stadium art */
.rh-stadium { position: absolute; inset: 0; overflow: hidden; }
.rh-stadium__sky { position: absolute; inset: 0; background: linear-gradient(180deg, #050505 0%, #0a0a0a 30%, #170707 70%, #2a0e14 100%); }
.rh-stadium__field { position: absolute; left: 0; right: 0; bottom: 0; height: 38%; background: linear-gradient(180deg, transparent 0%, rgba(10,30,12,0.5) 30%, rgba(8,18,10,0.85) 100%); }
.rh-stadium__field::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(40,80,40,0.08) 0 40px, rgba(20,40,20,0.18) 40px 80px); mix-blend-mode: overlay; }
.rh-stadium__lights { position: absolute; inset: 0; background:
  radial-gradient(circle at 14% 18%, rgba(255,240,200,0.55) 0%, transparent 14%),
  radial-gradient(circle at 30% 12%, rgba(255,240,200,0.45) 0%, transparent 12%),
  radial-gradient(circle at 50% 10%, rgba(255,240,200,0.5) 0%, transparent 13%),
  radial-gradient(circle at 70% 12%, rgba(255,240,200,0.45) 0%, transparent 12%),
  radial-gradient(circle at 86% 18%, rgba(255,240,200,0.55) 0%, transparent 14%);
  mix-blend-mode: screen; opacity: 0.85; }
.rh-stadium__crowd { position: absolute; left: 0; right: 0; bottom: 32%; height: 40%; background:
  repeating-linear-gradient(90deg, rgba(0,0,0,0.6) 0 3px, rgba(20,20,20,0.6) 3px 8px),
  radial-gradient(ellipse 100% 60% at 50% 100%, rgba(0,0,0,0.7) 0%, transparent 80%);
  mix-blend-mode: multiply; opacity: 0.85; }
.rh-stadium__color { position: absolute; inset: 0; mix-blend-mode: screen; opacity: 0.6; }
.rh-stadium__vignette { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%, transparent 0%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.85) 100%); }
.rh-stadium__grain { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E"); opacity: 0.18; mix-blend-mode: overlay; pointer-events: none; }

/* mascot */
.rh-mascot { position: absolute; inset: 0; }

/* photo placeholder */
.rh-photo-ph { position: absolute; inset: 0; background:
  repeating-linear-gradient(45deg, #0d0d0d 0 16px, #131313 16px 32px);
}
.rh-photo-ph__inner { position: absolute; inset: 32px; border: 1px dashed #2a2a2a; padding: 24px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.rh-photo-ph__chip { background: rgba(10,10,10,0.6); border: 1px solid #2a2a2a; padding: 12px 16px; text-align: center; }
.rh-photo-ph__crosshair { position: absolute; inset: 0; pointer-events: none; }
.rh-photo-ph__crosshair span { position: absolute; width: 18px; height: 18px; border: 1px solid #c8102e; }
.rh-photo-ph__crosshair span:nth-child(1) { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.rh-photo-ph__crosshair span:nth-child(2) { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.rh-photo-ph__crosshair span:nth-child(3) { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.rh-photo-ph__crosshair span:nth-child(4) { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* buttons */
.rh-btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 26px; background: var(--red); color: #fff; font-family:'Archivo', sans-serif; font-weight: 700; font-stretch: 75%; font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; border: none; border-radius: 2px; cursor: pointer; text-decoration: none; transition: background 0.15s; }
.rh-btn:hover { background: var(--red-deep); }
.rh-btn--ghost { background: transparent; color: var(--cream); border: 1.5px solid var(--cream); }
.rh-btn--ghost:hover { background: var(--cream); color: var(--ink); }
.rh-btn--sm { padding: 10px 16px; font-size: 11.5px; }

/* pill */
.rh-pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; font-family:'DM Mono', monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; border: 1px solid var(--rule-2); color: var(--cream); border-radius: 2px; }
.rh-pill--red { background: var(--red); color: #fff; border-color: var(--red-deep); }
.rh-pill--ghost { background: transparent; color: var(--muted); }
.rh-pill--neutral { background: rgba(255,255,255,0.05); }
.rh-pill--red .rh-live { color: #fff; }
.rh-pill--red .rh-live i { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }

/* live */
.rh-live { display: inline-flex; align-items: center; gap: 7px; font-family:'DM Mono', monospace; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); font-weight: 500; }
.rh-live i { width: 7px; height: 7px; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 3px rgba(200,16,46,0.25); animation: rh-pulse 1.6s ease-in-out infinite; }
@keyframes rh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* drop band */
.rh-band { background: var(--ink-3); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.rh-band__inner { max-width: 1480px; margin: 0 auto; padding: 26px 32px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.rh-band__msg { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.rh-band__title { font-family:'Archivo', sans-serif; font-weight: 900; font-stretch: 75%; font-size: 32px; letter-spacing: -0.005em; text-transform: uppercase; color: var(--cream); line-height: 1; }
.rh-band__title .red { color: var(--red); }
.rh-band__sub { color: #a29a87; max-width: 560px; font-size: 14px; }

/* section frame */
.rh-section { padding: 80px 32px; max-width: 1480px; margin: 0 auto; }
.rh-section__hd { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 36px; flex-wrap: wrap; }
.rh-section__title { font-family:'Archivo', sans-serif; font-weight: 900; font-stretch: 75%; font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.012em; text-transform: uppercase; color: var(--cream); line-height: 0.95; max-width: 780px; }
.rh-section__title .red { color: var(--red); }
.rh-section__title em { font-style: normal; color: var(--muted); }
.rh-section__sub { color: var(--muted); max-width: 380px; font-size: 14.5px; line-height: 1.55; }

/* map */
.rh-map { width: 100%; height: auto; display: block; }
.rh-map-wrap { background: linear-gradient(180deg, #0a0a0a 0%, #0e0e0e 100%); border: 1px solid var(--rule); border-radius: 4px; padding: 20px; }
.rh-map-legend { display: flex; gap: 20px; flex-wrap: wrap; justify-content: space-between; align-items: center; padding: 14px 6px 4px; }
.rh-map-legend__items { display: flex; gap: 18px; flex-wrap: wrap; }
.rh-map-legend__item { display: inline-flex; align-items: center; gap: 8px; font-family:'DM Mono', monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.rh-map-legend__dot { width: 9px; height: 9px; border-radius: 50%; }
.rh-state-ladder { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.rh-state-chip { padding: 6px 10px; font-family:'DM Mono', monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; border: 1px solid #2a2a2a; color: var(--muted); border-radius: 2px; display: inline-flex; gap: 8px; align-items: center; }
.rh-state-chip.is-live { color: var(--cream); border-color: var(--red-deep); background: rgba(200,16,46,0.06); }
.rh-state-chip.is-live i { background: var(--red); }
.rh-state-chip i { width: 6px; height: 6px; border-radius: 50%; background: #2a2a2a; }
.rh-state-chip.is-soon i { background: #b45309; }

/* featured matchup */
.rh-feat { display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px; align-items: stretch; }
@media (max-width: 980px) { .rh-feat { grid-template-columns: 1fr; } }
.rh-feat__poster { position: relative; aspect-ratio: 4/5; border: 1px solid var(--rule); overflow: hidden; display: flex; flex-direction: column; }
.rh-feat__poster-inner { position: absolute; inset: 0; padding: 36px; display: flex; flex-direction: column; justify-content: space-between; z-index: 5; }
.rh-feat__name { font-family:'Archivo', sans-serif; font-weight: 900; font-stretch: 75%; font-size: clamp(56px, 6vw, 96px); letter-spacing: -0.015em; line-height: 0.88; text-transform: uppercase; color: var(--cream); }
.rh-feat__name .red { color: var(--red); }
.rh-feat__details { background: var(--ink-3); padding: 30px; border: 1px solid var(--rule); display: flex; flex-direction: column; gap: 20px; }
.rh-feat__row { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--rule); }
.rh-feat__row:last-of-type { border-bottom: none; padding-bottom: 0; }
.rh-feat__row .l { color: var(--muted); font-family:'DM Mono', monospace; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; }
.rh-feat__row .r { color: var(--cream); font-family:'Archivo', sans-serif; font-weight: 600; font-stretch: 75%; text-transform: uppercase; letter-spacing: 0.04em; font-size: 13px; text-align: right; }
.rh-feat__products { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* vertical-split featured poster */
.rh-feat__poster--vsplit { display: flex; flex-direction: column; }
.rh-feat__vsplit { position: relative; flex: 1; display: grid; grid-template-rows: 1fr 1fr; }
.rh-feat__vside { position: relative; overflow: hidden; padding: 30px 36px; display: flex; align-items: stretch; }
.rh-feat__vside-inner { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; width: 100%; }
.rh-feat__vside:first-child .rh-feat__vside-inner { justify-content: flex-start; }
.rh-feat__vname { font-family:'Archivo', sans-serif; font-weight: 900; font-stretch: 75%; font-size: clamp(48px, 7vw, 110px); letter-spacing: -0.018em; line-height: 0.86; text-transform: uppercase; color: var(--cream); }
.rh-feat__vseam { position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: var(--ink); transform: translateY(-50%); z-index: 3; }
.rh-feat__vseam::before { content: ''; position: absolute; left: 50%; top: 50%; width: 80px; height: 80px; transform: translate(-50%, -50%) rotate(45deg); background: var(--ink); border: 1.5px solid var(--cream); }
.rh-feat__vseam-vs { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-family:'Archivo', sans-serif; font-weight: 900; font-stretch: 75%; color: var(--cream); font-size: 22px; letter-spacing: 0.04em; z-index: 4; }
.rh-feat__poster-foot { display: flex; justify-content: space-between; gap: 16px; padding: 14px 24px; background: var(--ink); border-top: 1px solid var(--rule); }
.rh-feat__bg { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; }
.rh-feat__bg-side { position: relative; overflow: hidden; }
.rh-feat__bg-side::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); }
.rh-feat__bg-noise { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E"); opacity: 0.25; mix-blend-mode: overlay; }
.rh-feat__seam { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--ink); transform: translateX(-50%); z-index: 3; }
.rh-feat__seam::before { content: ''; position: absolute; left: 50%; top: 50%; width: 80px; height: 80px; transform: translate(-50%, -50%) rotate(45deg); background: var(--ink); border: 1.5px solid var(--cream); }
.rh-feat__seam-vs { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-family:'Archivo', sans-serif; font-weight: 900; font-stretch: 75%; color: var(--cream); font-size: 22px; letter-spacing: 0.04em; z-index: 4; }

/* rivalry card */
.rh-riv { border: 1px solid var(--rule); cursor: pointer; transition: border-color 0.15s; background: var(--ink-3); }
.rh-riv:hover { border-color: var(--red-deep); }
.rh-riv__split { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.rh-riv__side { padding: 20px; display: flex; flex-direction: column; justify-content: space-between; position: relative; color: #fff; min-height: 170px; }
.rh-riv__side::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%); pointer-events: none; }
.rh-riv__school { font-family:'Archivo', sans-serif; font-weight: 900; font-stretch: 75%; font-size: 22px; letter-spacing: -0.005em; line-height: 0.95; text-transform: uppercase; position: relative; z-index: 2; }
.rh-riv__mascot { font-family:'Archivo', sans-serif; font-weight: 600; font-stretch: 75%; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.78; margin-top: 6px; position: relative; z-index: 2; }
.rh-riv__rec { font-family:'DM Mono', monospace; font-size: 11px; letter-spacing: 0.18em; opacity: 0.78; position: relative; z-index: 2; }
.rh-riv__vs { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); background: var(--ink); color: var(--cream); border: 1.5px solid var(--rule-2); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; font-family:'Archivo', sans-serif; font-weight: 900; font-stretch: 75%; font-size: 13px; letter-spacing: 0.04em; z-index: 3; border-radius: 50%; }
.rh-riv__meta { padding: 12px 16px; background: var(--ink-2); display: flex; justify-content: space-between; align-items: center; font-family:'DM Mono', monospace; font-size: 10.5px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }

/* drops grid */
.rh-drops-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) { .rh-drops-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .rh-drops-grid { grid-template-columns: 1fr; } }
.rh-drop { background: var(--ink-3); border: 1px solid var(--rule); display: flex; flex-direction: column; cursor: pointer; transition: transform 0.2s, border-color 0.15s; }
.rh-drop:hover { transform: translateY(-3px); border-color: var(--red-deep); }
.rh-drop__art { position: relative; aspect-ratio: 1/1.05; padding: 24px; display: flex; align-items: center; justify-content: center; }
.rh-drop__tier { position: absolute; top: 12px; left: 12px; font-family:'DM Mono', monospace; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); padding: 4px 8px; background: rgba(0,0,0,0.55); border: 1px solid var(--rule-2); }
.rh-drop__live { position: absolute; top: 12px; right: 12px; padding: 4px 8px; background: rgba(0,0,0,0.55); border: 1px solid var(--red-deep); }
.rh-drop__body { padding: 18px 20px 22px; border-top: 1px solid var(--rule); }
.rh-drop__title { font-family:'Archivo', sans-serif; font-weight: 900; font-stretch: 75%; font-size: 17px; letter-spacing: -0.005em; text-transform: uppercase; color: var(--cream); line-height: 1.05; }
.rh-drop__sub { font-family:'DM Mono', monospace; font-size: 10.5px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; margin-top: 8px; }
.rh-drop__foot { display: flex; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--rule); font-family:'DM Mono', monospace; font-size: 10px; letter-spacing: 0.14em; color: var(--muted-2); text-transform: uppercase; }

/* shirt */
.rh-shirt { width: 78%; aspect-ratio: 1/1.1; position: relative; clip-path: polygon(15% 0, 35% 0, 35% 6%, 50% 12%, 65% 6%, 65% 0, 85% 0, 100% 18%, 92% 32%, 78% 28%, 78% 100%, 22% 100%, 22% 28%, 8% 32%, 0 18%); display: flex; align-items: center; justify-content: center; }
.rh-shirt__crew { position: absolute; top: 6%; left: 35%; right: 35%; height: 10%; border-bottom: 2px solid rgba(0,0,0,0.25); border-radius: 0 0 50% 50% / 0 0 100% 100%; }
.rh-shirt__art { padding: 0 14%; text-align: center; }

/* email capture */
.rh-email { background: linear-gradient(180deg, #0d0d0d 0%, #110707 100%); padding: 80px 32px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.rh-email__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.rh-email__title { font-family:'Archivo', sans-serif; font-weight: 900; font-stretch: 75%; font-size: clamp(48px, 6vw, 80px); letter-spacing: -0.015em; text-transform: uppercase; color: var(--cream); line-height: 0.92; }
.rh-email__title .red { color: var(--red); }
.rh-email__sub { color: var(--muted); margin-top: 20px; font-size: 16px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.55; }
.rh-email__form { display: flex; gap: 8px; margin-top: 30px; max-width: 540px; margin-left: auto; margin-right: auto; }
.rh-email__input { flex: 1; padding: 16px 18px; background: var(--ink-3); border: 1px solid var(--rule-2); color: var(--cream); font-family:'DM Mono', monospace; font-size: 13px; letter-spacing: 0.06em; outline: none; }
.rh-email__input::placeholder { color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; }
.rh-email__input:focus { border-color: var(--red); }

/* footer */
.rh-foot { background: var(--ink); border-top: 1px solid var(--rule); padding: 56px 32px 28px; }
.rh-foot__inner { max-width: 1480px; margin: 0 auto; }
.rh-foot__top { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--rule); }
@media (max-width: 800px) { .rh-foot__top { grid-template-columns: 1fr 1fr; } }
.rh-foot__brand { color: var(--muted); font-size: 13px; line-height: 1.6; max-width: 360px; }
.rh-foot__brand h4 { margin: 18px 0 8px; font-family:'Archivo', sans-serif; font-weight: 900; font-stretch: 75%; font-size: 20px; letter-spacing: -0.005em; text-transform: uppercase; color: var(--cream); }
.rh-foot__col h5 { font-family:'DM Mono', monospace; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 14px; }
.rh-foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.rh-foot__col a { color: var(--cream); text-decoration: none; font-family:'Archivo', sans-serif; font-weight: 500; font-stretch: 75%; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.rh-foot__col a:hover { color: var(--red); }
.rh-foot__bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family:'DM Mono', monospace; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.rh-foot__tagline { color: var(--cream); font-family:'Archivo', sans-serif; font-weight: 900; font-stretch: 75%; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.rh-foot__tagline .red { color: var(--red); }

/* tagline floats */
.rh-tagline-top { background: var(--ink); padding: 14px 32px; border-bottom: 1px solid var(--rule); text-align: center; font-family:'Archivo', sans-serif; font-weight: 900; font-stretch: 75%; font-size: 14px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--cream); }
.rh-tagline-top .red { color: var(--red); }

.rh-hero__tagline-inline { font-family:'Archivo', sans-serif; font-weight: 900; font-stretch: 75%; font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--red); margin-top: 14px; }

/* ════════════════════════════════════════════════════════════════
   MOBILE PASS — nav collapses to a burger menu; phone-scale spacing
   ════════════════════════════════════════════════════════════════ */
/* rivalry-card grid (home / state / region) */
.rh-rivgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .rh-rivgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .rh-rivgrid { grid-template-columns: 1fr; } }

.rh-nav__right { display: flex; gap: 10px; align-items: center; }
.rh-nav__burger { display: none; }

@media (max-width: 760px) {
  .rh-nav__inner { position: relative; padding: 11px 18px; gap: 12px; }
  .rh-nav__live { display: none; }
  .rh-nav__burger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 4px;
    width: 40px; height: 40px; padding: 0 10px; background: transparent;
    border: 1px solid var(--rule-2); border-radius: 2px; cursor: pointer;
  }
  .rh-nav__burger span { display: block; height: 2px; background: var(--cream); border-radius: 2px; transition: 0.2s; }
  .rh-nav__links {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 60;
    flex-direction: column; gap: 0; padding: 6px 0; display: none;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule);
  }
  .rh-nav__links.is-open { display: flex; }
  .rh-nav__link { padding: 15px 22px; border-radius: 0; border-bottom: 1px solid var(--rule); }
  .rh-nav__link:last-child { border-bottom: none; }
  .rh-nav__states { display: block; width: 100%; }
  .rh-nav__states-trig { justify-content: space-between; }
  .rh-nav__dd { position: static; min-width: 0; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-radius: 0; padding: 4px 12px 10px; display: none; }
  .rh-nav__dd.is-open { display: block; }

  .rh-section { padding: 54px 18px; }
  .rh-section__hd { margin-bottom: 26px; gap: 18px; }
  .rh-hero { height: auto; max-height: none; min-height: 540px; }
  .rh-hero__inner { padding: 30px 18px 40px; }
  .rh-hero__sub { font-size: 15px; }
  .rh-hero__title { font-size: clamp(56px, 15vw, 96px); }
  .rh-band__inner { grid-template-columns: 1fr; gap: 18px; padding: 22px 18px; }
  .rh-map-wrap { padding: 14px; }
}

@media (max-width: 600px) {
  /* rivalry split card: let columns shrink below the school-name min-content */
  .rh-riv__split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .rh-riv__side { padding: 15px 13px; min-height: 132px; }
  .rh-riv__school { font-size: 17px; }
  .rh-riv__mascot { font-size: 10px; }
  .rh-riv__rec { font-size: 10px; }
}

@media (max-width: 480px) {
  .rh-foot__top { grid-template-columns: 1fr; gap: 28px; }
}

/* breadcrumb (shared across region and school pages) */
.rh-crumb { max-width: 1480px; margin: 0 auto; padding: 18px 32px 0; display: flex; align-items: center; gap: 10px;
  font-family:'DM Mono', monospace; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.rh-crumb a { color: var(--muted); text-decoration: none; }
.rh-crumb a:hover { color: var(--red); }
.rh-crumb .sep { color: var(--muted-2); }
.rh-crumb .here { color: var(--cream); }

/* quick-buy card (shared commerce primitive: school header, region drops, homepage) */
.rh-qb { position: relative; background: var(--ink-3); border: 1px solid var(--rule); display: flex; flex-direction: column; cursor: pointer; transition: border-color 0.16s; --qb-accent: var(--qb-secondary, var(--accent, var(--red))); }
.rh-qb:hover, .rh-qb.is-open { border-color: var(--rule-2); border-color: color-mix(in srgb, var(--qb-accent) 55%, transparent); }
.rh-qb__art { position: relative; aspect-ratio: 1/1.02; display: flex; align-items: center; justify-content: center; padding: 22px; background: #0c0c0c; background: radial-gradient(ellipse 80% 70% at 50% 40%, color-mix(in srgb, var(--qb-primary) 70%, #000) 0%, #0c0c0c 100%); overflow: hidden; }
.rh-qb__tier { position: absolute; top: 12px; left: 12px; font-family:'DM Mono',monospace; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); padding: 4px 8px; background: rgba(0,0,0,0.55); border: 1px solid var(--rule-2); }
.rh-qb__art.has-img { padding: 0; background: #f2f1ee; }
.rh-qb__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rh-qb__body { padding: 18px 18px 20px; border-top: 1px solid var(--rule); display: flex; flex-direction: column; }
.rh-qb__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.rh-qb__name { font-family:'Archivo',sans-serif; font-weight: 900; font-stretch: 75%; font-size: 18px; letter-spacing: -0.005em; text-transform: uppercase; color: var(--cream); line-height: 1.02; }
.rh-qb__price { font-family:'DM Mono',monospace; font-size: 14px; color: var(--qb-accent); flex-shrink: 0; }
.rh-qb__prompt { font-family:'DM Mono',monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-top: 10px; display: flex; align-items: center; gap: 7px; background: none; border: none; padding: 0; cursor: pointer; }
.rh-qb__prompt::before { content: '＋'; color: var(--qb-accent); font-size: 13px; }
.rh-qb.is-open .rh-qb__prompt { display: none; }
.rh-qb__panel { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.28s ease, opacity 0.2s ease, margin-top 0.28s ease; }
.rh-qb.is-open .rh-qb__panel { max-height: 360px; opacity: 1; margin-top: 14px; }
.rh-qb__label { font-family:'DM Mono',monospace; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 8px; }
.rh-qb__swatches { display: flex; gap: 8px; margin-bottom: 14px; }
.rh-qb__sw { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--rule-2); cursor: pointer; padding: 0; position: relative; transition: transform 0.12s; }
.rh-qb__sw:hover { transform: scale(1.08); }
.rh-qb__sw.is-sel { border-color: var(--cream); box-shadow: 0 0 0 2px var(--ink-3), 0 0 0 3.5px var(--cream); }
.rh-qb__sizes { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; margin-bottom: 14px; }
.rh-qb__size { padding: 9px 0; background: transparent; border: 1px solid var(--rule-2); color: var(--cream); font-family:'DM Mono',monospace; font-size: 11px; letter-spacing: 0.04em; cursor: pointer; border-radius: 2px; transition: 0.12s; }
.rh-qb__size:hover:not(:disabled) { border-color: var(--qb-accent); }
.rh-qb__size.is-sel { background: var(--qb-accent); color: #111; border-color: var(--qb-accent); font-weight: 700; }
.rh-qb__size:disabled { color: var(--muted-2); border-color: var(--rule); cursor: not-allowed; text-decoration: line-through; }
.rh-qb__add { width: 100%; padding: 14px; border: none; border-radius: 2px; cursor: pointer; font-family:'Archivo',sans-serif; font-weight: 800; font-stretch: 75%; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; background: var(--qb-accent); color: #111; transition: filter 0.14s; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.rh-qb__add:hover:not(:disabled) { filter: brightness(1.08); }
.rh-qb__add:disabled { background: var(--ink-4); color: var(--muted-2); cursor: default; }
.rh-qb__add.is-added { background: #1c6b32; color: #fff; }

/* motion preferences */
@media (prefers-reduced-motion: reduce) {
  .rh-ticker__track { animation: none; }
  .rh-live i { animation: none; }
}
