@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "League Spartan";
  src: url("../fonts/LeagueSpartanVariable.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --teal: #087d70;
  --teal-dark: #075d56;
  --teal-pale: #dfeeea;
  --red: #a51f2b;
  --red-dark: #811720;
  --ink: #14201f;
  --muted: #5a6967;
  --cream: #f7f3ee;
  --paper: #ffffff;
  --line: #cedbd8;
  --shadow: 0 18px 50px rgba(20, 32, 31, 0.12);
  --radius: 1.25rem;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--teal-dark);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--red);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

p,
ul {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  color: #fff;
  background: var(--ink);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(206, 219, 216, 0.85);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 128px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.7rem 0.8rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.site-nav .nav-cta {
  margin-left: 0.35rem;
  color: #fff;
  background: var(--red);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: #fff;
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: 0;
  border-radius: 50%;
  background: var(--teal-pale);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.2rem;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 35, 33, 0.96) 0%, rgba(10, 35, 33, 0.88) 43%, rgba(10, 35, 33, 0.18) 74%),
    url("../images/venue-wide-1.webp") center/cover no-repeat;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.58fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(5rem, 9vw, 8rem) 4rem;
}

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

.hero .eyebrow {
  color: #a9ded5;
}

.hero h1 span {
  color: #9fe0d4;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 2rem;
  color: #edf6f4;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-primary:hover {
  color: #fff;
  background: var(--red-dark);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-light:hover {
  color: var(--ink);
  background: #fff;
}

.button-teal {
  color: #fff;
  background: var(--teal-dark);
}

.button-teal:hover {
  color: #fff;
  background: var(--teal);
}

.hero-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow);
  backdrop-filter: blur(13px);
}

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

.hero-card strong {
  margin-bottom: 0.2rem;
  color: #a9ded5;
  font-family: "League Spartan", sans-serif;
  font-size: 1.4rem;
}

.hero-card span + strong {
  margin-top: 1rem;
}

