/* @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,400;1,500&display=swap'); */

@font-face {
  font-family: "Avengeance";
  src: url("../fonts/avengeance.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #071116;
  --bg-soft: #0d1d24;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --white: #ffffff;
  --text: #eaf3f5;
  --muted: rgba(234, 243, 245, 0.72);
  --dark-text: #0b1720;
  --accent: #3892f8;
  --accent-2: #fef300;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 34px;
  --radius-md: 24px;
  --container: 1180px;
  --transition: 0.3s ease;
  --font: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

html.is-scrollbar-dragging {
  scroll-behavior: auto;
  user-select: none;
}

.page-scrollbar {
  position: fixed;
  top: 4px;
  right: 0;
  bottom: 4px;
  z-index: 10000;
  width: 18px;
  pointer-events: none;
}

.page-scrollbar-thumb {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  min-height: 48px;
  cursor: grab;
  pointer-events: auto;
  touch-action: none;
  will-change: transform;
}

.page-scrollbar-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  right: 3px;
  bottom: 0;
  width: 6px;
  border-radius: 999px;
  background: #f4eb00;
  opacity: 0.9;
  transition: width 0.2s ease, opacity 0.2s ease;
}

.page-scrollbar-thumb:hover::before,
.page-scrollbar-thumb.is-dragging::before {
  width: 8px;
  opacity: 1;
}

.page-scrollbar-thumb.is-dragging {
  cursor: grabbing;
}

body:has(.lightbox.is-open) .page-scrollbar,
body:has(.pdf-lightbox.is-open) .page-scrollbar {
  display: none;
}

body {
  font-family: var(--font);
  background: #f6f3ee;
  color: var(--dark-text);
  line-height: 1.7;
}

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

.icon {
    width: 32px;
    height: 32px;
}

.mobile-minor {
  font-size: 14px;
}

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.hero .container {
  max-width: 1380px !important;
  width: calc(100% - 48px);
}

.section {
  padding: 110px 0;
}

.section-dark {
  background: radial-gradient(circle at top left, #042030, #0062ad);
  color: var(--white);
}
.gallery-slider {
  position: relative;
  display: grid;
  width: 100vw;
  align-items: center;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  gap: 22px;
  margin-top: 4rem;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(400px, 480px);
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  padding: 12px 4px 34px;
  scrollbar-width: none;
  background: transparent;
  box-shadow: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  position: relative;
  aspect-ratio: 4 / 3.7;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: transparent;
  cursor: pointer;
  scroll-snap-align: start;
  padding: 0;
  box-shadow: 0 10px 24px rgba(0, 20, 34, 0.16);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.04);
}

.gallery-caption {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 72px 24px 22px;
  background: linear-gradient(
    to bottom,
    rgba(2, 24, 38, 0) 0%,
    rgba(2, 24, 38, 0.22) 34%,
    rgba(2, 24, 38, 0.68) 68%,
    rgba(2, 24, 38, 0.94) 100%
  );
  color: #fff;
  font-size: clamp(1.08rem, 1.25vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  text-shadow:
    0 2px 5px rgba(0, 0, 0, 0.72),
    0 0 18px rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.gallery-arrow {
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: .25s ease;
  z-index: 2;
}

#galleryPrev {
  left: 40px;
}

#galleryNext {
  right: 40px;
}

.gallery-arrow:hover {
  transform: translateY(calc(-50% - 2px));
  background: rgba(255,255,255,.16);
}

@media (min-width: 721px) {
  .gallery-arrow {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.11);
  }

  #galleryPrev {
    left: 24px;
  }

  #galleryNext {
    right: 24px;
    left: auto;
  }

  .gallery-arrow:hover {
    transform: translateY(calc(-50% - 2px));
  }
}

@media (max-width: 720px) {
  .gallery-slider {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .gallery-track {
    grid-auto-columns: minmax(280px, 86vw);
    gap: 18px;
    padding-inline: 0;
    margin-left: 20px;
    margin-right: 20px;
  }

  .gallery-card {
    aspect-ratio: 4 / 3.6;
    border-radius: 26px;
  }

  .gallery-caption {
    padding: 60px 18px 18px;
    font-size: 1.08rem;
  }

  .gallery-arrow {
    width: 46px;
    height: 46px;
    top: 50%;
    background: rgba(255,255,255,.16);
  }

  #galleryPrev {
    left: 12px;
  }

  #galleryNext {
    right: 12px;
  }
}

.section-soft {
  background: radial-gradient(circle at top left, #042030, #0062ad);
}

.eyebrow {
  margin-bottom: 54px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}



h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 980px;
  font-size: clamp(4.6rem, 7.4vw, 7.2rem);
  font-family: 'Avengeance', serif;
  white-space: nowrap;
  color: white;
}

h2 {
  /* max-width: 780px; */
  font-weight: 700;
  font-size: clamp(2.4rem, 3.8vw, 4rem);
}

#brandLogo {
  transition: opacity .25s ease;
}

h3 {
  font-size: 1.25rem;
}

.section-text,
.section-head p,
.contact-box p {
  max-width: 720px;
  margin-top: 24px;
  color: #52616c;
  font-size: 1.05rem;
}

