:root {
  --yellow: #FFDA06;
  --white: #FFFFFF;
  --blue: #1799D6;
  --black: #1D1D1B;
  --red: #E62E2D;
  --muted: #B7B7B1;
  --surface: #11110F;
  --surface-soft: #181815;
  --line: rgba(255, 218, 6, 0.22);
  --container: 1240px;
  --header-height: 78px;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(12, 12, 11, 0.72);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(12, 12, 11, 0.94);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name strong {
  color: var(--yellow);
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 10px;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  inset: 0;
  display: flex;
  min-height: 100svh;
  padding: 120px 28px 42px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background:
    linear-gradient(135deg, rgba(255, 218, 6, 0.08), transparent 42%),
    var(--black);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  width: fit-content;
  font-family: var(--display);
  font-size: clamp(2.3rem, 12vw, 4rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a::after {
  display: block;
  width: 0;
  height: 4px;
  margin-top: 6px;
  background: var(--yellow);
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.nav-cta {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--yellow);
  border-radius: 0;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 0 rgba(255, 218, 6, 0);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  box-shadow: 0 12px 35px rgba(255, 218, 6, 0.22);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.9rem;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--yellow);
  background: rgba(255, 218, 6, 0.08);
}

.button-dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: calc(var(--header-height) + 55px) 0 48px;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: #090908;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto -10% -1px;
  height: 120px;
  background: linear-gradient(to top, var(--black), transparent);
  content: "";
}

.hero-photo {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.76) 78%),
    url("../../image/squadre/SerieB-02.jpg");
  background-position: 57% center;
  background-size: cover;
  filter: saturate(0.92) contrast(1.05);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 5, 0.96) 0%, rgba(6, 6, 5, 0.7) 42%, rgba(6, 6, 5, 0.1) 76%),
    linear-gradient(135deg, transparent 55%, rgba(255, 218, 6, 0.18));
  content: "";
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 42px;
}

.eyebrow {
  display: flex;
  margin: 0 0 16px;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow span {
  color: var(--white);
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.7rem, 22vw, 8.5rem);
}

.hero h1 em,
.section h2 em,
.final-cta h2 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 7vw, 2.15rem);
  font-weight: 500;
  line-height: 1.1;
}