.quick-strip {
  background: var(--teal-dark);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-item {
  min-height: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  color: #fff;
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item strong {
  font-family: "League Spartan", sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
}

.quick-item span {
  color: #c8e8e1;
  font-size: 0.87rem;
}

.section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.section-soft {
  background: var(--cream);
}

.section-mint {
  background: var(--teal-pale);
}

.section-dark {
  color: #fff;
  background: var(--ink);
}

.section-net {
  background: var(--teal-dark);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-heading-wide {
  max-width: none;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-dark .section-heading p {
  color: #fff;
}

.section-dark .lead {
  color: #fff;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2.2rem, 7vw, 6rem);
}

.split-top {
  align-items: start;
}

.media-frame {
  position: relative;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-frame-portrait img {
  aspect-ratio: 4 / 5;
}

.media-frame-landscape img {
  aspect-ratio: 16 / 9;
}

.media-frame::after {
  position: absolute;
  z-index: -1;
  right: -1rem;
  bottom: -1rem;
  width: 48%;
  height: 48%;
  border-radius: var(--radius);
  background: var(--red);
  content: "";
}

.lead {
  color: var(--muted);
  font-size: 1.15rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 30px rgba(20, 32, 31, 0.06);
}

.feature-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.feature-title h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  white-space: nowrap;
}

.feature-icon {
  width: 2.15rem;
  height: 2.15rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.card p:last-child,
.info-panel p:last-child {
  margin-bottom: 0;
}

.feature-list,
.plain-list {
  padding: 0;
  list-style: none;
}

.feature-list li,
.plain-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.7rem;
  border-bottom: 1px solid var(--line);
}

.feature-list li::before,
.plain-list li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
  content: "•";
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 1rem;
  object-fit: cover;
}

.net-feature .eyebrow,
.section-dark .eyebrow {
  color: #a9ded5;
}

.evidence-note {
  padding-left: 1rem;
  border-left: 3px solid var(--red);
  color: #fff;
  font-size: 0.92rem;
}

.net-feature {
  align-items: start;
}

.net-feature .button-row {
  flex-wrap: nowrap;
}

.net-feature .button-row .button {
  padding-inline: 0.85rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

.net-feature .video-card {
  margin-top: 2.35rem;
}

.video-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-cookie-message {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.6rem;
  padding: 2rem;
  color: #fff;
  background: linear-gradient(145deg, #0c1716, #174d47);
  text-align: center;
}

.video-cookie-message strong {
  font-family: "League Spartan", sans-serif;
  font-size: 1.35rem;
}

.video-cookie-message span {
  max-width: 27rem;
  color: #c8d5d3;
  font-size: 0.85rem;
  line-height: 1.45;
}

.video-cookie-message button {
  padding: 0;
  border: 0;
  color: #a9ded5;
  background: transparent;
  font: inherit;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.video-card figcaption {
  padding: 1rem 1.2rem 1.15rem;
  color: #d8e8e5;
  font-size: 0.9rem;
}

.venue-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.venue-showcase img,
.venue-showcase video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  background: var(--ink);
  object-fit: cover;
}

.venue-showcase video {
  grid-column: 1 / -1;
}

.net-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.net-points article {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.net-points .feature-title h3 {
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
}

.net-points p,
.net-evidence > div:first-child p {
  color: #fff;
}

.net-evidence {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.section-dark .info-panel {
  color: var(--ink);
}

.section-dark .info-panel p {
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 4.3rem);
  border-radius: calc(var(--radius) * 1.35);
  color: #fff;
  background: var(--teal-dark);
}

.cta-band::after {
  position: absolute;
  top: -40%;
  right: -5%;
  width: 20rem;
  height: 20rem;
  border: 3.5rem solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band p {
  max-width: 700px;
  color: #d8ece8;
  font-size: 1.1rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 9rem);
  color: #fff;
  background: var(--ink);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: url("../images/paddles-and-ball.webp");
  background-position: center;
  background-size: cover;
  content: "";
}

.page-hero .container {
  position: relative;
}

.page-hero .eyebrow {
  color: #a9ded5;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(3rem, 7vw, 5.2rem);
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: #d8e8e5;
  font-size: 1.2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.price-card {
  padding: clamp(1.7rem, 4vw, 2.7rem);
  border-radius: var(--radius);
  background: var(--cream);
}

.price-card.featured {
  color: #fff;
  background: var(--teal-dark);
}

.price {
  display: block;
  margin-block: 1rem 0.4rem;
  font-family: "League Spartan", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.price small {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.schedule div {
  padding: 1.5rem;
  border-top: 4px solid var(--red);
  border-radius: 0 0 var(--radius) var(--radius);
  background: #fff;
}

.schedule strong,
.schedule span {
  display: block;
}

.schedule strong {
  font-family: "League Spartan", sans-serif;
  font-size: 1.65rem;
}

.info-panel {
  padding: clamp(1.5rem, 4vw, 2.7rem);
  border-radius: var(--radius);
  background: var(--teal-pale);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.team-card-inner {
  display: grid;
  grid-template-columns: 190px 1fr;
  height: 100%;
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.team-copy {
  padding: 1.6rem;
}

.team-role {
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-block: 2rem;
}

.contact-list a,
.contact-list span {
  display: block;
}

.contact-list strong {
  display: block;
  font-family: "League Spartan", sans-serif;
  font-size: 1.35rem;
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  background: var(--cream);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid #aebdba;
  border-radius: 0.7rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.button:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid #f2aaae;
  outline-offset: 3px;
}

.form-status {
  display: none;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.7rem;
  font-weight: 700;
}

.form-status.success {
  display: block;
  color: #0c554d;
  background: #d9efe9;
}

.form-status.error {
  display: block;
  color: #7b1821;
  background: #f8dfe1;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-content {
  max-width: 860px;
}

.legal-summary {
  margin-bottom: 2.5rem;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border-left: 5px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--teal-pale);
}

.legal-content section + section {
  margin-top: 2.7rem;
  padding-top: 2.7rem;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.legal-content h3 {
  margin-top: 1.7rem;
  font-size: 1.35rem;
}

.legal-content li + li {
  margin-top: 0.55rem;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.9rem;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
}

.news-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.news-copy {
  padding: clamp(2rem, 6vw, 4.5rem);
}

.site-footer {
  padding-block: 4rem 2rem;
  color: #d7e4e2;
  background: #0c1716;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.site-footer img {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.footer-logos img {
  width: auto;
  height: 76px;
  margin-bottom: 0;
}

.site-footer h3 {
  color: #fff;
  font-size: 1.25rem;
}

.site-footer a {
  color: #d7e4e2;
}

.footer-links {
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.social-links a:hover {
  border-color: #a9ded5;
  color: #a9ded5;
  background: rgba(255, 255, 255, 0.06);
}

.social-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.social-facebook {
  mask-image: url("../images/icon-facebook.svg");
  -webkit-mask-image: url("../images/icon-facebook.svg");
}

.social-instagram {
  mask-image: url("../images/icon-instagram.svg");
  -webkit-mask-image: url("../images/icon-instagram.svg");
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #a9bab7;
  font-size: 0.82rem;
}

.footer-company {
  display: grid;
  gap: 0.25rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.footer-cookie-settings {
  padding: 0;
  border: 0;
  color: #d7e4e2;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.footer-cookie-settings:hover {
  color: #a9ded5;
}

.cookie-banner[hidden],
.video-cookie-message[hidden],
.video-embed iframe[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 22px 70px rgba(12, 23, 22, 0.28);
}

.cookie-banner-inner {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  margin-inline: auto;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.35rem;
}

.cookie-banner p {
  max-width: 720px;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-banner a {
  font-size: 0.84rem;
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cookie-actions .button {
  min-width: 12.5rem;
  font-family: "Inter", system-ui, sans-serif;
}

.cookie-accept {
  border-color: var(--teal-dark);
  color: #fff;
  background: var(--teal-dark);
}

.cookie-reject {
  border-color: var(--red);
  color: var(--red);
  background: transparent;
}

.cookie-accept:hover {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.cookie-reject:hover {
  border-color: var(--red-dark);
  color: var(--red-dark);
  background: rgba(165, 31, 43, 0.08);
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 0 0 1rem 1rem;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.8rem 1rem;
  }

  .site-nav .nav-cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }

  .hero-inner {
    min-height: 700px;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 2rem;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(10, 35, 33, 0.98) 0%, rgba(10, 35, 33, 0.84) 68%, rgba(10, 35, 33, 0.42) 100%),
      url("../images/venue-wide-1.webp") center/cover no-repeat;
  }

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

  .quick-item:nth-child(2) {
    border-right: 0;
  }

  .quick-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

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

  .team-card-inner {
    grid-template-columns: 140px 1fr;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .brand img {
    width: 105px;
  }

  .nav-wrap {
    min-height: 5.25rem;
  }

  .split,
  .pricing-grid,
  .team-grid,
  .contact-grid,
  .news-card {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .schedule {
    grid-template-columns: 1fr;
  }

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

  .venue-showcase,
  .net-points,
  .net-evidence {
    grid-template-columns: 1fr;
  }

  .net-feature .video-card {
    margin-top: 0;
  }

  .gallery img {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .team-card-inner {
    grid-template-columns: 120px 1fr;
  }

  .team-card img {
    min-height: 280px;
  }

  .news-card img {
    max-height: 560px;
    min-height: 0;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .feature-title h3 {
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }

  .feature-icon {
    width: 1.85rem;
    height: 1.85rem;
  }

  .cookie-actions .button {
    min-width: 0;
    flex: 1 1 12rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 1.35rem), var(--max));
  }

  .net-feature .button-row {
    flex-wrap: wrap;
  }

  .net-feature .button-row .button {
    width: 100%;
  }

  .hero-inner {
    min-height: 760px;
  }

  .quick-grid,
  .form-row,
  .footer-grid,
  .team-card-inner {
    grid-template-columns: 1fr;
  }

  .quick-item,
  .quick-item:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .quick-item:last-child {
    border-bottom: 0;
  }

  .team-card img {
    width: 100%;
    height: 290px;
    min-height: 0;
    object-position: top center;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

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

  .footer-legal {
    justify-content: flex-end;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
