:root {
  --navy-950: #071b3e;
  --navy-900: #092a60;
  --navy-800: #0b397f;
  --blue: #124d9b;
  --blue-soft: #eaf1fb;

  --red-dark: #a70d14;
  --red: #cf141c;
  --red-light: #ed3138;

  --white: #ffffff;
  --off-white: #f7f8fa;
  --text: #121826;
  --muted: #667085;
  --line: rgba(255, 255, 255, 0.13);

  --shadow: 0 28px 80px rgba(7, 27, 62, 0.16);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================================
   HEADER / HERO
   ========================================================= */

.site-header {
  min-height: 100vh;
  padding-top: 110px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 17%, rgba(207, 20, 28, 0.28), transparent 28%),
    radial-gradient(circle at 14% 85%, rgba(18, 77, 155, 0.42), transparent 30%),
    linear-gradient(135deg, #071b3e 0%, #0b397f 55%, #071b3e 100%);
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.55) 1px, transparent 1px);
  background-size: 62px 62px;
}

.site-header::after {
  content: "";
  width: 520px;
  height: 520px;
  position: absolute;
  right: -170px;
  bottom: -250px;
  border-radius: 50%;
  border: 85px solid rgba(255,255,255,.035);
}

.nav {
  width: min(1160px, calc(100% - 40px));
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;

  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;

  background: rgba(7, 27, 62, .90);
  box-shadow: 0 14px 45px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: block;
  padding: 4px;
  border-radius: 19px;
  background: white;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .4px;
}

.brand-text small {
  color: rgba(255,255,255,.67);
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
}

.nav-links a {
  color: rgba(255,255,255,.80);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}

.nav-links a:hover {
  color: white;
  transform: translateY(-1px);
}

.nav-cta {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 10px 17px;
  background: rgba(255,255,255,.05);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
  padding: 55px 0 110px;
}

.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  letter-spacing: 2.6px;
  font-weight: 800;
  color: #ff6570;
  margin-bottom: 18px;
}

.eyebrow.dark {
  color: var(--red);
}

.hero h1,
.section-heading h2,
.registration-box h2,
.season-copy h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -1.5px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(74px, 9vw, 124px);
  font-weight: 900;
}

.hero h1 span {
  color: white;
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: "";
  height: 10px;
  position: absolute;
  left: 2px;
  right: -12px;
  bottom: -2px;
  border-radius: 999px;
  background: var(--red);
  transform: rotate(-1deg);
  z-index: -1;
}

.hero-text {
  max-width: 650px;
  margin-top: 31px;
  color: rgba(255,255,255,.73);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.btn-red {
  background: var(--red);
  color: white;
  box-shadow: 0 16px 38px rgba(207, 20, 28, .28);
}

.btn-primary:hover,
.btn-red:hover {
  background: var(--red-light);
}

.btn-secondary {
  color: white;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}

.hero-meta {
  display: flex;
  gap: 44px;
  margin-top: 52px;
}

.hero-meta > div {
  display: grid;
  gap: 4px;
}

.meta-label {
  color: rgba(255,255,255,.46);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.7px;
}

.hero-meta strong {
  font-size: 13px;
}

.hero-visual {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-poster {
  width: min(560px, 100%);
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: white;
  padding: 8px;
  box-shadow:
    0 42px 110px rgba(0, 0, 0, .34),
    0 0 0 1px rgba(255,255,255,.13);
  transform: rotate(1.5deg);
  transition: transform .3s ease, box-shadow .3s ease;
}

.hero-poster:hover {
  transform: rotate(0) translateY(-5px);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, .40),
    0 0 0 1px rgba(255,255,255,.18);
}

.hero-poster img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 23px;
}

.hero-poster-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 10px 15px;
  border-radius: 999px;
  color: white;
  background: rgba(7, 27, 62, .92);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.hero-stripe {
  height: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-stripe span:first-child {
  background: var(--red);
}

.hero-stripe span:last-child {
  background: white;
}

@keyframes floatRing {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.035); opacity: 1; }
}

/* =========================================================
   COMMON SECTIONS
   ========================================================= */

.section {
  padding: 118px 0;
  scroll-margin-top: 105px;
}

.section-dark {
  color: white;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 10%, rgba(207,20,28,.22), transparent 29%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
}

.section-dark::after {
  content: "";
  width: 380px;
  height: 380px;
  position: absolute;
  right: -140px;
  bottom: -240px;
  border-radius: 50%;
  border: 70px solid rgba(255,255,255,.035);
}

