:root {
  --ink: #102a22;
  --green: #164f3d;
  --green-deep: #0d382c;
  --cream: #f5f0e5;
  --paper: #fbf9f3;
  --lime: #d8ef62;
  --coral: #ed7964;
  --sky: #a9d2cf;
  --line: rgba(16, 42, 34, 0.18);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.6rem 1rem;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 4vw;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1.05;
}

.brand-mark {
  display: block;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.brand-name {
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.brand-name strong {
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.2rem);
  font-size: 0.88rem;
  font-weight: 600;
}

.site-nav > a:not(.button) {
  position: relative;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  bottom: -0.35rem;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-social {
  display: inline-flex;
  align-items: center;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.nav-social svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

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

.button-small {
  min-height: 2.8rem;
  padding: 0.65rem 1.25rem;
}

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

.site-header .button-dark {
  color: var(--ink);
  background: var(--cream);
}

.button-accent {
  color: var(--ink);
  background: var(--lime);
}

.button-outline {
  border-color: var(--ink);
}

.button-ghost {
  border-color: currentColor;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(900px, 100svh);
  align-items: flex-end;
  overflow: hidden;
  padding: 9rem 6vw 7rem;
  color: white;
  background: var(--green);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  background: var(--green);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 700ms ease,
    transform 1800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 32, 25, 0.84) 0%, rgba(6, 32, 25, 0.5) 46%, rgba(6, 32, 25, 0.04) 80%),
    linear-gradient(0deg, rgba(6, 32, 25, 0.45), transparent 45%);
}

.hero::after {
  position: absolute;
  top: 16%;
  right: -8rem;
  width: 25rem;
  height: 25rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--lime);
}

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

h1,
h2 {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

h1 {
  max-width: 730px;
  font-size: clamp(4rem, 7.8vw, 7.6rem);
}

h2 {
  font-size: clamp(3.1rem, 5.7vw, 6rem);
}

h1 em,
h2 em {
  color: var(--lime);
  font-weight: 500;
}

.welcome h2 em,
.play h2 em,
.membership h2 em,
.social h2 em {
  color: var(--green);
}

.hero-intro {
  max-width: 510px;
  margin-bottom: 2rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.hero-carousel-controls {
  position: absolute;
  right: 4vw;
  bottom: 6.4rem;
  z-index: 3;
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.hero-carousel-arrow,
.hero-carousel-dots button {
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: white;
  background: rgba(6, 32, 25, 0.28);
  cursor: pointer;
}

.hero-carousel-arrow {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
}

.hero-carousel-dots {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.hero-carousel-dots button {
  width: 0.85rem;
  height: 0.85rem;
  padding: 0;
  border-radius: 999px;
}

.hero-carousel-arrow:hover,
.hero-carousel-arrow:focus-visible,
.hero-carousel-dots button:hover,
.hero-carousel-dots button:focus-visible,
.hero-carousel-dots button.is-active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--green-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.88rem;
  font-weight: 700;
}

.light-link {
  color: white;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 2.4rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section {
  padding: clamp(5rem, 9vw, 9rem) 6vw;
}

.welcome {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 10vw;
  background: var(--cream);
}

.welcome h2 {
  max-width: 800px;
}

.welcome-copy {
  align-self: end;
  max-width: 540px;
}

.lead {
  color: var(--green-deep);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.45;
}

.welcome-copy .text-link {
  margin-top: 1rem;
}

.play {
  background: var(--paper);
}

.section-heading,
.social-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.section-heading h2,
.social-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 420px;
  margin-bottom: 0.9rem;
}

.play-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 510px;
}

.play-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  border: 1px solid var(--ink);
}

.play-card + .play-card {
  border-left: 0;
}

.card-social {
  background: var(--lime);
}

.card-coaching {
  background: var(--coral);
}

.card-juniors {
  background: var(--sky);
}

.card-teams {
  color: white;
  background: var(--green);
}

.card-number {
  color: rgba(16, 42, 34, 0.18);
  font-family: var(--serif);
  font-size: clamp(5rem, 8vw, 8rem);
  line-height: 1;
}

.card-teams .card-number {
  color: rgba(255, 255, 255, 0.18);
}

.play-card h3 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.play-card p {
  min-height: 4.8rem;
}

.play-card a:not(.button) {
  font-size: 0.82rem;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.play-card .button {
  align-self: flex-start;
  min-height: 2.8rem;
  font-size: 0.78rem;
}

.club {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  padding: 0;
  color: white;
  background: var(--green-deep);
}

.club-visual {
  position: relative;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  background: var(--coral);
}

.club-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: 52% center;
}

.club-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
}