.section-dark .section-text,
.section-dark .section-head p,
.section-dark .contact-box p {
  color: var(--muted);
}



.navbar.is-scrolled .navbar-shell {
  background: rgba(255, 255, 255, 0.82);
  color: var(--dark-text);
  border-color: rgba(7, 17, 22, 0.08);
  align-content: center;
  height: 80px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

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

a.brand:hover {
  text-decoration: none;
}

.weekly-info {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.weekly-info div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #52616c;
  font-weight: 700;
}

.weekly-info svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.poster-card {
  position: relative;
  overflow: hidden;
  border: 0;
  cursor: pointer;
  transform: rotate(3deg);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.poster-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.poster-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  background: rgba(39, 122, 163, 0.616);
  color: #fff;
  font-weight: 850;
  backdrop-filter: blur(16px);
}

.pdf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.pdf-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pdf-frame {
  width: min(920px, 94vw);
  height: min(88vh, 900px);
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.pdf-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(16px);
}

@media (max-width: 720px) {
  .pdf-frame {
    width: 94vw;
    height: 82vh;
    border-radius: 20px;
  }

  .pdf-lightbox-close {
    top: auto;
    right: auto;
    bottom: 24px;
  }
}

.brand small {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  opacity: 0.72;
}

.brand strong {
  font-size: 15px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.82;
  transition: var(--transition);
}

.nav-links a:hover {
  opacity: 1;
  text-decoration: none;
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-btn {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: inherit;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  width: min(420px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--dark-text);
  font-weight: 800;
}

.mobile-menu a:hover {
  background: rgba(7, 17, 22, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 550;
  cursor: pointer;
  transition: var(--transition);
}

.btn-facebook {
  background: #1877f2;
  color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.btn-facebook:hover {
  background: #1051a7;
  color: #fff;
  transform: translateY(-4px);
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .75rem;

  padding: .95rem 1.5rem;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.14);

  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);

  color: #fff;
  font-weight: 700;
  font-size: .95rem;

  box-shadow:
    0 8px 30px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.08);

  transition: .25s ease;

  position: relative;
}

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

  background: rgba(255,255,255,.14);

  box-shadow:
    0 16px 40px rgba(0,0,0,.25);
}

.btn-primary [data-lucide]{
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
  color: #fff;
}

.btn-primary span{
  white-space: nowrap;
  font-size: 1rem;
}

.btn-light {
  background: var(--white);
  color: #06131a;
}

.btn-glass,
.btn-outline {
  border-color: var(--border);
  background: var(--surface);
  color: var(--white);
  backdrop-filter: blur(16px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-outline {
  color: var(--dark-text);
  border-color: rgba(7, 17, 22, 0.12);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(120px, 14vh, 170px) 0 clamp(48px, 8vh, 80px);
  overflow: hidden;
  color: var(--white);
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #042030, #0062ad);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-glow {
  position: absolute;
  width: 680px;
  height: 680px;
  right: -180px;
  top: 14%;
  border-radius: 50%;
  /* background: linear-gradient( 135deg, rgba(238, 195, 55, 0.349), transparent 100%); */
  filter: blur(150px);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.btn-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  box-shadow: 0 18px 50px rgba(253, 29, 29, 0.22);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-shell {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  max-width: 780px;
  width: 100%;
  box-shadow:0 30px 80px rgba(0,0,0,0.45), 0 0 80px rgba(0,141,213,0.15);
  transform: rotate(3deg);
  transition: transform .45s ease;
}

.hero-image-shell:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image {
  width: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  bottom: -50px;
  right: -70px;

  padding: 1rem 1.2rem;
  border-radius: 22px;

  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.14);

  box-shadow: 0 20px 50px rgba(0,0,0,0.35);

  display: flex;
  flex-direction: column;
  gap: .35rem;

  color: var(--white);
}

.hero-floating-label {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-text {
  max-width: 720px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 180px));
  gap: 14px;
  margin-top: 54px;
}

.hero-stats article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

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

.hero-copy {
  max-width: 760px;
}

.hero-stats strong {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.split,
.weekly-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
}

.contact-section {
  overflow: hidden;
}

.contact-box {
  position: relative;
  overflow: visible;
  min-height: 520px;
  padding: 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 141, 213, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

@media (max-width: 1150px) {

  .contact-box{
    overflow:visible;
  }

  .contact-content{
    max-width:100%;
  }

  .contact-visual{
    position: relative;

    right:auto;
    bottom:auto;

    width:min(100%,420px);

    margin:40px auto 0;
  }

}

@media (max-width: 1280px) {
  .contact-box {
    padding: 46px;
  }

  .contact-visual {
    width: clamp(240px, 28vw, 340px);
    right: -20px;
  }

  .contact-content {
    max-width: calc(100% - 280px);
  }
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: calc(100% - 340px);
}

.contact-copy h2 {
  max-width: 680px;
}

.contact-copy p {
  max-width: 620px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  max-width: 620px;
  margin-top: 42px;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 42px rgba(0,0,0,0.16);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.contact-social:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.13);
  box-shadow: 0 24px 60px rgba(0,0,0,0.24);
  text-decoration: none;
  color: var(--white);
}

.contact-social-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 16px;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  background: rgba(255,255,255,0.12);
}

