:root {
  --blue-950: #07162f;
  --blue-900: #0a2452;
  --blue-800: #0b3478;
  --blue-700: #0f55b8;
  --blue-500: #1d8dff;
  --cyan: #57d7ff;
  --ink: #102033;
  --muted: #5c6c7c;
  --line: #dce7f2;
  --surface: #ffffff;
  --soft: #f3f8fd;
  --court: #e7c178;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(7, 22, 47, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fbfdff;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.news-modal[hidden] {
  display: none;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
}

.news-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 29, .78);
  backdrop-filter: blur(10px);
}

.news-modal-panel {
  position: relative;
  width: min(940px, 100%);
  max-height: calc(100svh - 36px);
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(280px, .72fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .42);
}

.news-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 22, 47, .9);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.news-modal-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.news-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 44px);
}

.news-modal-copy h2 {
  margin-bottom: 16px;
  color: var(--blue-950);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.news-modal-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.news-modal-copy .btn {
  margin-top: 10px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: white;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(7, 22, 47, .94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: clamp(118px, 15vw, 184px);
  height: 52px;
  object-fit: contain;
  padding: 5px 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  font-size: .72rem;
  color: rgba(255, 255, 255, .76);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  color: rgba(255, 255, 255, .88);
}

.main-nav a:hover {
  background: rgba(255, 255, 255, .13);
  color: white;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 47, .98) 0%, rgba(7, 22, 47, .82) 34%, rgba(7, 22, 47, .28) 70%),
    linear-gradient(0deg, rgba(7, 22, 47, .78) 0%, rgba(7, 22, 47, 0) 42%);
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
  padding: 132px clamp(20px, 7vw, 78px) 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .93;
  letter-spacing: 0;
  max-width: 760px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  line-height: 1.16;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-weight: 900;
}

.btn-primary {
  background: var(--cyan);
  color: var(--blue-950);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, .35);
  color: white;
  background: rgba(255, 255, 255, .08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(10px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  line-height: 1;
}

.hero-stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: .84rem;
}

.partners-strip {
  padding: 20px clamp(18px, 4vw, 54px);
  background: white;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(7, 22, 47, .08);
}

.partners-inner {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
}

.partners-inner > strong {
  color: var(--blue-950);
  font-size: .94rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.partners-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 28px);
}

.partners-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fbff;
  color: var(--blue-800);
  font-size: .88rem;
  font-weight: 850;
  text-align: center;
}

.partners-links a:hover {
  border-color: rgba(15, 85, 184, .35);
  background: #e7f4ff;
}

section {
  padding: clamp(72px, 9vw, 122px) clamp(20px, 5vw, 70px);
}

.section-band {
  background:
    linear-gradient(135deg, rgba(29, 141, 255, .08), rgba(87, 215, 255, .04)),
    var(--soft);
}

.section-heading {
  width: min(1080px, 100%);
  margin: 0 auto 34px;
}

.section-heading h2 {
  max-width: 850px;
}

.intro-grid,
.team-grid,
.price-grid,
.staff-grid,
.shop-teaser-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article,
.team-card,
.price-card,
.staff-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 35px rgba(7, 22, 47, .06);
}

.intro-grid article {
  padding: 28px;
}

.intro-grid h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.intro-grid p,
.team-card p,
.tournament p,
.contact p {
  color: var(--muted);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  min-height: 220px;
  padding: 24px;
}

.team-card span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e7f4ff;
  color: var(--blue-800);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: 1.35rem;
}

.team-card p {
  margin-bottom: 20px;
}

.featured-card {
  background: linear-gradient(145deg, var(--blue-900), var(--blue-700));
  color: white;
  border-color: rgba(255, 255, 255, .08);
}

.featured-card h3,
.featured-card p {
  color: white;
}

.featured-card span {
  background: rgba(255, 255, 255, .15);
  color: var(--cyan);
}

.soft {
  background:
    linear-gradient(135deg, rgba(231, 193, 120, .2), rgba(29, 141, 255, .08)),
    white;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.price-card {
  min-height: 148px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.price-card strong {
  color: var(--blue-800);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1;
}

.highlight-price {
  background: var(--blue-950);
}

.highlight-price span,
.highlight-price strong {
  color: white;
}

.tournament {
  background: var(--blue-950);
  color: white;
}

.tournament-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.tournament h2 {
  margin-bottom: 22px;
}

.tournament p {
  color: rgba(255, 255, 255, .76);
}

.rules-grid {
  display: grid;
  gap: 14px;
}

.rules-grid article {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
}

.rules-grid strong,
.rules-grid span {
  display: block;
}

.rules-grid strong {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 1.08rem;
}

.rules-grid span {
  color: rgba(255, 255, 255, .78);
  line-height: 1.6;
}

.news-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 35px rgba(7, 22, 47, .06);
}

.news-card span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e7f4ff;
  color: var(--blue-800);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
}