.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
}

.section-heading {
  max-width: 710px;
}

.section-heading h2,
.registration-box h2,
.season-copy h2 {
  color: var(--navy-950);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
}

.section-heading.light h2 {
  color: white;
}

.section-heading > p:not(.eyebrow),
.section-subtitle,
.season-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 21px;
  color: var(--muted);
}

.section-heading.light > p:not(.eyebrow) {
  color: rgba(255,255,255,.60);
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 34px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}

.society-cards {
  display: grid;
  gap: 18px;
}

.society-cards .info-card {
  width: 100%;
}

.vice-card {
  border-top-color: var(--navy-800);
}

.vice-card .icon-box {
  background: var(--red);
  font-size: 20px;
}

.icon-box {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: var(--navy-900);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.card-kicker {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.info-card h3 {
  margin-top: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  text-transform: uppercase;
}

.contact-link {
  display: inline-block;
  margin-top: 7px;
  color: var(--red);
  font-weight: 800;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
  position: relative;
  z-index: 2;
}

.feature-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
  transition: transform .25s ease, background .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.085);
}

.feature-number {
  margin-bottom: auto;
  color: #ff606a;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 31px;
}

.feature-card p {
  color: rgba(255,255,255,.56);
}

.feature-card strong,
.feature-card a {
  margin-top: 5px;
  color: white;
  font-size: 17px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

/* =========================================================
   NEW SEASON / POSTER
   ========================================================= */

.season-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.season-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 76px;
  align-items: center;
}

.season-copy {
  max-width: 520px;
}

.season-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0;
}

.season-highlights > div {
  min-height: 110px;
  padding: 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 18px;
  background: white;
  border: 1px solid #e8ecf3;
  box-shadow: 0 14px 34px rgba(8, 42, 95, .06);
}

.season-highlights strong {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 38px;
  line-height: .9;
}

.season-highlights span {
  margin-top: 13px;
  color: var(--navy-950);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  line-height: 1.35;
}

.poster-card {
  padding: 0;
  border: 0;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: white;
  box-shadow: 0 35px 90px rgba(7,27,62,.22);
  transform: rotate(1deg);
  transition: transform .3s ease, box-shadow .3s ease;
}

.poster-card:hover {
  transform: rotate(0) translateY(-5px);
  box-shadow: 0 42px 100px rgba(7,27,62,.27);
}

.poster-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(7,27,62,.08);
  border-radius: inherit;
  pointer-events: none;
}

.poster-zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 15px;
  border-radius: 999px;
  color: white;
  background: rgba(7,27,62,.88);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
}

/* =========================================================
   REGISTRATION
   ========================================================= */

.registration {
  color: white;
  background:
    linear-gradient(90deg, rgba(207,20,28,.96), rgba(167,13,20,.98));
}

.registration-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 54px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255,255,255,.12), transparent 30%),
    var(--navy-950);
  box-shadow: 0 34px 85px rgba(61, 0, 4, .24);
  border: 1px solid rgba(255,255,255,.1);
}

.registration-box h2 {
  color: white;
}

.registration-box p:not(.eyebrow) {
  max-width: 670px;
  margin-top: 18px;
  color: rgba(255,255,255,.62);
}

.download-card {
  min-width: 338px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  color: var(--navy-950);
  background: white;
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
  transition: transform .2s ease;
}

.download-card:hover {
  transform: translateY(-3px);
}

.download-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
  background: var(--red);
  font-size: 25px;
  font-weight: 900;
}

.download-card > span:last-child {
  display: grid;
}