.contact-social-icon svg,
.contact-social-icon i {
  width: 22px;
  height: 22px;
}

.contact-social strong,
.contact-social small {
  display: block;
  line-height: 1.15;
}

.contact-social strong {
  font-size: 1rem;
}

.contact-social small {
  margin-top: 5px;
  color: rgba(255,255,255,0.66);
  font-size: .78rem;
}

.contact-social.facebook .contact-social-icon {
  background: rgba(24, 119, 242, 0.18);
  color: #70b3ff;
}

.contact-social.instagram .contact-social-icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}

.contact-social.whatsapp .contact-social-icon {
  background: rgba(37, 211, 102, 0.18);
  color: #25d366;
}

.contact-social.email .contact-social-icon {
  background: rgba(223, 187, 177, 0.2);
  color: var(--accent-2);
}

.contact-visual {
  position: absolute;

  right: clamp(-40px, -3vw, -20px);
  bottom: clamp(30px, 5vw, 70px);

  z-index: 1;

  width: clamp(260px, 30vw, 430px);

  pointer-events: none;
}

.contact-photo-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 34px;
  background: rgba(255,255,255,0.08);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  transform: rotate(5deg);
}

.contact-photo-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  opacity: .95;
}

.contact-mini-badge {
  position: absolute;
  left: -28px;
  bottom: 76px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  font-weight: 800;
}

.contact-mini-badge svg {
  width: 19px;
  height: 19px;
  color: var(--accent);
}

@media (max-width: 1080px) {
  /* .contact-box {
    padding: 46px;
  }

  .contact-content {
    max-width: 100%;
  }

  .contact-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 420px);
    margin: 42px auto -90px;
  } */
}

@media (max-width: 720px) {
  /* .contact-box {
    min-height: auto;
    padding: 32px;
    overflow: visible;
  } */

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-social {
    min-height: 68px;
  }

  /* .contact-visual {
    width: 82%;
    margin: 36px auto -70px;
    transform: translateX(18px);
  } */

  .contact-photo-card {
    transform: rotate(4deg);
  }
}

.glass-card,
.poster-card,
.card {
  border: 1px solid rgba(7, 17, 22, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(18px);
}

.glass-card {
  padding: 34px;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.glass-card svg,
.card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: #fef300;
}

svg.bikesection {
  color: #3892f8;
}

.glass-card p,
.card p {
  margin-top: 14px;
  color: #1a2438;
}

.section-head {
  margin-bottom: 48px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;
  gap: 18px;
}

/* .gallery-card {
  aspect-ratio: 1 / 1;
  overflow: hidden;

  border: 0;
  border-radius: var(--radius-lg);

  background: #14252d;
  cursor: pointer;

  /* box-shadow: var(--shadow);

  padding: 0;
}

.gallery-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform .6s ease;
} */

/* .gallery-card:hover img {
  transform: scale(1.05);
} */

/* .poster-card {
  overflow: hidden;
  padding: 4px;
  rotate: calc(5deg);
}

.poster-card img {
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
} */

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

.card {
  padding: 28px;
}

.subtitle {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 400;
  opacity: 0.85;
}

.sponsor-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 141, 213, 0.12), transparent 32%),
    var(--light-bg-soft);
}

.sponsor-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 40px;
  margin-bottom: 54px;
}

.sponsor-header h2 {
  max-width: 780px;
}

.sponsor-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 150px;
  text-align: center;
  padding: 28px;
  border: 1px solid var(--border-dark);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.sponsor-cta > span {
  display: block;
  margin-bottom: 16px;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 600;
}

.sponsor-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 18px 0 24px;
  contain: layout paint;
  isolation: isolate;
}

.sponsor-marquee::before,
.sponsor-marquee::after {
  display: none;
}

.sponsor-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  animation: sponsorScroll 28s linear infinite;
  backface-visibility: hidden;
  will-change: transform;
}

.sponsor-logo {
  transition: transform 0.28s ease, opacity 0.28s ease, filter 0.28s ease;
  flex: 0 0 auto;

  width: 220px;
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-logo:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.2);
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 110px;

  width: auto;
  height: auto;

  object-fit: contain;
  backface-visibility: hidden;

  opacity: .7;
  transition: .3s ease;
}

@keyframes sponsorScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 11px));
  }
}

@media (max-width: 900px) {
  .sponsor-header {
    grid-template-columns: 1fr;
  }

  .sponsor-cta {
    max-width: 420px;
  }

  .sponsor-marquee::before,
  .sponsor-marquee::after {
    width: 70px;
  }

  .sponsor-logo {
    width: 190px;
    height: 96px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .sponsor-marquee {
    height: 160px;
    max-height: none;
    overflow: hidden;
    padding: 16px 0 24px;
  }

  .sponsor-marquee-track {
    flex-direction: row;
    align-items: center;
    gap: 36px;
    width: max-content;
    animation: sponsorScroll 26s linear infinite;
    margin: 0;
  }

  .sponsor-logo {
    width: min(74vw, 340px);
    height: 120px;
    margin: 0;
  }

  .sponsor-logo img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
  }
}

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