.club-copy h2 {
  max-width: 650px;
}

.club-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.club-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.club-facts strong,
.club-facts span {
  display: block;
}

.club-facts strong {
  margin-bottom: 0.4rem;
  color: var(--lime);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.club-facts span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.8rem;
  line-height: 1.4;
}

.membership {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 9vw;
  align-items: center;
  background: var(--lime);
}

.membership-copy h2 {
  max-width: 750px;
}

.membership-copy .lead {
  max-width: 670px;
}

.membership-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.small-note {
  margin: 1.2rem 0 0;
  font-size: 0.78rem;
}

.membership-card {
  padding: clamp(2rem, 4vw, 4rem);
  color: white;
  background: var(--green);
  box-shadow: 20px 20px 0 var(--coral);
}

.membership-card ul {
  padding: 0;
  margin: 2rem 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.membership-card li {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.membership-card strong {
  color: var(--lime);
  font-size: 0.8rem;
}

.membership-card > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.events {
  background: var(--paper);
}

.events-heading h2 {
  max-width: 760px;
}

.events-heading-copy {
  max-width: 420px;
}

.events-heading-copy p {
  margin-bottom: 1.25rem;
}

.events-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1rem;
}

.event-card {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.7rem, 3vw, 2.6rem);
  border: 1px solid var(--ink);
}

.event-featured {
  color: white;
  background: var(--green);
}

.event-tournament {
  background: var(--coral);
}

.event-fixtures {
  background: var(--cream);
}

