
:root {
  --red:        #B5000F;
  --red-dark:   #8A000B;
  --red-deep:   #600008;
  --black:      #111111;
  --charcoal:   #1E1E1E;
  --charcoal-2: #2C2C2C;
  --gold:       #C49A1A;
  --gold-light: #E2B832;
  --cream:      #F7F3EC;
  --white:      #FFFFFF;
  --grey-1:     #F2F2F2;
  --grey-2:     #D8D8D8;
  --grey-3:     #9A9A9A;
  --text:       #1E1E1E;
  --text-light: #5C5C5C;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --sp-xs:   clamp(0.5rem,  1vw, 0.75rem);
  --sp-sm:   clamp(0.75rem, 1.5vw, 1rem);
  --sp-md:   clamp(1rem,    2vw,   1.5rem);
  --sp-lg:   clamp(1.5rem,  3vw,   2.5rem);
  --sp-xl:   clamp(2rem,    4vw,   4rem);
  --sp-2xl:  clamp(3rem,    6vw,   6rem);

  --max-width: 1200px;
}


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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: var(--radius-sm); }


h1, h2, h3 { font-family: var(--ff-display); line-height: 1.15; }

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; }

p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }


.container {
  width: 90%;
  max-width: var(--max-width);
  margin-inline: auto;
}

.section-pad { padding-block: var(--sp-2xl); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-sm);
}

.section-title {
  margin-bottom: var(--sp-md);
  color: var(--black);
}

.section-title.centered,
.section-intro.centered { text-align: center; }

.section-intro {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-light);
  max-width: 70ch;
  margin-inline: auto;
  margin-bottom: var(--sp-xl);
}


.btn {
  display: inline-block;
  padding: 0.75em 1.75em;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 0.8rem;
  padding: 0.5em 1.2em;
}
.btn-outline:hover { background: var(--red); border-color: var(--red); }


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--red);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding-block: var(--sp-sm);
  flex-wrap: wrap;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1.05rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-emblem {
  color: var(--red);
  font-size: 1.4rem;
  line-height: 1;
}

.logo-text strong { color: var(--red); }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 1.5em;
  margin-left: auto;
}

.site-nav a {
  color: var(--grey-2);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .header-inner { justify-content: space-between; }
}


.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45) saturate(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(90,0,6,0.65) 0%,
    rgba(17,17,17,0.75) 60%,
    rgba(17,17,17,0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--sp-2xl);
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--sp-sm);
  display: block;
}

.hero-headline {
  color: var(--white);
  margin-bottom: var(--sp-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 60ch;
  margin-bottom: var(--sp-lg);
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}


.stats-strip {
  background: var(--charcoal);
  border-bottom: 3px solid var(--red);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  text-align: center;
  padding-block: var(--sp-lg);
  gap: var(--sp-lg);
}

.stat-item { display: flex; flex-direction: column; gap: 0.3em; }

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-2);
}


.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

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

.about-text .section-title { margin-top: var(--sp-xs); }
.about-text p { color: var(--text-light); }
.about-text .btn { margin-top: var(--sp-sm); }

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--red);
  border-radius: var(--radius-lg);
  pointer-events: none;
  transform: translate(8px, 8px);
  z-index: -1;
}


.history-section { background: var(--white); }

.timeline {
  position: relative;
  margin-top: var(--sp-xl);
  padding-left: clamp(2rem, 5vw, 4rem);
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--red), var(--red-dark), var(--charcoal));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: clamp(60px, 10vw, 90px) 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--grey-1);
}

.timeline-item:last-child { border-bottom: none; margin-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(2rem, 5vw, 4rem));
  top: 0.4em;
  width: 13px;
  height: 13px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
  transform: translateX(-5px);
}

.timeline-year {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1.2;
  padding-top: 0.1em;
}

.timeline-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--black);
  margin-bottom: 0.5em;
}

.timeline-content p { color: var(--text-light); margin-bottom: 0; }


.titles-section { background: var(--charcoal); }

.titles-section .section-eyebrow { color: var(--gold-light); }
.titles-section .section-title { color: var(--white); }
.titles-section .section-intro { color: var(--grey-2); }

.titles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}