.download-card small {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.download-card strong {
  margin-top: 2px;
  font-size: 14px;
}

/* =========================================================
   CONTACTS / MAP
   ========================================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 50px;
}

.contact-panel {
  padding: 36px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #e9edf3;
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row:last-of-type {
  margin-bottom: 26px;
}

.contact-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.contact-row a {
  color: var(--navy-800);
  font-weight: 800;
}

.map-card {
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
  background: var(--blue-soft);
  box-shadow: var(--shadow);
  border: 1px solid rgba(7, 27, 62, .08);
}

.map-frame {
  width: 100%;
  height: 520px;
  display: block;
  border: 0;
}


/* =========================================================
   SOCIAL
   ========================================================= */

.social-section {
  color: white;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(207, 20, 28, .30), transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(18, 77, 155, .38), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.social-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .06;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 54px 54px;
}

.social-section .container {
  position: relative;
  z-index: 1;
}

.social-heading h2 {
  color: white;
}

.social-heading > p:not(.eyebrow) {
  color: rgba(255,255,255,.62);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.social-card {
  min-height: 210px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border-radius: 26px;
  color: white;
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 72px rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.25);
}

.instagram-card {
  background:
    radial-gradient(circle at 20% 100%, rgba(255, 198, 0, .50), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(128, 52, 255, .55), transparent 35%),
    linear-gradient(135deg, #b3125d, #db1b43);
}

.facebook-card {
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.11), transparent 28%),
    linear-gradient(135deg, #124d9b, #092a60);
}

.social-icon {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}

.social-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.facebook-icon {
  font-family: Arial, sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}

.social-copy {
  min-width: 0;
  display: grid;
}

.social-copy small {
  margin-bottom: 6px;
  color: rgba(255,255,255,.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.social-copy strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.social-copy > span {
  margin-top: 16px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 700;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 34px 0;
  color: white;
  background:
    linear-gradient(90deg, var(--navy-950), var(--navy-900));
  border-top: 4px solid var(--red);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 15px;
}

.footer-logo img {
  border-radius: 11px;
}

.footer p {
  color: rgba(255,255,255,.50);
  font-size: 12px;
}

/* =========================================================
   LIGHTBOX / ANIMATIONS
   ========================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  background: rgba(4, 12, 28, .94);
  backdrop-filter: blur(8px);
  transition: opacity .25s ease, visibility .25s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  width: auto;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: 0 32px 100px rgba(0,0,0,.42);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 27px;
  border: 0;
  color: white;
  background: transparent;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
    z-index: 12;
  }

  .nav-links {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(7,27,62,.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0,0,0,.23);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 8px;
    font-size: 14px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
    border-radius: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 60px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-poster {
    max-width: 620px;
    margin: 0 auto;
  }

  .split,
  .contact-layout,
  .season-layout {
    grid-template-columns: 1fr;
  }

  .season-copy {
    max-width: 700px;
  }

  .poster-card {
    max-width: 720px;
    justify-self: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 205px;
  }

  .registration-box {
    grid-template-columns: 1fr;
  }

  .download-card {
    min-width: 0;
    width: 100%;
  }
}

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

  .social-card {
    min-height: 170px;
    padding: 22px;
    gap: 18px;
  }

  .social-icon {
    width: 62px;
    height: 62px;
    border-radius: 19px;
  }

  .social-icon svg {
    width: 34px;
    height: 34px;
  }

  .facebook-icon {
    font-size: 44px;
  }

  .social-copy strong {
    font-size: 26px;
  }


  .nav {
    width: calc(100% - 20px);
    height: 72px;
    top: 10px;
    padding: 0 12px;
    border-radius: 18px;
  }


  .container {
    width: min(100% - 28px, 1160px);
  }



  .brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .brand-logo img {
    border-radius: 11px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .brand-text small {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .site-header {
    min-height: auto;
    padding-top: 92px;
  }

  .hero {
    min-height: auto;
    padding: 74px 0 82px;
  }

  .hero h1 {
    font-size: clamp(63px, 19vw, 90px);
  }

  .hero h1 span::after {
    height: 7px;
  }

  .hero-text {
    font-size: 16px;
  }

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

  .hero-meta {
    flex-direction: column;
    gap: 18px;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 25px;
  }

  .hero-poster {
    width: 100%;
    padding: 6px;
    border-radius: 22px;
    transform: none;
  }

  .hero-poster img {
    border-radius: 17px;
  }

  .hero-poster-badge {
    right: 12px;
    bottom: 12px;
    font-size: 10px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .registration-box h2,
  .season-copy h2 {
    font-size: 50px;
  }

  .season-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .season-highlights > div:last-child {
    grid-column: span 2;
  }

  .poster-card {
    border-radius: 20px;
  }

  .poster-zoom {
    right: 12px;
    bottom: 12px;
  }

  .registration-box {
    gap: 30px;
    padding: 28px 22px;
    border-radius: 24px;
  }

  .download-card {
    align-items: flex-start;
  }

  .contact-panel {
    padding: 26px 22px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .map-card {
    min-height: 360px;
  }

  .map-frame {
    height: 360px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .full-mobile {
    width: 100%;
  }

  .lightbox {
    padding: 18px;
  }
}


/* Offset per la navigazione con header fisso */
#home,
#societa,
#segreteria,
#stagione,
#iscrizione,
#social,
#contatti {
  scroll-margin-top: 105px;
}