.news-card h3 {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 1.35rem;
}

.news-card p {
  color: var(--muted);
  line-height: 1.7;
}

.news-card.featured-card span {
  background: rgba(255, 255, 255, .15);
  color: var(--cyan);
}

.news-card.featured-card h3,
.news-card.featured-card p {
  color: white;
}

.event-news-card {
  padding: 0;
  overflow: hidden;
}

.event-news-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.event-news-card div {
  padding: 22px;
}

.inline-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue-800);
  font-weight: 900;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.staff-grid article {
  padding: 20px;
}

.staff-grid strong,
.staff-grid span {
  display: block;
}

.staff-grid strong {
  margin-bottom: 7px;
  color: var(--blue-800);
  font-size: 1.12rem;
}

.staff-grid span {
  color: var(--muted);
  line-height: 1.45;
  font-size: .95rem;
}

.pending-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
  border: 1px dashed rgba(15, 85, 184, .35);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 35px rgba(7, 22, 47, .06);
}

.pending-panel strong,
.pending-panel p {
  display: block;
}

.pending-panel strong {
  margin-bottom: 10px;
  color: var(--blue-800);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.pending-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.shop-teaser {
  padding-top: clamp(48px, 6vw, 76px);
  padding-bottom: clamp(48px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(10, 36, 82, .96), rgba(15, 85, 184, .9)),
    var(--blue-900);
  color: white;
}

.shop-teaser-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.shop-teaser h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.shop-page {
  background: var(--blue-950);
}

.shop-page .site-header,
.calendar-page .site-header {
  position: sticky;
}

.calendar-page {
  background: var(--blue-950);
}

.shop-hero {
  min-height: calc(100svh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(87, 215, 255, .2), transparent 32%),
    linear-gradient(145deg, var(--blue-950), var(--blue-800));
}

.shop-hero-content {
  max-width: 820px;
}

.hanger-card,
.shop-slots span {
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .18);
}

.hanger-card {
  min-height: 320px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.shirt-shape {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 128px;
  height: 148px;
  transform: translateX(-50%);
  border-radius: 26px 26px 10px 10px;
  background:
    linear-gradient(135deg, var(--cyan), var(--blue-500) 48%, var(--blue-800));
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, .12);
}

.shirt-shape::before,
.shirt-shape::after {
  content: "";
  position: absolute;
  top: 24px;
  width: 48px;
  height: 58px;
  border-radius: 16px 16px 10px 10px;
  background: var(--blue-500);
}

.shirt-shape::before {
  left: -32px;
  transform: rotate(22deg);
}

.shirt-shape::after {
  right: -32px;
  transform: rotate(-22deg);
}

.hanger-card strong,
.hanger-card small {
  display: block;
  position: relative;
}

.hanger-card strong {
  font-size: 1.35rem;
}

.hanger-card small {
  margin-top: 8px;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.shop-slots {
  display: grid;
  gap: 14px;
}

.shop-slots span {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 20px;
  color: rgba(255, 255, 255, .72);
  font-weight: 900;
}

.shop-empty {
  background:
    linear-gradient(135deg, rgba(29, 141, 255, .08), rgba(231, 193, 120, .12)),
    var(--soft);
}

.future-product-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.future-product-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px dashed rgba(15, 85, 184, .35);
  border-radius: var(--radius);
  background: white;
}

.future-product-grid span,
.future-product-grid strong,
.future-product-grid p {
  display: block;
}

.future-product-grid span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--blue-800);
  color: white;
  font-weight: 900;
}

.future-product-grid strong {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 1.24rem;
}

.future-product-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.calendar-hero {
  min-height: 58svh;
  display: flex;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 82% 18%, rgba(87, 215, 255, .18), transparent 34%),
    linear-gradient(145deg, var(--blue-950), var(--blue-800));
}

.calendar-hero > div {
  width: min(900px, 100%);
}

.calendar-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
}

.calendar-filters,
.calendar-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 35px rgba(7, 22, 47, .06);
}

