:root {
  /* Jersey brand anchors */
  --red-brand: #d52b1e;
  --blue-brand: #42a5f5;

  /* Warm refined palette */
  --white: #fffdfb;
  --surface: #faf7f4;
  --red: #c93528;
  --red-hover: #ad2a1f;
  --red-soft: #fdf2ee;
  --red-glow: rgba(201, 53, 40, 0.13);
  --blue: #4a86b8;
  --blue-light: #7aabd4;
  --blue-dark: #2d5f8a;
  --blue-deep: #1a4568;
  --blue-soft: #f2ece6;
  --blue-glow: rgba(74, 134, 184, 0.16);
  --text: #2a2420;
  --muted: #736b62;
  --border: rgba(42, 36, 32, 0.09);
  --shadow: 0 16px 48px rgba(60, 40, 30, 0.08);
  --shadow-red: 0 8px 28px rgba(201, 53, 40, 0.2);
  --radius: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

/* ── Jersey stripe (collar) ── */
.jersey-stripe {
  height: 6px;
  background: linear-gradient(90deg, var(--red-brand) 0%, var(--red) 50%, var(--red-brand) 100%);
}

.jersey-stripe--top {
  position: sticky;
  top: 0;
  z-index: 30;
}

/* ── Header ── */
.header {
  position: sticky;
  top: 6px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--red-brand);
  box-shadow: 0 4px 20px var(--red-glow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo__mark {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__text strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--red);
}

.logo__text em {
  font-size: 0.78rem;
  font-style: normal;
  color: var(--blue-dark);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav a:hover {
  color: var(--red);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--red-brand) 0%, var(--red) 100%);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-hover) 100%);
}

.btn--secondary {
  background: var(--white);
  color: var(--blue-dark);
  border: 2px solid var(--blue-light);
}

.btn--secondary:hover {
  background: var(--blue-soft);
  border-color: var(--blue);
}

.btn--ghost {
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--blue-light);
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.88rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 64px 0 0;
  overflow: hidden;
  background: linear-gradient(165deg, var(--white) 0%, var(--blue-soft) 55%, #e8e0d8 100%);
}

.hero__swoosh {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__swoosh--blue {
  width: 680px;
  height: 680px;
  right: -180px;
  top: 60px;
  background: radial-gradient(circle, var(--blue-glow) 0%, rgba(74, 134, 184, 0.05) 55%, transparent 70%);
}

.hero__swoosh--red {
  width: 420px;
  height: 420px;
  right: 80px;
  bottom: 120px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 80px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  border: 1px solid rgba(201, 53, 40, 0.12);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow--blue {
  background: rgba(74, 134, 184, 0.09);
  color: var(--blue-dark);
  border-color: rgba(74, 134, 184, 0.16);
}

.hero h1 {
  margin: 0 0 8px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--red);
}

.hero h1 span {
  color: var(--blue-dark);
}

.hero__arc-text {
  margin: 0 0 20px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero__lead {
  max-width: 520px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.meta-card--wide {
  grid-column: 1 / -1;
}

.meta-card {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow);
}

.meta-card__label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.meta-card strong {
  display: block;
  margin-top: 6px;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  color: var(--red);
  letter-spacing: 0.02em;
}

.meta-card__hint {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero__visual {
  position: relative;
  min-height: 400px;
}

.hero__photo-frame {
  position: relative;
  width: min(100%, 400px);
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow:
    0 0 0 2px var(--blue-light),
    var(--shadow);
}

.hero__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.hero__badge {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(201, 53, 40, 0.18);
  border-left: 4px solid var(--red-brand);
  box-shadow: var(--shadow);
}

.hero__badge span {
  display: block;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__badge strong {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
  color: var(--text);
}

/* ── Pixel band (jersey bottom pattern) ── */
.pixel-band {
  height: 72px;
  background-color: var(--blue);
  background-image:
    linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 45%, var(--blue-deep) 100%);
  background-size: 14px 14px, 14px 14px, 100% 100%;
  mask-image: linear-gradient(to top, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 60%, transparent 100%);
}

.pixel-band--footer {
  mask-image: none;
  -webkit-mask-image: none;
  height: 48px;
  margin-top: 24px;
}

/* ── Sections ── */
.section {
  padding: 72px 0;
  position: relative;
}

.section--blue {
  background: linear-gradient(180deg, var(--blue-soft) 0%, var(--surface) 100%);
  overflow: hidden;
}

.section__swoosh {
  position: absolute;
  width: 900px;
  height: 900px;
  left: -300px;
  top: -400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 65%);
  pointer-events: none;
}

.section__head {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 32px;
}

.section__head h2 {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--red);
}

.section__head p {
  margin: 0;
  color: var(--muted);
}

/* ── Notice ── */
.notice {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(74, 134, 184, 0.2);
  border-left: 5px solid var(--red-brand);
  box-shadow: var(--shadow);
}

.notice h2 {
  margin: 0 0 8px;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--red);
}

.notice p {
  margin: 0;
  color: var(--muted);
}

.notice a {
  color: var(--blue-dark);
  font-weight: 700;
}

/* ── Cards ── */
.cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 134, 184, 0.32);
  box-shadow: var(--shadow);
}

.card--featured {
  border-color: rgba(201, 53, 40, 0.22);
  background: linear-gradient(160deg, var(--white) 0%, var(--red-soft) 100%);
}

.card__tag {
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card__tag--red {
  background: var(--red-soft);
  color: var(--red);
}

.card h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--text);
}

.card p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── Contacts ── */
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.contact-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red-brand);
  box-shadow: var(--shadow);
}

.contact-card__role {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.contact-card a {
  color: var(--red);
  font-weight: 700;
  font-size: 1.1rem;
}

.contact-card a:hover {
  color: var(--blue-dark);
}

/* ── Footer ── */
.footer {
  background: var(--white);
  padding: 32px 0 0;
  border-top: 3px solid var(--red-brand);
}

.footer__stripe {
  display: none;
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  color: var(--muted);
}

.footer__logo {
  flex-shrink: 0;
}

.footer__inner strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.02em;
}

.footer__inner p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: var(--blue-dark);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding-bottom: 48px;
  }

  .hero__visual {
    min-height: 320px;
  }

  .hero__meta {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .header__inner .btn--sm {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .logo__text em {
    display: none;
  }
}