.title-card {
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  transition: transform 0.2s;
}
.title-card:hover { transform: translateY(-4px); }

.title-card.gold {
  background: linear-gradient(135deg, #3A2E00, #1E1800);
  border: 1px solid var(--gold);
}
.title-card.red {
  background: linear-gradient(135deg, var(--red-deep), #3A0005);
  border: 1px solid var(--red);
}
.title-card.dark {
  background: var(--charcoal-2);
  border: 1px solid #3C3C3C;
}

.title-icon { font-size: 2rem; line-height: 1; }

.title-card h3 {
  font-size: 1.05rem;
  color: var(--white);
}

.title-count {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin: 0;
}

.title-card p:not(.title-count) {
  font-size: 0.9rem;
  color: var(--grey-2);
  line-height: 1.65;
  margin: 0;
}


.legends-section { background: var(--cream); }

.legends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-lg);
  margin-top: var(--sp-lg);
}

.legend-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 4px solid var(--red);
}
.legend-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.14); }

.legend-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.legend-body {
  padding: var(--sp-md);
}

.legend-era {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 0.2em 0.7em;
  border-radius: var(--radius-sm);
  margin-bottom: 0.6em;
}

.legend-body h3 {
  color: var(--black);
  margin-bottom: 0.5em;
  font-size: 1.25rem;
}

.legend-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}


.player-spotlight {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.player-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.player-spotlight--alt { background: var(--charcoal); }

.player-spotlight .section-eyebrow { color: var(--gold-light); }

.player-spotlight h2 {
  color: var(--white);
  margin-bottom: var(--sp-lg);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 3px solid var(--red);
  padding-bottom: var(--sp-sm);
  display: inline-block;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.spotlight-grid--reverse { direction: rtl; }
.spotlight-grid--reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .spotlight-grid,
  .spotlight-grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.spotlight-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.spotlight-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6em;
}

.spotlight-badge--gold { background: var(--gold); color: var(--black); }

.spotlight-tagline {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: var(--sp-md);
  font-weight: 700;
}

.spotlight-content p {
  color: rgba(255,255,255,0.8);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.75;
}

.spotlight-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--sp-lg);
}

.sstat {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.sstat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.sstat-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}


.hurstville-section { background: var(--cream); }

.hurstville-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

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

.hurstville-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.hurstville-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-lg);
}

.hfact {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
}

.hfact-icon {
  font-size: 1.8rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.hfact strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.3em;
}

.hfact p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.hfact a { color: var(--red); font-weight: 600; }
.hfact a:hover { text-decoration: underline; }


.fanzone-section { background: var(--white); }

.fanzone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.fanzone-card {
  background: var(--grey-1);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  border-left: 4px solid var(--red);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fanzone-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.fanzone-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--sp-sm);
}

.fanzone-card h3 {
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 0.5em;
}

.fanzone-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.fanzone-card a { color: var(--red); font-weight: 600; }
.fanzone-card a:hover { text-decoration: underline; }

.fanzone-disclaimer {
  background: var(--grey-1);
  border-radius: var(--radius-sm);
  padding: var(--sp-md);
  border-left: 4px solid var(--gold);
}

.fanzone-disclaimer p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.65;
}


.site-footer {
  background: var(--black);
  border-top: 3px solid var(--red);
  padding-block: var(--sp-xl);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-sm);
}

.footer-brand .logo-emblem { color: var(--red); font-size: 1.5rem; }
.footer-brand .logo-text { color: var(--white); font-size: 1rem; }
.footer-brand .logo-text strong { color: var(--red); }

.footer-tagline {
  width: 100%;
  font-size: 0.82rem;
  color: var(--grey-3);
  margin: 0;
  font-style: italic;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 1.5em;
}

.footer-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--grey-2);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid #2C2C2C;
  padding-top: var(--sp-md);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--grey-3);
  margin: 0;
  line-height: 1.6;
}


@media (max-width: 600px) {
  .timeline {
    padding-left: 1.5rem;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.25em;
  }
  .timeline-year {
    font-size: 1.1rem;
    color: var(--red);
  }
  .spotlight-stats {
    grid-template-columns: 1fr 1fr;
  }
  .titles-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
