:root {
  --bg: #f5f7fb;
  --paper: #ffffff;
  --ink: #32363d;
  --muted: #6e7480;
  --soft: #e9eef6;
  --brand: #ff4001;
  --brand-dark: #e63a00;
  --brand-soft: rgba(255,64,1,.12);
  --blue: #043c58;
  --blue-2: #0a5578;
  --blue-mid: #1f3c7e;
  --blue-soft: rgba(4,60,88,.10);
  --line: rgba(4,60,88,.14);
  --shadow: 0 22px 60px rgba(4,60,88,.10);
  --radius: 30px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  word-break: normal;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 7% 12%, rgba(255,64,1,.08), transparent 26%),
    radial-gradient(circle at 86% 2%, rgba(4,60,88,.08), transparent 32%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo img { width: 214px; height: auto; }
.nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.nav a:hover { color: var(--brand); }
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  border: 0;
  box-shadow: 0 16px 34px rgba(255,64,1,.22);
}
.btn:hover { background: var(--brand-dark); color: #fff; }
.btn.secondary {
  background: #fff;
  color: var(--blue);
  border: 1px solid rgba(4,60,88,.18);
  box-shadow: none;
}

.hero {
  padding: 74px 0 54px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  text-transform: uppercase;
  letter-spacing: .075em;
  font-size: 12px;
  font-weight: 900;
}
h1, h2, h3 {
  line-height: 1.04;
  margin: 0;
  letter-spacing: -.045em;
}
h1 {
  margin-top: 18px;
  max-width: 740px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(46px, 6vw, 82px);
  color: var(--blue);
}
h1 span, .orange { color: var(--brand); }
.lead {
  margin: 22px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 12px;
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--line);
  font-weight: 850;
  font-size: 13px;
}
.player-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.player-card h2 {
  margin: 12px 0 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px;
  color: var(--blue);
}
.player-shell {
  width: 300px;
  height: 250px;
  margin: 0 auto;
  overflow: visible;
}
.player-shell iframe {
  display: block;
  width: 300px !important;
  height: 250px !important;
  min-width: 300px;
  min-height: 250px;
  border: 0;
  border-radius: 18px;
  background: #fff;
}
.player-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

section { padding: 70px 0; }
.section-head {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}
.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 4vw, 58px);
  color: var(--ink);
}
.section-title span { color: var(--brand); }
.section-text {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card {
  min-width: 0;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin-top: 14px;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  font-size: 27px;
}
.card p {
  margin: 13px 0 0;
  color: var(--muted);
}
.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 950;
}
.icon.orange { background: var(--brand-soft); color: var(--brand); }

.split-band {
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
}
.split-copy { padding: 46px; }
.split-copy h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 4vw, 58px);
  color: #fff;
}
.split-copy p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.80);
  font-size: 18px;
}
.signal {
  min-height: 380px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.22), transparent 12%),
    linear-gradient(135deg, var(--blue-2), var(--blue-mid));
  position: relative;
  overflow: hidden;
}
.signal:before,
.signal:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.26);
}
.signal:before { width: 210px; height: 210px; }
.signal:after { width: 330px; height: 330px; }
.signal-dot {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 18px rgba(255,64,1,.16);
  z-index: 2;
}

.youth {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 22px;
  align-items: stretch;
}
.youth-panel {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff, rgba(4,60,88,.06));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.youth-panel h2 {
  margin-top: 14px;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--blue);
  font-size: clamp(32px, 4vw, 52px);
}
.youth-panel p {
  margin: 16px 0 0;
  color: var(--muted);
}
.list {
  display: grid;
  gap: 16px;
}
.list-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
}
.list-item strong { display: block; color: var(--ink); margin-bottom: 2px; }
.list-item p { margin: 0; color: var(--muted); }

.schedule-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.schedule-card .link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--brand);
  font-weight: 950;
}

.joomla-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.joomla-link {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 950;
  color: var(--blue);
}
.joomla-link span { display: block; margin-top: 6px; color: var(--muted); font-weight: 600; font-size: 14px; }

.direct-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.direct-inline h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 4vw, 58px);
  color: var(--blue);
}
.direct-inline p {
  max-width: 720px;
  color: var(--muted);
  margin: 16px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-data {
  display: grid;
  gap: 12px;
  color: var(--muted);
  margin-top: 20px;
}
.contact-data strong { color: var(--ink); }
.notice {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,64,1,.08), rgba(4,60,88,.08));
  border: 1px solid var(--line);
}
.notice p { margin: 0; color: var(--muted); }

.footer {
  margin-top: 70px;
  padding: 42px 0;
  background: var(--blue);
  color: #fff;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.footer img { width: 170px; }
.footer small { color: rgba(255,255,255,.76); }

@media (max-width: 980px) {
  .nav ul { display: none; }
  .hero-grid,
  .section-head,
  .grid-3,
  .grid-4,
  .split-band,
  .youth,
  .joomla-links,
  .direct-inline,
  .contact { grid-template-columns: 1fr; }
  .player-card { width: fit-content; max-width: 100%; }
  .player-shell { width: 300px; max-width: 100%; overflow-x: auto; }
  .direct-inline { justify-items: start; }
  .split-copy { padding: 34px; }
  .signal { min-height: 260px; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, var(--max)); }
  .logo img { width: 178px; }
  .hero { padding-top: 46px; }
  section { padding: 48px 0; }
  .card, .youth-panel, .contact, .direct-inline { padding: 22px; border-radius: 22px; }
  .player-card { padding: 18px; }
  .player-shell,
  .player-shell iframe { width: 300px !important; height: 250px !important; }
}