.contact-box {
  grid-template-columns: 1fr;
  padding: 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
}

.footer {
  padding: 42px 0 34px;
  background: #050d11;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.footer-brand {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-text {
  max-width: 380px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-legal {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-note {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.46);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  transition: 0.25s ease;
  border: 1px solid #ffffff57;
  background: linear-gradient(90deg, #023b63, #023b63);
  padding: 10px 20px;
  border-radius: 20px;
  margin: 0 auto;
}
.logo-footer {
  margin: 0;
  min-width: 100px;
}

.footer-credit:hover {
  color: rgba(255, 255, 255, 0.555);
  text-decoration: none;
}

@media (max-width: 760px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .logo-footer {
    margin: 0 auto;
  }

}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 92vw;
  max-height: 84vh;
  border-radius: 28px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--white);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.8s ease;
}

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

.weekly-grid {

  display:grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(260px,320px)
    );

  justify-content:center;

  gap:24px;

  margin-top:40px;
}

.weekly-card {
  position:relative;
  border:0;
  padding-top:10px;
  padding-bottom:10px;
  padding-left: 20px;
  padding-right: 20px;

  background-color: #fff;

  overflow:hidden;
  border-radius:28px;

  cursor:pointer;

  box-shadow: var(--shadow);
}

.weekly-card img{
  width:100%;
  /* aspect-ratio:4/5; */
  object-fit:cover;

  transition:.5s ease;
}

.weekly-card:hover img{
  transform:scale(1.04);
}