.calendar-filters {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.calendar-filters strong {
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: 1.1rem;
}

.calendar-filters button {
  padding: 10px 12px;
  border: 0;
  border-radius: var(--radius);
  background: #e7f4ff;
  color: var(--blue-800);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.calendar-filters button:hover,
.calendar-filters button.is-active {
  background: var(--blue-800);
  color: white;
}

.calendar-list {
  display: grid;
  gap: 14px;
}

.calendar-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.calendar-list article.is-hidden {
  display: none;
}

.calendar-date {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue-800);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .8rem;
}

.calendar-list h3 {
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: 1.35rem;
}

.calendar-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.calendar-list article > strong {
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--blue-950);
  color: white;
  font-size: .82rem;
}

.contact {
  background:
    radial-gradient(circle at 12% 0%, rgba(87, 215, 255, .16), transparent 32%),
    linear-gradient(145deg, var(--blue-900), var(--blue-950));
}

.contact-card {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 36px;
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  color: white;
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
}

.contact h2 {
  margin-bottom: 20px;
}

.contact p {
  color: rgba(255, 255, 255, .76);
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 16px;
  border-radius: var(--radius);
  background: white;
  color: var(--blue-950);
  font-weight: 850;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(20px, 5vw, 70px);
  color: white;
  background: #040c1d;
}

footer span {
  color: rgba(255, 255, 255, .68);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(7, 22, 47, .96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 15px;
    border-radius: var(--radius);
  }

  .news-modal-panel {
    grid-template-columns: 1fr;
    max-width: 560px;
    overflow-y: auto;
  }

  .news-modal-image {
    min-height: 0;
    max-height: 48svh;
  }

  .intro-grid,
  .team-grid,
  .news-grid,
  .staff-grid,
  .shop-teaser-shell,
  .shop-hero,
  .calendar-layout,
  .contact-card,
  .tournament-panel {
    grid-template-columns: 1fr 1fr;
  }

  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .future-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 14px;
    gap: 12px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 104px;
    height: 40px;
    padding: 4px 6px;
  }

  .partners-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .partners-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .partners-links a {
    min-height: 44px;
    justify-content: flex-start;
    border-radius: var(--radius);
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .news-modal {
    padding: 10px;
    align-items: end;
  }

  .news-modal-panel {
    max-height: calc(100svh - 20px);
    border-radius: 12px 12px 0 0;
  }

  .news-modal-copy {
    padding: 18px;
  }

  .news-modal-copy h2 {
    font-size: 1.8rem;
    line-height: 1;
  }

  .news-modal-image {
    max-height: 42svh;
    object-position: center top;
  }

  .news-modal-close {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    align-items: flex-end;
  }

  .hero-content {
    padding: 104px 18px 34px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    line-height: .98;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
    line-height: 1.05;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 22, 47, .96), rgba(7, 22, 47, .7)),
      linear-gradient(0deg, rgba(7, 22, 47, .86), rgba(7, 22, 47, .1));
  }

  .hero-stats,
  .intro-grid,
  .team-grid,
  .news-grid,
  .price-grid,
  .staff-grid,
  .shop-teaser-shell,
  .shop-hero,
  .calendar-layout,
  .contact-card,
  .tournament-panel {
    grid-template-columns: 1fr;
  }

  .calendar-list article {
    grid-template-columns: 1fr;
  }

  .shop-teaser-shell .btn {
    width: 100%;
  }

  .shop-hero {
    padding-top: 86px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  section {
    padding: 56px 16px;
  }

  .team-card,
  .price-card,
  .news-card {
    min-height: auto;
  }

  .team-card,
  .intro-grid article,
  .price-card,
  .news-card,
  .pending-panel {
    padding: 18px;
  }

  .event-news-card {
    padding: 0;
  }

  .event-news-card div {
    padding: 18px;
  }

  .team-card span,
  .news-card span {
    margin-bottom: 14px;
  }

  .price-grid {
    gap: 10px;
  }

  .price-card {
    min-height: 118px;
  }

  .price-card strong {
    margin-top: 18px;
  }

  .contact-card {
    padding: 22px;
    gap: 22px;
  }

  .contact-list a,
  .contact-list span {
    padding: 14px;
    font-size: .95rem;
  }

  .calendar-hero {
    min-height: auto;
    padding-top: 74px;
    padding-bottom: 54px;
  }

  .calendar-filters {
    grid-template-columns: 1fr 1fr;
    padding: 14px;
  }

  .calendar-filters strong {
    grid-column: 1 / -1;
  }

  .calendar-filters button {
    min-height: 44px;
    padding: 10px;
    text-align: center;
  }

  .calendar-list article {
    padding: 18px;
  }

  .shop-hero {
    min-height: auto;
  }

  footer {
    padding: 22px 16px;
  }
}
