/* Cleveland Sirens fan site (unofficial) — "The Odyssey" cinematic build.
   Signature: the siren's song as a golden waveline over the wine-dark sea. */

:root {
  /* Deep-sea blues sampled from the official logo, plus a mythic gold accent. */
  --sirens-blue: #004eb4;   /* verified from the logo */
  --siren-light: #a2ccea;   /* light siren figure */
  --abyss: #030b1a;         /* wine-dark depth (page base) */
  --deep: #05163a;          /* deep sea */
  --sea: #004eb4;           /* sunlit Sirens Blue */
  --sea-lift: #2a72d6;      /* brighter shaft blue */
  --deep-navy: #00112b;     /* footer / gradient floor */

  --gold: #e6c169;          /* the single accent: siren gold */
  --gold-deep: #b3894a;
  --foam: #eef3fb;          /* near-white */
  --mist: #93a7c8;          /* muted blue-grey */

  --line: rgba(230, 193, 105, 0.22);   /* gold hairline */
  --line-soft: rgba(147, 167, 200, 0.16);
  --glow: rgba(230, 193, 105, 0.5);
  --max: 1180px;
}

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

body {
  margin: 0;
  color: var(--foam);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  background:
    radial-gradient(120% 80% at 50% 0%, #06214e 0%, transparent 55%),
    linear-gradient(180deg, #041022 0%, var(--abyss) 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 26px; }

/* ---------- Type ---------- */
.display {
  font-family: "Cinzel", serif;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.03em;
}
.song {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--siren-light);
}
.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}
.lede { font-size: 1.16rem; color: var(--mist); max-width: 60ch; }
.accent { color: var(--gold); }

/* ---------- Nav ---------- */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 26px;
  max-width: var(--max);
  margin: 0 auto;
  background: rgba(3, 11, 26, 0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-mark { width: 32px; height: 32px; flex: none; color: var(--gold); }
.brand-text {
  font-family: "Cinzel", serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand-sub {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.5rem;
  letter-spacing: 0.34em;
  color: var(--mist);
  margin-top: 5px;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.28s ease;
}
.nav-links a:hover { color: var(--foam); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--foam); transition: 0.25s ease; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 1px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.3s ease, background 0.25s ease, color 0.25s ease;
}
.btn-primary { background: var(--gold); color: #241a05; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -10px var(--glow); }
.btn-ghost { background: transparent; color: var(--foam); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: 104px 0; position: relative; }
.section-head { max-width: 64ch; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); margin: 0 0 18px; }

/* golden song-wave divider */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; height: 40px; }
.wave-divider path {
  fill: none; stroke: var(--gold); stroke-width: 1.4; opacity: 0.55;
  stroke-dasharray: 7 11; animation: drift 16s linear infinite;
}
@keyframes drift { to { stroke-dashoffset: -220; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(85% 60% at 50% -12%, rgba(66, 132, 232, 0.55), transparent 60%),
    linear-gradient(180deg, #0a4a9e 0%, #052a5e 34%, #04173a 62%, var(--abyss) 100%);
}
/* drifting god-rays */
.hero-bg::before {
  content: "";
  position: absolute; inset: -25% -12% auto -12%; height: 135%;
  background:
    linear-gradient(101deg, transparent 47%, rgba(200, 222, 255, 0.07) 50%, transparent 53%),
    linear-gradient(93deg, transparent 31%, rgba(200, 222, 255, 0.05) 34%, transparent 37%),
    linear-gradient(110deg, transparent 62%, rgba(200, 222, 255, 0.06) 66%, transparent 70%),
    linear-gradient(85deg, transparent 18%, rgba(200, 222, 255, 0.045) 21%, transparent 24%),
    linear-gradient(118deg, transparent 78%, rgba(200, 222, 255, 0.05) 81%, transparent 85%);
  transform-origin: top center;
  animation: rays 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes rays { from { opacity: 0.55; transform: translateX(-2.5%) skewX(-1deg); } to { opacity: 1; transform: translateX(2.5%) skewX(1deg); } }
/* edge vignette */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 -120px 120px -60px var(--abyss), inset 0 60px 90px -60px rgba(3, 11, 26, 0.6);
}
/* the siren-song waveline */
.songline {
  position: absolute; left: 0; right: 0; top: 60%;
  width: 100%; height: 130px; z-index: 1; pointer-events: none; opacity: 0.9;
}
.songline path {
  fill: none; stroke: var(--gold); stroke-width: 2;
  filter: drop-shadow(0 0 12px rgba(230, 193, 105, 0.55));
  stroke-dasharray: 5 13; animation: drift 13s linear infinite;
}

.hero-inner { position: relative; z-index: 2; padding: 140px 0 110px; }
.hero h1 { font-size: clamp(3rem, 10vw, 7.6rem); margin: 0 0 22px; }
.hero h1 .row { display: block; }
.hero h1 .row.big { color: var(--foam); }
.hero h1 .row.lit { color: var(--gold); }
.hero .song { display: block; font-size: clamp(1.5rem, 4vw, 2.4rem); margin: 0 0 30px; }
.hero .lede { margin: 0 0 36px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Countdown ---------- */
.countdown { margin-top: 58px; max-width: 580px; }
.countdown .cd-label {
  font-family: "Cinzel", serif; font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 18px;
}
.cd-grid { display: flex; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cd-cell { flex: 1; text-align: center; padding: 20px 8px; position: relative; }
.cd-cell + .cd-cell::before { content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; background: var(--line-soft); }
.cd-num { font-family: "Inter", sans-serif; font-weight: 700; font-size: clamp(1.9rem, 6vw, 3rem); color: var(--foam); line-height: 1; font-variant-numeric: tabular-nums; }
.cd-unit { font-family: "Cinzel", serif; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mist); margin-top: 12px; }
.cd-note { font-family: "Inter", sans-serif; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--mist); margin: 18px 0 0; }

/* ---------- Cards ---------- */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.card { background: rgba(6, 22, 52, 0.72); padding: 40px 32px; transition: background 0.3s ease, transform 0.25s ease; }
.card:hover { background: rgba(9, 34, 78, 0.85); transform: translateY(-3px); }
.card-glyph { width: 38px; height: 38px; color: var(--gold); margin-bottom: 24px; }
.card h3 { font-family: "Cinzel", serif; font-weight: 700; text-transform: uppercase; font-size: 1.15rem; letter-spacing: 0.06em; margin: 0 0 14px; }
.card p { margin: 0; color: var(--mist); font-size: 0.98rem; }

/* ---------- Banner ---------- */
.banner {
  position: relative;
  background: linear-gradient(120deg, rgba(9, 34, 78, 0.9), rgba(4, 16, 40, 0.85));
  border: 1px solid var(--line);
  padding: 52px 48px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px;
  overflow: hidden;
}
.banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 100% 0%, rgba(230, 193, 105, 0.14), transparent 55%); pointer-events: none; }
.banner .banner-copy { max-width: 48ch; position: relative; }
.banner .tag { font-family: "Cinzel", serif; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.banner h3 { font-family: "Cinzel", serif; font-weight: 800; text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: 0.04em; margin: 0 0 12px; }
.banner p { margin: 0; color: var(--mist); position: relative; }
.banner .btn { position: relative; }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.news-card { display: flex; flex-direction: column; background: rgba(6, 22, 52, 0.72); padding: 34px 30px; text-decoration: none; transition: background 0.3s ease; }
.news-card:hover { background: rgba(9, 34, 78, 0.9); }
.news-src { font-family: "Cinzel", serif; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.news-card h3 { font-family: "Cormorant Garamond", serif; font-weight: 600; font-size: 1.5rem; line-height: 1.2; margin: 0 0 12px; color: var(--foam); }
.news-card p { margin: 0 0 22px; color: var(--mist); font-size: 0.96rem; flex: 1; }
.news-more { font-family: "Inter", sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 24px; padding-left: 10px; }
.timeline::before { content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(180deg, var(--gold), var(--gold-deep) 45%, transparent); }
.tl-item { position: relative; padding: 0 0 52px 48px; }
.tl-item::before { content: ""; position: absolute; left: 4px; top: 8px; width: 15px; height: 15px; border-radius: 50%; background: var(--abyss); border: 1px solid var(--gold); box-shadow: 0 0 0 4px rgba(230, 193, 105, 0.1); }
.tl-year { font-family: "Cinzel", serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.16em; color: var(--gold); margin: 0 0 10px; }
.tl-item h3 { font-family: "Cinzel", serif; font-weight: 700; text-transform: uppercase; font-size: 1.4rem; letter-spacing: 0.04em; margin: 0 0 12px; }
.tl-item p { margin: 0; color: var(--mist); max-width: 62ch; }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; padding: 150px 0 70px; overflow: hidden; }
.page-hero .hero-bg { opacity: 0.9; }
.page-hero h1 { font-size: clamp(2.6rem, 8vw, 5.2rem); margin: 0 0 20px; position: relative; z-index: 2; }
.page-hero .lede { position: relative; z-index: 2; }
.page-hero .song { position: relative; z-index: 2; display: block; font-size: clamp(1.3rem, 3vw, 1.8rem); margin: 0 0 8px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 64px 0 44px; background: var(--deep-navy); position: relative; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; margin-bottom: 44px; }
.footer-brand { max-width: 42ch; }
.footer-brand .brand-text { font-size: 1.3rem; }
.footer-brand p { color: var(--mist); font-size: 0.94rem; margin: 18px 0 0; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 { font-family: "Cinzel", serif; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.footer-col a { display: block; text-decoration: none; color: var(--mist); font-size: 0.92rem; margin-bottom: 11px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }
.disclaimer { border-top: 1px solid var(--line-soft); padding-top: 28px; font-size: 0.8rem; color: var(--mist); line-height: 1.75; }
.disclaimer strong { color: var(--siren-light); font-weight: 600; }

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

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(3, 11, 26, 0.97); border-bottom: 1px solid var(--line); padding: 8px 26px 20px; display: none; }
  #site-nav.open .nav-links { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-links a::after { display: none; }
  .section { padding: 74px 0; }
  .banner { padding: 36px 28px; }
  .card { padding: 32px 26px; }
  .brand-text { font-size: 0.88rem; letter-spacing: 0.1em; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .hero-bg::before { opacity: 0.8; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Focus ---------- */
a:focus-visible, button:focus-visible, .btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