.weekly-card-overlay{
  position:absolute;
  inset:auto 0 0 0;

  padding:16px;

  color:white;

  background:linear-gradient(
    transparent,
    rgba(0,0,0,.8)
  );
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .hero .container {
    max-width: 760px !important;
    width: calc(100% - 32px);
  }

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

  .gallery {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .gallery-card {
    width: min(100%, 320px);
  }

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

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

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

  .hide-mobile {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    padding: 130px 0 64px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-content {
  grid-template-columns: 1fr;
  gap: 1rem;
  }

  .hero-text {
    margin-top: 18px;
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .hero-image {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(4rem, 16vw, 6rem);
  }

  .hero-image-shell {
    max-width: 100%;
    transform: rotate(1.5deg);
  }

  .hero-floating-card {
    left: 10px;
    bottom: 10px;
  }

  p.eyebrow {
    margin-bottom: 24px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    padding: 140px 0 54px;
    min-height: 92vh;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .hero-actions,
  .btn-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .contact-box {
    padding: 30px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

/* ==========================================================
   responsive fixes - contact section + mobile stability
   ========================================================== */

/* evita che contenuti lunghi facciano collassare le colonne */
.contact-section,
.contact-box,
.contact-content,
.contact-copy,
.contact-actions,
.contact-social,
.contact-visual {
  min-width: 0;
}

/* layout desktop controllato */
.contact-box {
  position: relative;
  overflow: visible;
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  max-width: none;
}

.contact-copy {
  min-width: 0;
}

.contact-copy h2,
.contact-copy p,
.contact-social strong,
.contact-social small {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.contact-copy h2 {
  max-width: 680px;
  font-size: clamp(2.4rem, 4vw, 3.45rem) !important;
  line-height: 1.05;
}

.contact-copy p {
  max-width: 640px;
}

.contact-actions {
  width: min(100%, 640px);
  max-width: none;
}

.contact-visual {
  position: absolute;
  right: clamp(-32px, -2.4vw, -14px);
  bottom: clamp(32px, 5vw, 70px);
  width: clamp(250px, 28vw, 410px);
  z-index: 5;
}

.contact-photo-card {
  transform: rotate(4deg);
  z-index: 6;
}

.navbar {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding-inline: 24px;
   transition: var(--transition);
}

.navbar-shell {
  width: min(1180px, 100%);
  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;

  height: 80px;
  padding: 0 18px;

  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 17, 22, 0.42);
  color: var(--white);
  backdrop-filter: blur(22px);
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.contact-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* fascia intermedia: niente sovrapposizioni strane */
@media (max-width: 1280px) {
  .contact-box {
    padding: 46px;
  }

  .contact-content {
    width: min(100%, 620px);
  }

  .contact-actions {
    width: min(100%, 580px);
  }

  .contact-visual {
    width: clamp(230px, 27vw, 330px);
    right: -18px;
  }
}

/* tablet / laptop stretti: la foto scende sotto */
@media (max-width: 1120px) {
  .contact-box {
    overflow: visible;
  }

  .contact-content {
    width: 100%;
    max-width: none;
  }

  .contact-copy h2,
  .contact-copy p {
    max-width: 100%;
  }

  .contact-actions {
    width: 100%;
    max-width: 680px;
  }

  .contact-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 420px);
    margin: 42px auto 0;
  }
}

/* mobile vero */
@media (max-width: 720px) {
  .contact-section {
    overflow: hidden;
  }

  .contact-box {
    width: min(100%, calc(100vw - 32px));
    min-height: auto;
    margin-inline: auto;
    padding: 30px 20px;
    border-radius: 28px;
    overflow: hidden;
  }

  .contact-content {
    width: 100%;
  }

  .contact-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3rem) !important;
    line-height: 1.05;
    letter-spacing: -0.05em;
  }

  .contact-copy p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .contact-social {
    width: 100%;
    min-height: 70px;
    padding: 14px 16px;
  }

  .contact-social small {
    font-size: 0.76rem;
    overflow-wrap: anywhere;
  }

  .contact-visual {
    width: min(92%, 330px);
    margin: 34px auto -8px;
  }

  .contact-photo-card {
    border-radius: 28px;
    transform: rotate(2deg);
  }
}

/* mobile stretto */
@media (max-width: 430px) {
  .contact-box {
    padding: 28px 18px;
  }

  .contact-copy h2 {
    font-size: clamp(2.05rem, 10.5vw, 2.65rem) !important;
  }

  .contact-social {
    gap: 12px;
  }

  .contact-social-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}

/* navbar mobile: evita sovrapposizioni enormi */
@media (max-width: 640px) {

  .navbar {
    top: 8px;
    padding-inline: 8px;
  }

  .navbar-shell {
    width: 100%;
    height: 84px;
    min-height: 84px;
    max-height: 84px;
    padding: 0 14px;
  }

  .brand img {
    width: 175px !important;
  }

  .menu-btn {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
  }
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 320px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  color: #082f49;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.footer-credit:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 233, 0.34);
  background: #ffffff;
  color: #082f49;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(255, 255, 255, 0.14);
}

.footer-credit-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 13px;
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.22);
}

.footer-credit-content {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.footer-credit-kicker {
  color: rgba(8, 47, 73, 0.48);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-credit-content strong {
  color: #082f49;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.08;
  white-space: nowrap;
}

.footer-credit-content small {
  color: #0284c7;
  font-size: 0.78rem;
  font-weight: 850;
}

.footer-credit-arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-left: 2px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: rgba(14, 164, 233, 0.267);
  color: #0284c7;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.footer-credit-arrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-credit:hover .footer-credit-arrow {
  transform: translate(2px, -2px);
  background: #0284c7;
  color: #ffffff;
}

/* ==========================================================
   Hero 2026 — editorial, open, unmistakably Ars et Robur
   ========================================================== */

.navbar {
  top: 0;
  padding-inline: 0;
}

.navbar-shell {
  width: min(1380px, calc(100% - 64px));
  height: 92px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.navbar.is-scrolled {
  top: 0;
  background: rgba(246, 243, 238, 0.9);
  box-shadow: 0 12px 35px rgba(2, 39, 67, 0.08);
  backdrop-filter: blur(18px);
}

.navbar.is-scrolled .navbar-shell {
  width: min(1380px, calc(100% - 64px));
  height: 72px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 17, 22, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav-links {
  gap: clamp(20px, 2.5vw, 42px);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a svg {
  width: 15px;
  height: 15px;
}

.nav-actions > .btn-facebook {
  min-height: 46px;
  padding: 0 5px 0 18px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-actions > .btn-facebook svg {
  width: 38px;
  height: 38px;
  margin-right: 8px;
  padding: 10px;
  background: var(--accent-2);
  color: #052b45;
}

.nav-actions > .btn-facebook:hover {
  background: transparent;
  color: var(--accent-2);
  box-shadow: none;
}

.navbar.is-scrolled .nav-actions > .btn-facebook {
  border-color: rgba(7, 17, 22, 0.16);
  color: #052b45;
}

.hero {
  min-height: 100svh;
  padding: 92px 0 0;
  isolation: isolate;
  background: #023b63;
}

.hero-bg {
  z-index: -3;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 20px),
    linear-gradient(118deg, #022f4f 0%, #034f83 58%, #0872b7 100%);
  background-size: 20px 20px, 100% 100%;
  transform: none;
}

.hero-glow {
  display: none;
}

.hero .container {
  width: min(1380px, calc(100% - 64px));
  max-width: none !important;
}

.hero-content {
  min-height: calc(100svh - 92px);
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.85fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: center;
}

.hero-copy {
  z-index: 2;
  max-width: 670px;
  padding: clamp(52px, 8vh, 94px) 0;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(30px, 5vh, 54px);
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.hero .eyebrow::after {
  content: "";
  width: 54px;
  height: 2px;
  order: -1;
  background: var(--accent-2);
}

.hero .eyebrow svg {
  display: none;
}

.hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(5.6rem, 9.2vw, 9rem);
  line-height: 0.72;
  letter-spacing: -0.035em;
  white-space: normal;
}

.hero .subtitle {
  display: block;
  margin-top: clamp(34px, 5vh, 54px);
  color: #fff;
  font-family: var(--font);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero .subtitle::before {
  content: "01 / ";
  color: var(--accent-2);
}

.hero-text {
  max-width: 570px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.72;
}

.hero-actions {
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.hero-actions .btn {
  min-height: 58px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: none;
}

.hero-actions .btn:first-child {
  padding: 0 24px;
  border: 0;
  background: var(--accent-2);
  color: #042f4d;
  box-shadow: 12px 12px 0 rgba(0, 30, 50, 0.26);
}

.hero-actions .btn:first-child:hover {
  transform: translate(-2px, -2px);
  background: var(--accent-2);
  color: #042f4d;
  box-shadow: 16px 16px 0 rgba(0, 30, 50, 0.26);
}

.hero-actions .btn:last-child {
  min-height: auto;
  padding: 10px 0 7px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: none;
}

.hero-actions .btn:last-child:hover {
  transform: none;
  border-color: var(--accent-2);
  background: transparent;
  color: var(--accent-2);
  box-shadow: none;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  z-index: 1;
  display: block;
  min-width: 0;
  margin: 0 calc((100vw - min(1380px, calc(100vw - 64px))) / -2) 0 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #034f83 0%, rgba(3, 79, 131, 0.65) 10%, rgba(3, 79, 131, 0.05) 34%, transparent 55%),
    linear-gradient(180deg, rgba(0, 25, 42, 0.05), rgba(0, 25, 42, 0.32));
  pointer-events: none;
}

.hero-image-shell {
  width: 100%;
  height: 100%;
  max-width: none;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.hero-image-shell:hover {
  transform: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% center;
  filter: saturate(0.86) contrast(1.05);
  transform: scale(1.015);
}

@media (max-width: 980px) {
  .navbar-shell,
  .navbar.is-scrolled .navbar-shell {
    width: calc(100% - 32px);
  }

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

  .hero .container {
    width: calc(100% - 40px);
    max-width: none !important;
  }

  .hero-content {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    max-width: 650px;
    padding: 52px 0 58px;
  }

  .hero h1 {
    font-size: clamp(5rem, 18vw, 8rem);
  }

  .hero-visual {
    width: 100vw;
    height: 44svh;
    min-height: 340px;
    margin: 0 0 0 calc(50% - 50vw);
  }

  .hero-visual::before {
    background: linear-gradient(180deg, #034f83 0%, rgba(3, 79, 131, 0.1) 25%, rgba(0, 25, 42, 0.22) 100%);
  }

  .hero-image {
    object-position: 50% 44%;
  }
}

@media (max-width: 640px) {
  .navbar {
    top: 0;
    padding-inline: 0;
  }

  .navbar-shell,
  .navbar.is-scrolled .navbar-shell {
    width: calc(100% - 32px);
    height: 76px;
    min-height: 76px;
    max-height: 76px;
    padding: 0;
  }

  .brand img {
    width: 148px !important;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 0;
  }

  .hero {
    padding: 76px 0 0;
  }

  .hero .container {
    width: calc(100% - 32px);
  }

  .hero-copy {
    padding: 42px 0 48px;
  }

  .hero .eyebrow {
    align-items: flex-start;
    margin-bottom: 30px;
    font-size: 9px;
    line-height: 1.55;
  }

  .hero .eyebrow::after {
    flex: 0 0 30px;
    margin-top: 6px;
  }

  .hero h1 {
    font-size: clamp(4.25rem, 22vw, 6.4rem);
  }

  .hero .subtitle {
    margin-top: 34px;
    font-size: 10px;
  }

  .hero-text {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    gap: 22px;
    margin-top: 30px;
  }

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

  .hero-actions .btn:last-child {
    width: fit-content;
  }

  .hero-visual {
    height: 37svh;
    min-height: 270px;
  }
}

/* ==========================================================
   Hero next — contemporary cycling culture
   ========================================================== */

.hero {
  display: block;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: #f1f0e8;
  color: #062f4d;
}

.hero > .hero-bg,
.hero > .hero-glow,
.hero > .hero-content {
  display: none;
}

.navbar {
  color: #062f4d;
}

.navbar-shell {
  border-bottom-color: rgba(6, 47, 77, 0.2);
}

.nav-links a {
  opacity: 0.72;
}

.nav-actions > .btn-facebook {
  border-left-color: rgba(6, 47, 77, 0.2);
  color: #062f4d;
}

.nav-actions > .btn-facebook:hover {
  color: #0068a9;
}

.menu-btn {
  border-color: rgba(6, 47, 77, 0.2);
  background: transparent;
  color: #062f4d;
}

.hero-next {
  position: relative;
  width: min(1380px, calc(100% - 64px));
  min-height: 100svh;
  margin-inline: auto;
  padding: 124px 0 46px;
}

.hero-next::before {
  content: "";
  position: absolute;
  top: 92px;
  bottom: 0;
  left: 38%;
  width: 1px;
  background: rgba(6, 47, 77, 0.12);
  pointer-events: none;
}

.hero-next-topline {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: rgba(6, 47, 77, 0.52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero-next-heading {
  position: relative;
  z-index: 4;
  width: min(100%, 1080px);
  /* margin-top: clamp(40px, 6vh, 70px); */
}

.hero-next-index {
  margin: 0 0 18px 4px;
  color: #0070b5;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.18em;
  font-family: arial, helvetica, sans-serif;
  text-transform: uppercase;
}

.hero-next h1 {
  margin: 0;
  max-width: none;
  color: #062f4d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(5.8rem, 10.4vw, 10.4rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-transform: uppercase;
  white-space: normal;
}

.hero-next h1 span {
  color: #0876b9;
  font-weight: 300;
}

.hero-next-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 63%;
  height: 56%;
  overflow: hidden;
  background: #062f4d;
}

.hero-next-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 55, 89, 0.2), transparent 36%),
    linear-gradient(180deg, transparent 60%, rgba(1, 28, 46, 0.36));
  pointer-events: none;
}

.hero-next-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(0.82) contrast(1.08);
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
}

.hero-next-photo:hover img {
  transform: scale(1.025);
}

.hero-next-photo-label {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-next-intro {
  position: absolute;
  left: 0;
  bottom: 48px;
  z-index: 5;
  width: min(31%, 390px);
}

.hero-next-intro > p {
  margin: 0;
  color: rgba(6, 47, 77, 0.72);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.hero-next-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 18px;
}

.hero-next-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 210px;
  min-height: 56px;
  padding: 0 12px 0 18px;
  background: #f4eb00;
  color: #062f4d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-next-primary svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  /* border: 1px solid rgba(6, 47, 77, 0.24); */
}

.hero-next-primary:hover {
  transform: translate(-3px, -3px);
  color: #062f4d;
  text-decoration: none;
  box-shadow: 8px 8px 0 #062f4d;
}

.hero-next-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(6, 47, 77, 0.35);
  color: #062f4d;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-next-link svg {
  width: 16px;
  height: 16px;
}

.hero-next-link:hover {
  border-color: #0070b5;
  color: #0070b5;
  text-decoration: none;
}

.hero-next-mark {
  position: absolute;
  right: -5px;
  top: 126px;
  z-index: 1;
  color: rgba(6, 47, 77, 0.055);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(9rem, 20vw, 20rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.8;
  pointer-events: none;
}

@media (max-width: 980px) {
  .hero-next {
    width: calc(100% - 40px);
    padding-top: 110px;
  }

  .hero-next::before {
    left: 34%;
  }

  .hero-next h1 {
    font-size: clamp(5rem, 15vw, 8rem);
  }

  .hero-next-photo {
    width: 62%;
    height: 51%;
  }

  .hero-next-intro {
    width: 30%;
  }

  .hero-next-mark {
    top: 120px;
  }
}

@media (max-width: 720px) {
  .hero-next {
    width: calc(100% - 32px);
    min-height: auto;
    padding: 104px 0 0;
  }

  .hero-next::before,
  .hero-next-topline span:first-child,
  .hero-next-mark {
    display: none;
  }

  .hero-next-topline {
    justify-content: flex-start;
  }

  .hero-next-heading {
    margin-top: 34px;
  }

  .hero-next-index {
    font-size: 10px;
  }

  .hero-next h1 {
    font-size: clamp(4rem, 20vw, 6.4rem);
    line-height: 0.82;
  }

  .hero-next-photo {
    position: relative;
    width: 100vw;
    height: 42svh;
    min-height: 300px;
    margin: 42px 0 0 calc(50% - 50vw);
  }

  .hero-next-photo img {
    object-position: 52% center;
  }

  .hero-next-intro {
    position: relative;
    width: 100%;
    padding: 32px 0 46px;
  }

  .hero-next-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
  }
}

@media (max-width: 430px) {
  .hero-next h1 {
    font-size: clamp(3.6rem, 19vw, 5.1rem);
  }

  .hero-next-photo {
    height: 36svh;
    min-height: 270px;
  }

  .hero-next-primary {
    width: 100%;
  }
}

/* ==========================================================
   Hero final — clear identity, authentic team photography
   ========================================================== */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.hero {
  background: #023f69;
  color: #fff;
}

.hero-next {
  width: min(1240px, calc(100% - 64px));
  min-height: 100svh;
  padding: 118px 0 48px;
}

.sponsor-button {
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #3892f8;
  color: #fff;
  text-align: center;
}

.sponsor-button span {
  display: inline;
  margin: 0;
  color: inherit;
}

.hero-next::before {
  top: 92px;
  bottom: 48px;
  left: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.hero-next::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 50%;
  z-index: 0;
  width: min(47vw, 570px);
  aspect-ratio: 600 / 423;
  background: #f4eb00;
  transform: translateY(-46%) translate(16px, 16px);
}

.navbar {
  color: #fff;
}

.navbar-shell {
  width: min(1240px, calc(100% - 64px));
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.28);
}

.nav-links a,
.nav-actions > .btn-facebook {
  color: #fff;
  opacity: 1;
  text-shadow: 0 1px 18px rgba(0, 20, 34, 0.24);
}

.nav-links a:hover,
.nav-actions > .btn-facebook:hover {
  color: #f4eb00;
}

.nav-actions > .btn-facebook {
  border-left-color: rgba(255, 255, 255, 0.28);
}

.navbar.is-scrolled .navbar-shell {
  width: min(1240px, calc(100% - 64px));
  color: #062f4d;
}

.navbar.is-scrolled .nav-links a,
.navbar.is-scrolled .nav-actions > .btn-facebook {
  color: #062f4d;
  text-shadow: none;
}

.menu-btn {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.navbar.is-scrolled .menu-btn {
  border-color: rgba(6, 47, 77, 0.2);
  color: #062f4d;
}

.hero-next-topline {
  color: rgba(255, 255, 255, 0.68);
}

.hero-next-heading {
  width: 48%;
  margin-top: clamp(66px, 10vh, 110px);
}

.hero-next-index {
  display: inline-block;
  margin: 0 0 28px;
  padding: 9px 12px 8px;
  background:#f4eb00;
  color: #053c63;
  /* font-size: 14px; */
  /* font-weight: 900; */
  letter-spacing: 0.13em;
  line-height: 1.35;
  /* text-transform: uppercase; */
}

.hero-next h1 {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(5.2rem, 7.5vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-next h1 span {
  color: #fff;
  font-weight: 300;
}

.hero-next-manifesto {
  margin: 30px 0 0 4px;
  color: #f4eb00;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-next-photo {
  top: 50%;
  right: 0;
  bottom: auto;
  width: min(47vw, 600px);
  height: auto;
  aspect-ratio: 600 / 423;
  overflow: visible;
  background: transparent;
  transform: translateY(-46%);
}

.hero-next-photo.reveal,
.hero-next-photo.reveal.is-visible {
  transform: translateY(-46%);
}

.hero-next-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.hero-next-photo::after {
  background: linear-gradient(180deg, transparent 68%, rgba(0, 25, 42, 0.42));
}

.hero-next-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
}

.hero-next-photo-label {
  right: 18px;
  bottom: 15px;
}

.hero-next-intro {
  left: 0;
  bottom: 46px;
  width: min(43%, 440px);
}

.hero-next-intro > p {
  color: rgba(255, 255, 255, 0.72);
}

.hero-next-link {
  border-bottom-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.hero-next-link:hover {
  border-color: #f4eb00;
  color: #f4eb00;
}

.hero-next-mark {
  right: auto;
  left: 51%;
  top: 132px;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(8rem, 15vw, 15rem);
}

@media (min-width: 981px) and (max-height: 850px) {
  .hero-next {
    padding-top: clamp(82px, 13vh, 104px);
    padding-bottom: clamp(20px, 3vh, 32px);
  }

  .hero-next::before {
    top: clamp(72px, 11vh, 88px);
    bottom: clamp(20px, 3vh, 32px);
  }

  .hero-next-heading {
    margin-top: clamp(20px, 4vh, 36px);
  }

  .hero-next-index {
    margin-bottom: clamp(12px, 2vh, 18px);
    padding: 7px 10px;
    font-size: clamp(11px, 1vw, 14px);
  }

  .hero-next h1 {
    font-size: clamp(4.8rem, min(7.1vw, 14vh), 7rem);
    line-height: 0.8;
  }

  .hero-next-manifesto {
    margin-top: clamp(12px, 2vh, 18px);
  }

  .hero-next-intro {
    bottom: clamp(20px, 4vh, 34px);
  }

  .hero-next-intro > p {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.5;
  }

  .hero-next-actions {
    gap: clamp(10px, 2vh, 16px);
    margin-top: clamp(10px, 2vh, 16px);
  }

  .hero-next-primary {
    min-height: 48px;
  }
}

@media (max-width: 980px) {
  .hero-next {
    width: calc(100% - 40px);
    min-height: auto;
    padding: 110px 0 0;
  }

  .hero-next::before,
  .hero-next::after,
  .hero-next-mark {
    display: none;
  }

  .hero-next-heading {
    width: 100%;
    margin-top: 0px;
  }

  .hero-next h1 {
    font-size: clamp(5rem, 14vw, 7rem);
  }

  .hero-next-photo {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 600px);
    height: auto;
    margin: 48px 0 0 auto;
    transform: none;
  }

  .hero-next-photo.reveal,
  .hero-next-photo.reveal.is-visible {
    transform: none;
  }

  .hero-next-intro {
    position: relative;
    bottom: auto;
    width: min(100%, 520px);
    padding: 15px 0 54px;
  }
}

@media (max-width: 640px) {
  .navbar-shell,
  .navbar.is-scrolled .navbar-shell {
    width: calc(100% - 32px);
  }

  .hero-next {
    width: calc(100% - 32px);
    padding-top: 98px;
  }

  .hero-next-topline span:first-child {
    display: block;
  }

  .hero-next-topline span:last-child {
    display: none;
  }

  .hero-next-heading {
    /* margin-top: 40px; */
  }

  .hero-next-index {
    /* max-width: 300px; */
    margin-bottom: 24px;
    font-size: 10px;
  }

  .hero-next h1 {
    font-size: clamp(4.1rem, 19vw, 5.8rem);
  }

  .hero-next-manifesto {
    margin-top: 25px;
    font-size: 10px;
  }

  .hero-next-photo {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 20px 0 0;
  }

  .hero-next-actions {
    flex-direction: row;
  }
}