.hero-text {
  max-width: 590px;
  margin: 20px 0 0;
  color: #DEDED9;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  margin-top: 30px;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.hero-badges {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.hero-club-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-club-mark,
.gold-seal img,
.quality-badge img {
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
}

.hero-club-mark {
  width: 94px;
  flex: 0 0 auto;
}

.hero-project-mark {
  margin-left: 0;
}

.hero-club-mark img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.gold-seal {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.gold-seal img {
  box-shadow: 0 0 34px rgba(255, 218, 6, 0.23);
}

.gold-seal small {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hero-status {
  display: flex;
  padding-top: 18px;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-status strong {
  margin-left: auto;
  color: var(--white);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px var(--yellow);
  animation: pulse 1.8s infinite;
}

.mobile-gold-badge {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: 12px;
  display: flex;
  padding: 7px 10px 7px 7px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 218, 6, 0.55);
  background: rgba(17, 17, 15, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.72rem;
  line-height: 0.92;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-gold-badge.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.mobile-gold-badge img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
}

.mobile-gold-badge strong {
  color: var(--yellow);
  font-size: 1.05rem;
}

.section {
  position: relative;
  padding: 90px 0;
}

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

.section h2,
.final-cta h2 {
  font-size: clamp(3.5rem, 16vw, 6.7rem);
}

.section-heading > p:last-child,
.identity-intro > p:last-child,
.teams-heading > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
}

.future-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(23, 153, 214, 0.12), transparent 25%),
    var(--black);
}

.future-grid {
  display: grid;
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.future-item {
  position: relative;
  min-height: 285px;
  padding: 30px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.item-index {
  color: rgba(255, 218, 6, 0.46);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
}

.future-item h3 {
  max-width: 260px;
  margin: 24px 0 12px;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.future-item p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.item-state {
  position: absolute;
  bottom: 28px;
  left: 0;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.identity-section {
  padding-top: 38px;
  background: #0E0E0D;
}

.identity-intro {
  margin-bottom: 48px;
}

.territory-grid {
  display: grid;
}

.territory-card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  overflow: hidden;
  color: var(--black);
  isolation: isolate;
}

.territory-card::after {
  position: absolute;
  z-index: -1;
  right: -38px;
  bottom: -105px;
  width: 220px;
  height: 220px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.22;
  content: "";
}

.territory-card span {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
}

.territory-card h3 {
  margin: 70px 0 2px;
  font-family: var(--display);
  font-size: 3.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.territory-card p {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.territory-montorio {
  background: var(--yellow);
}

.territory-teramo {
  background: var(--red);
  color: var(--white);
}

.territory-roseto {
  background: var(--blue);
  color: var(--white);
}

.territory-torricella {
  background: var(--white);
}

.quality-section {
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(255, 218, 6, 0.08), transparent 48%),
    #11110F;
}

.quality-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 218, 6, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 218, 6, 0.22) 1px, transparent 1px);
  background-size: 66px 66px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.quality-light {
  position: absolute;
  top: 10%;
  left: -160px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(255, 218, 6, 0.13);
  filter: blur(70px);
}

.quality-layout {
  position: relative;
  display: grid;
  gap: 62px;
}

.quality-badge {
  position: relative;
  display: grid;
  width: min(84vw, 470px);
  aspect-ratio: 1;
  margin-inline: auto;
  place-items: center;
}

.quality-badge img {
  position: relative;
  z-index: 2;
  width: 74%;
  aspect-ratio: 1;
  object-fit: contain;
  box-shadow: 0 0 85px rgba(255, 218, 6, 0.14);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 218, 6, 0.34);
  border-radius: 50%;
}

.orbit-one {
  inset: 5%;
  animation: orbit 14s linear infinite;
}

.orbit-two {
  inset: 0;
  border-style: dashed;
  opacity: 0.55;
  animation: orbit 20s linear infinite reverse;
}

.quality-copy {
  align-self: center;
}

.quality-copy h2 {
  max-width: 720px;
}

.quality-lead {
  margin: 28px 0 14px;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.1;
}

.quality-copy > p:not(.eyebrow, .quality-lead) {
  max-width: 650px;
  color: var(--muted);
}

.quality-points {
  display: grid;
  margin-top: 36px;
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.quality-points div {
  padding: 20px;
  background: var(--surface);
}

.quality-points strong,
.quality-points span {
  display: block;
}

.quality-points strong {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.18rem;
  text-transform: uppercase;
}

.quality-points span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.teams-section {
  background: var(--black);
}

.teams-heading {
  display: grid;
  margin-bottom: 45px;
  gap: 12px;
}

.team-gallery {
  display: grid;
  gap: 12px;
}

.team-card {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  background: #090908;
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: filter 350ms ease, transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.team-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent 58%);
  content: "";
}

.team-card:hover img {
  filter: saturate(1.12);
  transform: scale(1.035);
}

.team-card figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.team-card figcaption span,
.team-card figcaption strong {
  display: block;
}

.team-card figcaption span {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-card figcaption strong {
  margin-top: 2px;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-action {
  display: flex;
  margin-top: 34px;
  justify-content: center;
}

.final-cta {
  position: relative;
  min-height: 590px;
  padding: 100px 0;
  overflow: hidden;
  background: var(--yellow);
  color: var(--black);
  isolation: isolate;
}

.final-cta-photo {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, var(--yellow) 10%, rgba(255, 218, 6, 0.82) 58%, rgba(255, 218, 6, 0.35)),
    url("../../image/squadre/progetto-08.jpg");
  background-position: center;
  background-size: cover;
  mix-blend-mode: multiply;
}

.final-cta .eyebrow {
  color: var(--black);
}

.final-cta h2 em {
  color: var(--black);
  -webkit-text-stroke: 1px rgba(29, 29, 27, 0.35);
}

.final-cta-inner > p:not(.eyebrow) {
  max-width: 650px;
  margin: 30px 0;
  font-weight: 600;
}

.site-footer {
  padding: 58px 0 24px;
  background: #090908;
}

.footer-grid {
  display: grid;
  gap: 34px;
}

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

.footer-brand .brand-mark {
  width: 64px;
  height: 64px;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 1.28rem;
  text-transform: uppercase;
}

.footer-brand p,
.footer-details p {
  margin: 2px 0;
}

.footer-brand p {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-details {
  color: #C8C8C3;
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.footer-details strong {
  color: var(--white);
}

.footer-label {
  margin: 0 0 12px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.social-link {
  display: flex;
  min-height: 52px;
  padding: 7px 9px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.73rem;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-link:hover {
  border-color: var(--yellow);
  background: rgba(255, 218, 6, 0.07);
  color: var(--white);
  transform: translateY(-2px);
}

.social-link > span:last-child,
.social-link strong {
  display: block;
}

.social-link strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.82rem;
}

.social-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.social-icon img {
  width: 17px;
  height: 17px;
}

.social-link-youtube {
  grid-column: 1 / -1;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  margin-top: 42px;
  padding-top: 18px;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #8B8B85;
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  display: block;
  margin-top: 8px;
  color: #AFAFA9;
}

.footer-credit a {
  display: inline-block;
  margin-left: 4px;
  color: var(--white);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.footer-credit a span {
  color: var(--yellow);
}

.footer-credit a:hover {
  color: var(--yellow);
  text-shadow: 2px 0 0 rgba(23, 153, 214, 0.65), -2px 0 0 rgba(230, 46, 45, 0.55);
}

.footer-bottom p:last-child {
  color: var(--yellow);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.update-dialog {
  width: min(100% - 32px, 560px);
  max-width: none;
  padding: 0;
  border: 1px solid rgba(255, 218, 6, 0.45);
  background: var(--surface);
  color: var(--white);
}

.update-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.dialog-panel {
  position: relative;
  padding: 38px 26px 26px;
}

.dialog-panel h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 12vw, 4.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.dialog-panel > p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: var(--muted);
}

.dialog-close {
  display: block;
  min-height: 44px;
  margin: 24px 0 0 auto;
  padding: 10px 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.7);
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 620px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-badges {
    max-width: 500px;
    grid-template-columns: 210px 1fr;
  }

  .hero-club-mark {
    width: 120px;
  }

  .gold-seal {
    grid-template-columns: 105px 1fr;
    font-size: 1.55rem;
  }

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

  .future-item:nth-child(odd) {
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .future-item:nth-child(even) {
    padding-left: 24px;
  }

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

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

  .team-card-wide {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-credit {
    display: inline;
    margin: 0 0 0 8px;
  }
}

@media (min-width: 900px) {
  :root {
    --header-height: 88px;
  }

  .container {
    width: min(100% - 64px, var(--container));
  }

  .brand-mark {
    width: 58px;
    height: 58px;
  }

  .brand-name {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    min-height: 0;
    padding: 0;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2.7vw, 38px);
    background: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
  }

  .site-nav a::after {
    height: 2px;
  }

  .nav-cta {
    margin: 0 0 0 12px;
  }

  .hero {
    min-height: 780px;
    padding-bottom: 38px;
    align-items: center;
  }

  .hero-photo {
    left: 34%;
    background-position: center;
  }

  .hero-photo::after {
    background:
      linear-gradient(90deg, #080807 0%, rgba(8, 8, 7, 0.94) 18%, rgba(8, 8, 7, 0.47) 56%, rgba(8, 8, 7, 0.08) 85%),
      linear-gradient(135deg, transparent 62%, rgba(255, 218, 6, 0.19));
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: center;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(7.2rem, 11vw, 10.8rem);
  }

  .hero-badges {
    display: flex;
    align-self: end;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-club-mark {
    width: 132px;
  }

  .gold-seal {
    grid-template-columns: 118px 1fr;
    font-size: 1.45rem;
  }

  .hero-status {
    grid-column: 1 / -1;
  }

  .mobile-gold-badge {
    display: none;
  }

  .section {
    padding: 125px 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: clamp(5rem, 8.4vw, 8.2rem);
  }

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

  .future-item {
    min-height: 330px;
    padding: 34px 26px 38px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .future-item:first-child {
    padding-left: 0 !important;
  }

  .future-item:last-child {
    padding-right: 0 !important;
    border-right: 0;
  }

  .identity-section {
    padding-top: 70px;
  }

  .identity-intro {
    display: grid;
    margin-bottom: 62px;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 80px;
  }

  .identity-intro .eyebrow,
  .identity-intro h2 {
    grid-column: 1;
  }

  .identity-intro > p:last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
  }

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

  .territory-card:nth-child(even) {
    transform: translateY(28px);
  }

  .quality-layout {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
  }

  .quality-points {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .teams-heading {
    grid-template-columns: 1fr 0.55fr;
    align-items: end;
    gap: 80px;
  }

  .team-gallery {
    grid-auto-rows: 300px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .team-card,
  .team-card img {
    min-height: 0;
  }

  .team-card-wide {
    grid-column: span 2;
  }

  .team-card:first-child {
    grid-row: span 2;
  }

  .team-card:nth-child(6) {
    grid-column: span 2;
  }

  .final-cta {
    display: grid;
    min-height: 670px;
    align-items: center;
  }

  .final-cta-inner > p:not(.eyebrow) {
    max-width: 720px;
  }

  .footer-grid {
    grid-template-columns: 0.75fr 1.4fr 1.15fr 0.5fr;
    align-items: start;
    gap: 28px;
  }

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

@media (min-width: 1220px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 370px;
  }

  .hero-badges {
    padding-bottom: 20px;
  }

  .hero-club-mark {
    width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