.event-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-kicker {
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card h3 {
  margin-bottom: 1.25rem;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 3.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.event-card p {
  line-height: 1.55;
}

.event-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 1.25rem 0 0;
  margin: 1.5rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(16, 42, 34, 0.35);
}

.event-list li {
  font-size: 0.82rem;
  font-weight: 700;
}

.event-list li::before {
  margin-right: 0.45rem;
  content: "•";
}

.event-note {
  margin: 2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid currentColor;
  font-size: 0.72rem;
  opacity: 0.72;
}

.world-cup-fixtures {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.world-cup-fixtures div {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.world-cup-fixtures span,
.world-cup-fixtures strong {
  display: block;
}

.world-cup-fixtures span {
  color: var(--lime);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.world-cup-fixtures strong {
  margin-top: 0.15rem;
  font-size: 0.86rem;
}

.fixture-list {
  margin-top: 1.7rem;
  border-top: 1px solid var(--line);
}

.fixture-list div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.fixture-list span,
.fixture-list strong,
.fixture-list small {
  display: block;
}

.fixture-list span {
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fixture-list strong {
  margin: 0.2rem 0;
  font-size: 0.86rem;
}

.fixture-list small {
  opacity: 0.65;
}

.social {
  background: var(--cream);
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 1rem;
}

.insta-tile {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--green);
}

.insta-tile::before,
.insta-tile::after {
  position: absolute;
  content: "";
}

.insta-tile span {
  position: absolute;
  z-index: 2;
  bottom: 1.4rem;
  left: 1.4rem;
  padding: 0.35rem 0.7rem;
  color: white;
  background: var(--ink);
  font-size: 0.75rem;
}

.insta-one {
  background:
    radial-gradient(circle at 65% 48%, var(--lime) 0 7%, transparent 7.5%),
    linear-gradient(145deg, transparent 48%, rgba(255, 255, 255, 0.85) 48.5% 49%, transparent 49.5%),
    var(--coral);
}

.insta-two {
  background:
    linear-gradient(90deg, transparent 49.5%, var(--cream) 49.5% 50.5%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, var(--cream) 49.5% 50.5%, transparent 50.5%),
    var(--sky);
}

.insta-three {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 31%, var(--lime) 31.5% 34%, transparent 34.5%),
    var(--green);
}

.enquiry {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  color: white;
  background: var(--green-deep);
}

.enquiry-intro {
  align-self: center;
}

.enquiry-intro h2 {
  max-width: 700px;
}

.enquiry-intro > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.enquiry-details {
  display: grid;
  gap: 1.4rem;
  margin-top: 3rem;
}

.enquiry-details span,
.enquiry-details a {
  display: block;
}

.enquiry-details span {
  margin-bottom: 0.3rem;
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enquiry-details a {
  font-size: 0.9rem;
}

.enquiry-form {
  padding: clamp(2rem, 4vw, 4rem);
  color: var(--ink);
  background: var(--cream);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.enquiry-form label {
  display: block;
  margin-bottom: 1.35rem;
}

.enquiry-form label > span:first-child {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 0.9rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(16, 42, 34, 0.45);
  border-radius: 0;
  font: inherit;
}

.enquiry-form select {
  cursor: pointer;
}

.enquiry-form textarea {
  min-height: 130px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-bottom-color: var(--green);
  outline: 2px solid transparent;
  box-shadow: 0 2px 0 var(--green);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.enquiry-form .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.enquiry-form .form-consent input {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: 0.25rem;
  accent-color: var(--green);
}

.enquiry-form .form-consent span {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.45;
}

.form-note {
  margin: 0.9rem 0 0;
  font-size: 0.72rem;
  opacity: 0.65;
}

.form-note.is-success,
.form-note.is-error {
  opacity: 1;
}

.form-note.is-success {
  color: var(--green);
}

.form-note.is-error {
  color: #9b1c1c;
}

.enquiry-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  padding: 5rem 6vw 2rem;
  color: white;
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 5rem;
}

.footer-brand {
  align-self: start;
}

.footer-brand .brand-mark {
  width: 3.5rem;
  height: 3.5rem;
}

.footer-main a:not(.brand),
.footer-main p:not(.footer-label) {
  display: block;
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.footer-label {
  margin-bottom: 1rem;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
}

.documents-page,
.about-page,
.membership-form-page {
  background: var(--paper);
}

.site-header-light,
.documents-header {
  position: relative;
  color: var(--ink);
  border-bottom-color: var(--line);
}

.site-header-light .button-dark,
.documents-header .button-dark {
  color: white;
  background: var(--ink);
}

.site-header-light .nav-social,
.documents-header .nav-social {
  border-left-color: var(--line);
}

.documents-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 10vw;
  align-items: end;
  background: var(--cream);
}

.documents-hero h1 {
  color: var(--ink);
}

.documents-hero h1 em {
  color: var(--green);
}

.documents-hero .lead {
  max-width: 620px;
  margin-bottom: 0.5rem;
}

.documents-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: var(--paper);
}

.documents-list a {
  min-height: 220px;
  padding: clamp(1.8rem, 4vw, 3rem);
  background: var(--cream);
  border: 1px solid var(--ink);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.documents-list a:hover,
.documents-list a:focus-visible {
  background: var(--lime);
  transform: translateY(-4px);
}

.documents-list span {
  display: block;
  margin-bottom: 5rem;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.documents-list strong {
  display: block;
  max-width: 520px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 10vw;
  align-items: end;
  background: var(--cream);
}

.about-hero h1 {
  max-width: 850px;
  color: var(--ink);
}

.about-hero h1 em {
  color: var(--green);
}

.about-hero .lead {
  max-width: 650px;
  margin-bottom: 0.5rem;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--paper);
}

.about-card {
  min-height: 430px;
  padding: clamp(1.8rem, 3.5vw, 3rem);
  background: var(--cream);
  border: 1px solid var(--ink);
}

.about-card:nth-child(2) {
  background: var(--lime);
}

.about-card:nth-child(3) {
  background: var(--sky);
}

.about-card span {
  display: block;
  margin-bottom: 5rem;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-card h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.3rem, 3.4vw, 3.8rem);
}

.about-card h2 em {
  color: var(--green);
}

.about-social {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10vw;
  align-items: center;
  color: white;
  background: var(--green-deep);
}

.about-social h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.about-social h2 em {
  color: var(--lime);
}

.about-social-copy {
  max-width: 620px;
}

.about-social-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.about-social-copy .button {
  margin-top: 1rem;
}

.membership-form-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 10vw;
  align-items: end;
  background: var(--cream);
}

.membership-form-hero h1 {
  color: var(--ink);
}

.membership-form-hero h1 em {
  color: var(--green);
}

.membership-form-hero .lead {
  max-width: 650px;
  margin-bottom: 0.5rem;
}

.membership-application {
  background: var(--paper);
}

.membership-online-form {
  max-width: 980px;
  margin: 0 auto;
}

.membership-online-form fieldset {
  padding: 0 0 2rem;
  margin: 0 0 2.2rem;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.membership-online-form fieldset:last-of-type {
  margin-bottom: 1.5rem;
}

.membership-online-form legend {
  margin-bottom: 1.3rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.form-section-note {
  margin: -0.4rem 0 1.4rem;
  color: rgba(16, 42, 34, 0.68);
  font-size: 0.82rem;
}

.membership-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.membership-options label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  min-height: 5rem;
  padding: 1rem;
  margin: 0;
  background: var(--paper);
  border: 1px solid rgba(16, 42, 34, 0.28);
}

.membership-options input {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: 0.25rem;
  accent-color: var(--green);
}

.membership-options span,
.membership-options strong {
  display: block;
}

.membership-options strong {
  margin-top: 0.2rem;
  color: var(--green);
}

.membership-form-notes {
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.membership-form-notes p {
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
}

.membership-form-notes p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .menu-toggle {
    position: relative;
    z-index: 30;
    display: grid;
    width: 3rem;
    height: 3rem;
    padding: 0.85rem;
    place-content: center;
    gap: 0.45rem;
    color: currentColor;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 1.2rem;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 12vw;
    color: white;
    background: var(--green-deep);
    font-family: var(--serif);
    font-size: clamp(2.4rem, 8vw, 4rem);
    transform: translateX(100%);
    transition: transform 260ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .nav-social {
    padding-left: 0;
    border-left: 0;
  }

  .nav-social svg {
    width: 2.2rem;
    height: 2.2rem;
  }

  .site-nav .button {
    margin-top: 1rem;
    font-family: var(--sans);
    font-size: 0.9rem;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

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

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

  .event-fixtures {
    grid-column: 1 / -1;
    min-height: 500px;
  }

  .play-card + .play-card {
    border-left: 1px solid var(--ink);
  }

  .play-card:nth-child(even) {
    border-left: 0;
  }

  .play-card:nth-child(n + 3) {
    border-top: 0;
  }

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

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

  .club-visual {
    min-height: 520px;
  }

  .club-copy {
    padding: 6rem 7vw;
  }

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

  .documents-hero,
  .documents-list,
  .about-hero,
  .about-cards,
  .about-social,
  .membership-form-hero,
  .membership-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0.85rem 5vw;
  }

  .site-header .brand-mark {
    width: 3.6rem;
    height: 3.6rem;
  }

  .brand-name {
    display: none;
  }

  .hero {
    min-height: 800px;
    padding: 8rem 5vw 5rem;
  }

  .hero-carousel,
  .hero-carousel-controls {
    display: none;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(6, 32, 25, 0.22), transparent 58%);
  }

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

  h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 5rem 5vw;
  }

  .welcome,
  .membership {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-heading,
  .social-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

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

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

  .play-card + .play-card,
  .play-card:nth-child(even),
  .play-card:nth-child(n + 3) {
    border-top: 0;
    border-left: 1px solid var(--ink);
  }

  .club-visual {
    min-height: 400px;
  }

  .club-visual img {
    min-height: 400px;
  }

  .club-facts {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .membership-card {
    box-shadow: 10px 10px 0 var(--coral);
  }

  .membership-card li {
    flex-direction: column;
    gap: 0.2rem;
  }

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

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

  .event-card,
  .event-fixtures {
    min-height: 540px;
    grid-column: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .insta-tile {
    min-height: 330px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-main .brand-name {
    display: block;
  }

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

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

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