@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #0f2138;
  --navy-2: #16304f;
  --navy-3: #1e3a5c;
  --orange: #f7931e;
  --orange-2: #ff7a00;
  --white: #ffffff;
  --gray: #f4f6f9;
  --gray-2: #e9eef4;
  --ink: #3c4e64;
  --mist: rgba(255, 255, 255, 0.72);
  --r: 24px;
  --r-lg: 32px;
  --shadow-sm: 0 6px 24px rgba(15, 33, 56, 0.08);
  --shadow-md: 0 18px 48px rgba(15, 33, 56, 0.14);
  --shadow-lg: 0 32px 80px rgba(15, 33, 56, 0.24);
  --grad-orange: linear-gradient(120deg, #f7931e 0%, #ff7a00 100%);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
.display {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.wrap {
  width: min(1520px, 92vw);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--grad-orange);
}

.h2 {
  font-size: clamp(38px, 3.4vw, 58px);
  font-weight: 600;
}

.lede {
  color: var(--ink);
  font-size: 17.5px;
  max-width: 56ch;
}

.on-dark .lede {
  color: var(--mist);
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope";
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 18px 34px;
  cursor: pointer;
  border: 0;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
  will-change: transform;
}

.btn svg {
  transition: transform 0.35s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-orange {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: 0 14px 34px rgba(247, 147, 30, 0.38);
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(247, 147, 30, 0.48);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
}

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

/* ---------- reveal animations ---------- */
.rv {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.rv-l {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.rv-r {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  .rv,
  .rv-l,
  .rv-r {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================ NAV ============================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition:
    background 0.4s,
    box-shadow 0.4s,
    padding 0.4s;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
  transition: padding 0.4s;
}

.nav.scrolled {
  background: rgba(15, 33, 56, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(6, 14, 26, 0.35);
}

.nav.scrolled .nav-inner {
  padding: 12px 0;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
}

.logo img {
  display: block;
  height: 45px;
  width: auto;
  transition: 0.3s;
}

.nav.scrolled .logo img {
  height: 45px;
}

/* MENU */
.menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  display: block;
  padding: 6px 20px;
  color: var(--mist);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.menu > li > a:hover,
.menu > li > a.active {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.menu > li > a.active {
  color: var(--orange);
}

/* MEGA MENU */
.mega {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translate(-50%, 12px);
  width: 560px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 22px;
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.menu li:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.mega a:hover {
  background: var(--gray);
}

.mega .mi {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--orange);
  border-radius: 13px;
  font-size: 20px;
}

.mega b {
  display: block;
  font-size: 15px;
  color: var(--navy);
}

.mega span {
  font-size: 13px;
  color: var(--ink);
}

/* PHONE */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.nav-phone .ic {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* BUTTON */
.nav .btn {
  padding: 14px 28px;
  font-size: 13px;
}

/* ============================ HERO SECTION ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    105deg,
    rgba(9, 20, 36, 0.92) 0%,
    rgba(15, 33, 56, 0.72) 44%,
    rgba(15, 33, 56, 0.28) 100%
  );
}

/* signature court arcs */
.court-arcs {
  position: absolute;
  right: -180px;
  top: -160px;
  width: 760px;
  height: 760px;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 900px) 1fr;
  align-items: center;
  width: 100%;
  padding: 20px 20px 80px 20px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(247, 147, 30, 0.14);
  border: 1px solid rgba(247, 147, 30, 0.45);
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(247, 147, 30, 0.6);
  }

  55% {
    box-shadow: 0 0 0 9px rgba(247, 147, 30, 0);
  }
}

.hero h1 {
  margin: 30px 0 24px;
  font-size: clamp(56px, 4.9vw, 94px);
  font-weight: 700;
  color: #fff;
}

.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.hero h1 .word span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1s var(--ease) forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

@keyframes rise {
  to {
    transform: translateY(0);
  }
}

.hero p {
  color: var(--mist);
  font-size: 19px;
  max-width: 52ch;
  margin-bottom: 42px;
}

.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* floating quick cards — right column, stacked & offset */
.quick-stack {
  position: relative;
  justify-self: end;
  display: grid;
  gap: 18px;
  padding-right: 14px;
}

.qcard {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 18px 26px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(4, 10, 20, 0.35);
  animation: float 7s ease-in-out infinite;
}

.qcard:nth-child(2) {
  transform: translateX(-58px);
  animation-delay: -2s;
}

.qcard:nth-child(3) {
  animation-delay: -4s;
}

.qcard:nth-child(4) {
  transform: translateX(-58px);
  animation-delay: -6s;
}

@keyframes float {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -9px;
  }
}

.qcard .qi {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 14px;
  background: var(--grad-orange);
  display: grid;
  place-items: center;
  font-size: 21px;
}

.qcard b {
  font-family: "Space Grotesk";
  font-size: 18px;
  display: block;
  line-height: 1.2;
}

.qcard span {
  font-size: 12.5px;
  color: var(--mist);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  color: var(--mist);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--orange), transparent);
  animation: drip 1.8s infinite;
}

@keyframes drip {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  55% {
    transform: scaleY(1);
    transform-origin: top;
  }

  56% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ============================ ABOUT ============================ */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: center;
}

.collage {
  position: relative;
  height: 640px;
}

.collage .img-a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  object-position: top;
}

.collage .img-b {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 52%;
  object-fit: cover;
  border-radius: var(--r);
  border: 10px solid var(--gray);
  box-shadow: var(--shadow-md);
}

.badge-float {
  position: absolute;
  top: 34px;
  left: -30px;
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 20px 26px;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.badge-float b {
  font-family: "Space Grotesk";
  font-size: 26px;
  color: var(--orange);
  display: block;
}

.badge-float span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
}

.badge-award {
  position: absolute;
  right: -24px;
  top: 22%;
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  animation: float 8s ease-in-out infinite;
  animation-delay: -3s;
}

.badge-award .ai {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(247, 147, 30, 0.14);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.badge-award b {
  font-size: 14px;
  display: block;
}

.badge-award span {
  font-size: 12px;
  color: var(--ink);
}

.about-copy .h2 {
  margin: 20px 0 22px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 40px 0 34px;
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.stat {
  padding: 28px 32px;
  border-left: 3px solid var(--orange);
}

.stat:nth-child(1),
.stat:nth-child(2) {
  border-bottom: 1px solid var(--gray-2);
}

.stat b {
  font-family: "Space Grotesk";
  font-size: 38px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.stat count {
  font-family: "Space Grotesk";
  font-size: 38px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.stat b em {
  font-style: normal;
  color: var(--orange);
}

.stat span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  margin-bottom: 40px;
}

.checks li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
}

.checks .ck {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: rgba(247, 147, 30, 0.15);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

/* ============================ SPORTS ============================ */
.sports {
  position: relative;
  background: var(--navy);
  padding: 60px 0 80px;
  border-radius: var(--r-lg);
  color: #fff;
  overflow: hidden;
}

.sports .court-arcs {
  left: -220px;
  right: auto;
  bottom: -260px;
  top: auto;
  opacity: 0.25;
}

.sports-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 70px;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sport {
  position: relative;
  height: 400px;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 24px 60px rgba(4, 10, 20, 0.5);
  transition: transform 0.6s var(--ease);
}

.sport:nth-child(2) {
  transform: translateY(46px);
}

.sport:nth-child(4) {
  transform: translateY(46px);
}

.sport:hover {
  transform: translateY(-12px);
}

.sport:nth-child(2):hover,
.sport:nth-child(4):hover {
  transform: translateY(34px);
}

.sport img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.sport:hover img {
  transform: scale(1.09);
}

.sport::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    185deg,
    rgba(15, 33, 56, 0.05) 30%,
    rgba(9, 20, 36, 0.9) 88%
  );
  z-index: 1;
  transition: 0.5s;
}

.sport::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.9s var(--ease);
}

.sport:hover::after {
  left: 130%;
}

.sport .icon {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  font-size: 24px;
}

.sport .meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s;
}

.sport:hover .meta {
  background: rgba(247, 147, 30, 0.24);
}

.sport .meta h3 {
  font-size: 21px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.sport .meta small {
  display: block;
  font-family: "Manrope";
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--mist);
  text-transform: none;
  margin-top: 3px;
}

.sport .go {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--grad-orange);
  display: grid;
  place-items: center;
  flex: none;
  transition: transform 0.4s var(--ease);
}

.sport:hover .go {
  transform: rotate(45deg);
}

/* ============================ WHY ============================ */
.why {
  padding: 150px 0;
  background: #fff;
  position: relative;
}

.why-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 70px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature {
  position: relative;
  border-radius: var(--r);
  padding: 40px 34px;
  background: var(--gray);
  overflow: hidden;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.feature:nth-child(even) {
  background: var(--navy);
  color: #fff;
}

.feature:nth-child(even) p {
  color: var(--mist);
}

.feature::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--grad-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.feature:hover::before {
  transform: scaleX(1);
}

.feature .fi {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 24px;
  transition: transform 0.5s var(--ease);
}

.feature:nth-child(even) .fi {
  background: rgba(247, 147, 30, 0.16);
  box-shadow: none;
}

.feature:hover .fi {
  transform: rotate(-8deg) scale(1.08);
}

.feature h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.feature p {
  font-size: 14.5px;
  color: var(--ink);
}

.home-action-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 46px auto 0;
}

.home-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 76px;
  padding: 15px 20px;
  border: 1px solid rgba(247, 147, 30, 0.22);
  border-radius: 17px;
  color: #fff;
  background: var(--grad-orange);
  box-shadow: 0 15px 34px rgba(247, 147, 30, 0.22);
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.home-action-btn svg {
  flex: none;
  transition: transform 0.35s var(--ease);
}

.home-action-btn span {
  display: grid;
  line-height: 1.25;
}

.home-action-btn small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-action-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(247, 147, 30, 0.32);
}

.home-action-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 720px) {
  .home-action-row {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .home-action-btn {
    justify-content: flex-start;
    min-height: 68px;
    padding-inline: 22px;
  }
}

/* ============================ BOOKING ============================ */
.booking {
  position: relative;
  padding: 150px 0;
  background: var(--gray);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.booking .center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 84px;
}

.booking .center .lede {
  margin: 18px auto 0;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 11%;
  right: 11%;
  height: 3px;
  background: var(--gray-2);
  border-radius: 3px;
}

.timeline .line {
  position: absolute;
  top: 44px;
  left: 11%;
  height: 3px;
  width: 0;
  background: var(--grad-orange);
  border-radius: 3px;
  transition: width 2.4s var(--ease);
  z-index: 0;
}

.timeline.in .line {
  width: 78%;
}

.step {
  position: relative;
  text-align: center;
  padding: 0 10px;
}

.step .si {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  margin: 0 auto 30px;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  font-size: 34px;
  transition: 0.5s var(--ease);
}

.step:hover .si {
  background: var(--navy);
  transform: translateY(-6px) rotate(-6deg);
}

.step .num {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-orange);
  color: #fff;
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 15px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(247, 147, 30, 0.4);
}

.step .card {
  background: #fff;
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease);
}

.step:hover .card {
  transform: translateY(-6px);
}

.step h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.step p {
  font-size: 13.5px;
  color: var(--ink);
}

.booking-cta {
  text-align: center;
  margin-top: 70px;
}

/* ============================ PROGRAMS ============================ */
.programs {
  padding: 150px 0;
  background: #fff;
}

.prog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}

.prog-head .h2 em {
  font-style: normal;
  color: var(--orange);
}

.prog-grid {
  display: grid;
  gap: 26px;
}

.prog {
  display: grid;
  grid-template-columns: 400px 1fr auto;
  align-items: center;
  gap: 44px;
  background: var(--gray);
  border-radius: var(--r);
  padding: 22px;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.prog:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.prog .ph {
  position: relative;
  height: 240px;
  border-radius: 18px;
  overflow: hidden;
}

.prog .ph img {
  width: 100%;
  height: 325px;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.prog:hover .ph img {
  transform: scale(1.07);
}

.prog .cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 33, 56, 0.72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.prog h3 {
  font-size: 27px;
  margin-bottom: 6px;
}

.prog .coach {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.prog p {
  font-size: 15px;
  color: var(--ink);
  max-width: 58ch;
}

.prog .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  padding: 16px 26px;
  border-radius: 17px;
  border: 1px solid rgba(247, 147, 30, 0.22);
  background: var(--grad-orange);
  box-shadow: 0 12px 28px rgba(247, 147, 30, 0.2);
  transition: 0.4s var(--ease);
  margin-right: 22px;
}

.prog .cta:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(247, 147, 30, 0.3);
}

/* ============================ TESTIMONIALS ============================ */
.testi {
  position: relative;
  padding: 150px 0;
  background: linear-gradient(
    150deg,
    var(--navy) 0%,
    var(--navy-2) 60%,
    #1b3b60 100%
  );
  border-radius: var(--r-lg);
  color: #fff;
  overflow: hidden;
}

.testi .court-arcs {
  opacity: 0.2;
  left: -260px;
  top: -200px;
  right: auto;
}

.testi-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 70px;
}

.slider {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--r-lg);
}

.slides {
  display: flex;
  transition: transform 0.9s var(--ease);
}

.slide {
  flex: 0 0 100%;
  padding: 64px 90px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  text-align: center;
  position: relative;
}

.slide .qi {
  width: 64px;
  height: 64px;
  margin: 0 auto 26px;
  border-radius: 20px;
  background: var(--grad-orange);
  display: grid;
  place-items: center;
  font-family: "Space Grotesk";
  font-size: 38px;
  font-weight: 700;
  line-height: 0;
  padding-top: 18px;
  box-shadow: 0 14px 34px rgba(247, 147, 30, 0.4);
}

.slide .stars {
  color: var(--orange);
  letter-spacing: 6px;
  font-size: 18px;
  margin-bottom: 24px;
}

.slide blockquote {
  font-family: "Space Grotesk";
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}

.slide .who {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.slide .who img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange);
}

.slide .who b {
  display: block;
  font-size: 16px;
  text-align: left;
}

.slide .who span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  text-align: left;
  display: block;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 38px;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: 0.4s var(--ease);
}

.dots button.on {
  width: 34px;
  background: var(--orange);
}

/* ============================ GALLERY ============================ */
.gallery {
  padding: 150px 0;
  background: #fff;
}

.gal-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.gal-grid {
  columns: 3;
  column-gap: 26px;
}

.gal-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 26px;
  break-inside: avoid;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gal-item img {
  width: 100%;
  transition: transform 1s var(--ease);
}

.gal-item:hover img {
  transform: scale(1.07);
}

.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, transparent 55%, rgba(15, 33, 56, 0.72));
  opacity: 0;
  transition: opacity 0.5s;
}

.gal-item:hover::after {
  opacity: 1;
}

.gal-item span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.5s var(--ease);
}

.gal-item:hover span {
  opacity: 1;
  transform: none;
}

/* ============================ CONTACT ============================ */
.contact {
  padding: 150px 0;
  background: var(--gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact .h2 em {
  font-style: normal;
  color: var(--orange);
}

.form-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  margin-top: 36px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fgroup {
  margin-bottom: 20px;
}

.fgroup label {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 9px;
}

.fgroup input,
.fgroup textarea {
  width: 100%;
  font-family: "Manrope";
  font-size: 15px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 2px solid var(--gray-2);
  background: var(--gray);
  transition: 0.3s;
  outline: none;
  resize: vertical;
}

.fgroup input:focus,
.fgroup textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(247, 147, 30, 0.14);
}

.map-side {
  position: relative;
}

.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 520px;
  border: 0;
  width: 100%;
  filter: saturate(0.9);
}

.info-float {
  position: relative;
  margin: -115px 34px 0;
  background: var(--navy);
  color: #fff;
  border-radius: var(--r);
  padding: 35px 35px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  z-index: 2;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px;
}

.info-item .ii {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 13px;
  background: rgba(247, 147, 30, 0.16);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.info-item b {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.info-item span {
  font-size: 13.5px;
  color: var(--mist);
  line-height: 1.5;
}

.socials {
  display: flex;
  gap: 12px;
  grid-column: 1/-1;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  transition: 0.35s var(--ease);
}

.socials a:hover {
  background: var(--grad-orange);
  transform: translateY(-4px);
}

/* ============================ FOOTER ============================ */
footer {
  background: #0a1728;
  color: #fff;
  padding: 110px 0 0;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  position: relative;
  overflow: hidden;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 64px;
  padding-bottom: 80px;
}

.foot-grid p {
  color: var(--mist);
  font-size: 14.5px;
  max-width: 36ch;
  margin: 22px 0;
}

.foot-grid h4 {
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 26px;
}

.foot-grid li {
  margin-bottom: 13px;
}

.foot-grid li a {
  color: var(--mist);
  font-size: 14.5px;
  transition: 0.3s;
}

.foot-grid li a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.news p {
  margin: 0 0 20px;
}

.news-form {
  display: flex;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px;
  backdrop-filter: blur(8px);
}

.news-form input {
  flex: 1;
  background: none;
  border: 0;
  outline: none;
  color: #fff;
  font-family: "Manrope";
  font-size: 14px;
  padding: 0 20px;
}

.news-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.news-form .btn {
  padding: 13px 24px;
  font-size: 11.5px;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- floating book button ---------- */
.fab {
  position: fixed;
  right: 34px;
  bottom: 34px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--grad-orange);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-radius: 999px;
  box-shadow: 0 20px 44px rgba(247, 147, 30, 0.5);
  transition:
    transform 0.4s var(--ease),
    opacity 0.4s;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.fab.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.fab:hover {
  transform: translateY(-4px) scale(1.04);
}

/* ---------- responsive safety net (desktop-first) ---------- */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .quick-stack {
    justify-self: start;
  }

  .qcard:nth-child(even) {
    transform: none;
  }

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

  .sport:nth-child(2),
  .sport:nth-child(4) {
    transform: none;
  }

  .about-grid,
  .why-head,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 50px 26px;
  }

  .timeline::before,
  .timeline .line {
    display: none;
  }

  .prog {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

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

  .gal-grid {
    columns: 2;
  }

  .menu,
  .nav-phone {
    display: none;
  }
}

@media (max-width: 720px) {
  .sports-grid,
  .why-grid,
  .timeline,
  .frow,
  .info-float,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .gal-grid {
    columns: 1;
  }

  .slide {
    padding: 44px 26px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .scroll-cue {
    bottom: -13px;
  }

  .why {
    padding: 150px 0 0;
  }
}

/* ============================ SPORTS DROPDOWN ============================ */
.mega,
.sport-dropdown {
  width: 420px;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(15, 33, 56, 0.08);
  border-radius: 18px;
}

.mega a,
.sport-dropdown a {
  gap: 11px;
  min-height: 60px;
  padding: 10px 12px;
}

.mega a > span:last-child > span {
  display: none;
}

.mega .mi,
.sport-dropdown svg {
  color: var(--orange);
}

.sport-dropdown a {
  display: flex;
  align-items: center;
  border-radius: 12px;
}

.sport-dropdown a:hover {
  background: var(--gray);
}

.sport-dropdown b {
  color: var(--navy);
  font-size: 14px;
}

/* ============================ NEW COACHING / SPORTS / BOOKING PAGES ============================ */
.section-heading-light {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading-light .eyebrow {
  justify-content: center;
}

.section-heading-light .h2 {
  margin: 17px 0;
}

.section-heading-light .lede {
  margin-inline: auto;
}

.coach-audiences,
.coaching-sports,
.coach-benefits,
.sports-overview,
.sport-intro,
.sport-content-band,
.sport-enquiry,
.appointment-section {
  padding: clamp(85px, 8vw, 135px) 0;
}

.coach-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.coach-card-grid article {
  position: relative;
  padding: 30px;
  border: 1px solid #e3e9f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 33, 56, 0.07);
}

.coach-card-grid article > span {
  color: var(--orange);
  font: 700 13px "Space Grotesk";
}

.coach-card-grid h3 {
  margin: 28px 0 12px;
  font-size: 22px;
}

.coach-card-grid p {
  color: #68778a;
  font-size: 14px;
}

.coaching-sports,
.sport-enquiry {
  background: #fff;
}

.coaching-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.coaching-row + .coaching-row {
  margin-top: 110px;
}

.coaching-row.reverse img {
  order: 2;
}

.coaching-row img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
}

.coaching-row .h2 {
  margin: 18px 0 20px;
}

.coaching-row .btn {
  margin-top: 27px;
}

.coach-benefits {
  background: var(--navy);
  color: #fff;
}

.coach-benefits .section-heading-light .h2 {
  color: #fff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-grid article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.benefit-grid article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 11px;
  color: #fff;
  background: var(--orange);
}

.benefit-grid h3 {
  margin-bottom: 8px;
}

.benefit-grid p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

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

.sports-page-grid > a {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 24px;
}

.sports-page-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.sports-page-grid a:hover img {
  transform: scale(1.05);
}

.sports-page-grid a > span {
  position: absolute;
  inset: auto 16px 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  color: #fff;
  background: rgba(8, 22, 39, 0.78);
  backdrop-filter: blur(12px);
}

.sports-page-grid b,
.sports-page-grid small {
  display: block;
}

.sports-page-grid b {
  font: 700 27px "Space Grotesk";
}

.sports-page-grid small {
  margin-top: 5px;
  color: var(--orange);
  font-weight: 800;
}

.sport-intro-grid,
.sport-enquiry-grid,
.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 7vw, 105px);
}

.sport-intro-grid .h2,
.sport-enquiry-grid .h2,
.appointment-grid .h2 {
  margin: 18px 0 21px;
}

.sport-intro-grid > img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.sport-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin: 28px 0;
}

.sport-feature-list > div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px;
  border-radius: 12px;
  background: #fff3e3;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.sport-feature-list svg {
  flex: none;
  color: var(--orange);
}

.mini-contact-form,
.appointment-form {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid #e2e8ef;
  border-radius: 25px;
  background: #f7f9fc;
  box-shadow: 0 25px 65px rgba(15, 33, 56, 0.1);
}

.appointment-grid {
  align-items: start;
}

.booking-points {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.booking-points li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-points b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
}

.fgroup select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--gray-2);
  border-radius: 16px;
  color: var(--navy);
  background: var(--gray);
  font: 15px "Manrope";
}

@media (max-width: 1000px) {
  .coach-card-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coaching-row,
  .sport-intro-grid,
  .sport-enquiry-grid,
  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .coaching-row.reverse img {
    order: initial;
  }
}

@media (max-width: 650px) {
  .coach-card-grid,
  .benefit-grid,
  .sports-page-grid,
  .sport-feature-list {
    grid-template-columns: 1fr;
  }

  .coaching-row img,
  .sport-intro-grid > img,
  .sports-page-grid > a {
    height: 360px;
  }

  .coaching-row + .coaching-row {
    margin-top: 75px;
  }
}

/* Buttons stay fixed in place on hover */
.btn:hover {
  transform: none !important;
}

/* Keep homepage contact email on one line */
.contact .info-float {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.contact .info-item:nth-child(4) > span:last-child > span {
  white-space: nowrap;
  overflow-wrap: normal;
  font-size: clamp(10px, 0.72vw, 12px);
  letter-spacing: -0.025em;
}

@media (max-width: 650px) {
  .contact .info-float {
    grid-template-columns: 1fr;
  }

  .contact .info-item:nth-child(4) > span:last-child > span {
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 12px;
  }
}

/* Simple text-only sports dropdown */
.menu .mega {
  width: 180px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 12px;
  border: 1px solid rgba(15, 33, 56, 0.08);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 33, 56, 0.17);
}

.foot-bottom span a {
  color: var(--orange);
}

.menu .mega a {
  min-height: auto;
  display: block;
  padding: 12px 14px;
  border-radius: 6px;
  color: #121820;
}

.menu .mega a:hover {
  color: var(--orange);
  background: #f5f7fa;
}

.menu .mega .mi,
.menu .mega a > svg,
.menu .mega a > span:last-child > span {
  display: none;
}

.menu .mega a > span:last-child {
  display: block;
}

.menu .mega b {
  color: inherit;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

@media (max-width: 1080px) {
  .menu .mega {
    width: 100%;
    margin: 6px 0 10px;
    border-radius: 10px;
    box-shadow: none;
  }

  .menu li > .mega {
    display: none !important;
  }

  .menu li.submenu-open > .mega {
    display: grid !important;
  }

  .menu li.submenu-open > a > svg {
    transform: rotate(180deg);
  }
}

/* ============================ REDESIGNED RESPONSIVE NAV ============================ */
.nav {
  background: linear-gradient(
    180deg,
    rgba(7, 17, 31, 0.97),
    rgba(10, 23, 40, 0.91)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 38px rgba(4, 11, 22, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-inner {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(310px, 1fr);
  gap: clamp(18px, 2.2vw, 40px);
  min-height: 96px;
  padding: 12px 0;
}

.nav.scrolled .nav-inner {
  min-height: 78px;
  padding: 8px 0;
}

.nav-logo {
  justify-self: start;
  margin-right: 0;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.nav-logo img {
  height: clamp(44px, 3.2vw, 54px);
}

.nav.scrolled .nav-logo img {
  height: 44px;
}

.nav-menu {
  justify-self: center;
}

.menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-inline: clamp(10px, 1vw, 15px);
}

.lucide {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone .ic {
  color: var(--orange);
  background: rgba(247, 147, 30, 0.12);
  border-color: rgba(247, 147, 30, 0.3);
}

.phone-copy {
  display: grid;
  line-height: 1.2;
}

.phone-copy small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-copy strong {
  margin-top: 3px;
  white-space: nowrap;
  font-size: 13px;
}

.nav .nav-cta {
  padding: 14px 22px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle:hover {
  color: var(--orange);
  border-color: rgba(247, 147, 30, 0.45);
}

.close-icon {
  display: none;
}

@media (max-width: 1350px) and (min-width: 1081px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .nav-logo img {
    height: 40px;
  }

  .menu > li > a {
    padding-inline: 9px;
    font-size: 13px;
  }

  .menu {
    display: flex;
  }

  .nav-phone {
    display: flex;
  }

  .phone-copy small {
    display: none;
  }

  .nav-phone .ic {
    width: 36px;
    height: 36px;
  }

  .nav .nav-cta {
    padding-inline: 17px;
  }
}

@media (max-width: 1080px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-inner,
  .nav.scrolled .nav-inner {
    display: flex;
    min-height: 82px;
    padding: 10px 0;
    gap: 12px;
  }

  .nav-logo {
    margin-right: auto;
  }

  .nav-logo img,
  .nav.scrolled .nav-logo img {
    height: 42px;
  }

  .nav-menu {
    display: none;
    position: fixed;
    inset: 82px 4vw auto;
    max-height: calc(100vh - 102px);
    padding: 16px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(9, 21, 38, 0.99);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 0.25s,
      visibility 0.25s,
      transform 0.25s;
  }

  .sport {
    height: 450px;
  }

  .sports-head {
    flex-direction: column;
    align-items: self-start;
    gap: 20px;
  }

  .nav.menu-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
    width: 90%;
  }

  .menu {
    display: grid;
    gap: 4px;
  }

  .menu > li > a {
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 12px;
  }

  .mega {
    position: static;
    width: auto;
    grid-template-columns: repeat(2, 1fr);
    margin: 6px 0 10px;
    padding: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 14px;
    box-shadow: none;
  }

  .menu li:hover .mega {
    transform: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav.menu-open .menu-icon {
    display: none;
  }

  .nav.menu-open .close-icon {
    display: block;
  }

  .nav-phone {
    display: none;
  }
}

@media (max-width: 720px) {
  .nav-inner,
  .nav.scrolled .nav-inner {
    min-height: 72px;
    padding: 8px 0;
  }

  .nav-logo {
    padding: 7px 9px;
    border-radius: 11px;
  }

  .nav-logo img,
  .nav.scrolled .nav-logo img {
    height: 34px;
  }

  .nav-menu {
    inset: 72px 4vw auto;
    max-height: calc(100vh - 88px);
  }

  .nav .nav-cta {
    width: 44px;
    height: 44px;
    justify-content: center;
    padding: 0;
  }

  .nav-cta span {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

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

@media (max-width: 430px) {
  .nav-logo img,
  .nav.scrolled .nav-logo img {
    height: 29px;
  }

  .nav .nav-cta {
    display: none;
  }
}

/* Hero/header refinements */
.nav {
  position: sticky;
  top: 0;
}

.nav.scrolled {
  background: rgba(7, 17, 31, 0.96);
}

.qcard {
  min-width: 330px;
  gap: 15px;
  padding: 17px 22px;
  opacity: 0;
  translate: 0 42px;
  animation:
    qcardEnter 0.85s var(--ease) forwards,
    qcardFloat 4.8s ease-in-out infinite 1.25s;
  will-change: transform, translate, opacity;
}

.qcard:nth-child(1) {
  animation-delay: 0.2s, 1.25s;
}

.qcard:nth-child(2) {
  margin-left: -58px;
  transform: none;
  animation-delay: 0.38s, 1.5s;
}

.qcard:nth-child(3) {
  animation-delay: 0.56s, 1.75s;
}

.qcard:nth-child(4) {
  margin-left: -58px;
  transform: none;
  animation-delay: 0.74s, 2s;
}

@keyframes qcardEnter {
  from {
    opacity: 0;
    translate: 0 42px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes qcardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.qcard .qi {
  width: 50px;
  height: 50px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(247, 147, 30, 0.28);
}

.qcard-copy {
  display: grid;
  gap: 5px;
}

.qcard .qcard-copy b {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.qcard .qcard-copy > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .quick-stack {
    width: min(100%, 720px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: start;
    padding-right: 0;
  }

  .qcard,
  .qcard:nth-child(2),
  .qcard:nth-child(4) {
    min-width: 0;
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .hero-grid {
    padding-top: 90px;
  }

  .quick-stack {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 14px;
  }

  .qcard {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .qcard {
    padding: 15px 17px;
  }

  .qcard .qi {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .qcard {
    opacity: 1;
    translate: none;
    animation: none;
  }
}

/* ============================ STABLE NAV + SMOOTH RENDERING ============================ */
.nav-inner,
.nav.scrolled .nav-inner {
  min-height: 96px;
  padding-block: 12px;
}

.nav.scrolled .nav-logo img {
  height: clamp(44px, 3.2vw, 54px);
}

.hero-bg img,
.collage img,
.sport img,
.gal-item img {
  transform: translateZ(0);
  backface-visibility: hidden;
}

@media (max-width: 1080px) {
  .nav-inner,
  .nav.scrolled .nav-inner {
    min-height: 82px;
    padding-block: 10px;
  }
}

@media (max-width: 720px) {
  .nav-inner,
  .nav.scrolled .nav-inner {
    min-height: 72px;
    padding-block: 8px;
  }
}

/* ============================ SHARED NEW FOOTER ============================ */
.site-footer {
  padding-top: 0;
  border-radius: 32px 32px 0 0;
  background:
    radial-gradient(
      circle at 85% 18%,
      rgba(247, 147, 30, 0.13),
      transparent 23%
    ),
    #081525;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px 48px;
  margin-bottom: 72px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 0;
  border-radius: 0 0 26px 26px;
  background: rgba(255, 255, 255, 0.055);
}

.footer-cta h2 {
  margin-top: 10px;
  font-size: clamp(27px, 3vw, 43px);
}

.footer-logo {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 13px;
  background: #fff;
}

.footer-logo img {
  width: min(100%, 300px);
  height: auto;
}

.site-footer .foot-grid {
  grid-template-columns: 1.35fr 0.7fr 0.7fr 1.35fr;
  gap: clamp(34px, 4vw, 68px);
  padding-bottom: 65px;
}

.site-footer .socials {
  border: 0;
  padding-top: 4px;
}

.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-contact > a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.footer-contact .ii {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: var(--orange);
  border: 1px solid rgba(247, 147, 30, 0.22);
  border-radius: 11px;
  background: rgba(247, 147, 30, 0.1);
}

.footer-contact b {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.foot-bottom a:hover {
  color: var(--orange);
}

/* ============================ ABOUT PAGE ============================ */
.about-page {
  background: #f6f8fb;
}

.about-hero {
  position: relative;
  min-height: min(720px, calc(100vh - 96px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.about-hero > img,
.about-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero > img {
  z-index: -2;
  object-fit: cover;
}

.about-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(5, 15, 28, 0.95) 0%,
      rgba(8, 25, 45, 0.79) 48%,
      rgba(8, 22, 39, 0.35) 100%
    ),
    linear-gradient(0deg, rgba(8, 20, 36, 0.45), transparent 50%);
}

.about-hero-copy {
  padding-block: 100px;
}

.about-hero h1 {
  max-width: 900px;
  margin: 28px 0 24px;
  font-size: clamp(50px, 6vw, 92px);
  line-height: 0.98;
}

.about-hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.about-hero-copy > p {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.4vw, 20px);
}

.about-story,
.feature-section {
  padding: clamp(90px, 9vw, 145px) 0;
}

.story-grid,
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(54px, 7vw, 110px);
}

.story-media,
.feature-image {
  position: relative;
}

.story-media > img,
.feature-image > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(15, 33, 56, 0.17);
}

.story-media::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  z-index: -1;
  width: 46%;
  height: 46%;
  border-radius: 26px;
  background: var(--grad-orange);
}

.story-mini {
  position: absolute;
  right: -30px;
  bottom: 34px;
  display: grid;
  padding: 20px 25px;
  border-radius: 18px;
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}

.story-mini strong {
  color: var(--orange);
  font: 700 32px/1 "Space Grotesk";
}

.story-mini > span {
  margin-top: 7px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-copy .h2,
.feature-copy .h2 {
  margin: 18px 0 24px;
}

.story-copy > p:not(.lede) {
  margin-top: 17px;
  color: #607086;
}

.story-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.story-points > div {
  display: flex;
  gap: 12px;
  padding: 17px;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  background: #fff;
}

.story-points svg {
  flex: none;
  color: var(--orange);
}

.story-points b {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
}

.story-points span {
  color: #718096;
  font-size: 12px;
}

.values-section {
  padding: clamp(90px, 8vw, 130px) 0;
  background: var(--navy);
  color: #fff;
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading .h2 {
  margin: 18px 0;
}

.section-heading .lede {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.66);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s;
}

.value-card:hover {
  transform: translateY(-7px);
  border-color: rgba(247, 147, 30, 0.45);
}

.value-card > span:nth-child(2) {
  position: absolute;
  right: 27px;
  top: 30px;
  color: rgba(255, 255, 255, 0.18);
  font: 700 24px "Space Grotesk";
}

.value-icon {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin-bottom: 25px;
  border-radius: 16px;
  color: #fff;
  background: var(--grad-orange);
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.feature-section {
  background: #fff;
}

.feature-row + .feature-row {
  margin-top: clamp(90px, 10vw, 150px);
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-image > span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 11px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 22, 39, 0.82);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feature-list li {
  display: flex;
  gap: 15px;
  padding: 17px 18px;
  border: 1px solid #e5ebf2;
  border-radius: 15px;
  background: #f8fafc;
}

.feature-list svg {
  flex: none;
  color: var(--orange);
}

.feature-list b {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.feature-list span {
  color: #68778a;
  font-size: 12px;
}

.sport-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 25px;
}

.sport-pills li {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--navy);
  background: #fff1df;
  font-size: 12px;
  font-weight: 800;
}

.feature-copy > .btn {
  margin-top: 28px;
}

.about-final-cta {
  padding: 60px 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, #0f2138, #183a5e);
  margin-bottom: 40px;
}

.about-final-cta .eyebrow {
  justify-content: center;
}

.about-final-cta h2 {
  max-width: 800px;
  margin: 20px auto 15px;
  font-size: clamp(38px, 5vw, 68px);
}

.about-final-cta p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.65);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

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

@media (max-width: 1000px) {
  .site-footer .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-grid,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .story-media,
  .feature-image {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .feature-row.reverse .feature-copy {
    order: initial;
  }

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

@media (max-width: 650px) {
  .footer-cta {
    display: grid;
    padding: 30px 24px;
    margin-bottom: 55px;
  }

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

  .site-footer .foot-bottom {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  .about-hero {
    min-height: 680px;
  }

  .about-hero-copy {
    padding-block: 75px;
  }

  .about-hero h1 {
    font-size: clamp(43px, 13vw, 63px);
  }

  .story-media > img,
  .feature-image > img {
    height: 390px;
  }

  .story-mini {
    right: 12px;
    bottom: 16px;
  }

  .story-points {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* About content renders immediately: no entrance or reveal delay */
.about .rv,
.about .rv-l,
.about .rv-r,
.about .stats,
.about .stat {
  opacity: 1 !important;
  transform: none !important;
  translate: none !important;
  transition: none !important;
  animation: none !important;
}

.about *,
.about *::before,
.about *::after {
  animation: none !important;
}

.about-page main .reveal,
.about-page main .reveal.visible {
  opacity: 1 !important;
  transform: none !important;
  translate: none !important;
  transition: none !important;
  animation: none !important;
}

.about-page main *,
.about-page main *::before,
.about-page main *::after {
  animation: none !important;
}

/* ============================ HOME GALLERY + CONTACT REFRESH ============================ */
.gallery {
  padding: clamp(90px, 8vw, 135px) 0;
  background: linear-gradient(180deg, #fff, #f5f7fa);
}

.gallery .gal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 190px;
  gap: 18px;
  columns: initial;
}

.gallery .gal-item {
  grid-column: span 4;
  height: auto;
  margin: 0;
  border-radius: 20px;
}

.gallery .gal-item:nth-child(1),
.gallery .gal-item:nth-child(6) {
  grid-row: span 2;
}

.gallery .gal-item:nth-child(2),
.gallery .gal-item:nth-child(8) {
  grid-column: span 5;
}

.gallery .gal-item:nth-child(3),
.gallery .gal-item:nth-child(7) {
  grid-column: span 3;
}

.gallery .gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery .gal-item::after,
.gallery .gal-item span {
  opacity: 1;
}

.gallery .gal-item span {
  transform: none;
}

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

.gallery .rv,
.contact .rv,
.contact .rv-l,
.contact .rv-r {
  opacity: 1;
  transform: none;
  transition: none;
}

.contact {
  padding: clamp(90px, 8vw, 135px) 0;
  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(247, 147, 30, 0.08),
      transparent 24%
    ),
    #f2f5f9;
}

.contact .contact-grid {
  gap: clamp(44px, 5vw, 78px);
}

.contact .form-card {
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(15, 33, 56, 0.06);
  border-radius: 25px;
  box-shadow: 0 24px 60px rgba(15, 33, 56, 0.1);
}

.contact .map-frame {
  height: 560px;
}

.contact .info-float {
  margin-inline: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-page-link {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

/* ============================ CONTACT + GALLERY INNER PAGES ============================ */
.inner-page {
  background: #f5f7fa;
}

.inner-hero {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.inner-hero > img,
.inner-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.inner-hero > img {
  z-index: -2;
  object-fit: cover;
}

.inner-hero-shade {
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(5, 15, 29, 0.95),
    rgba(8, 24, 43, 0.65),
    rgba(8, 20, 36, 0.38)
  );
}

.inner-hero h1 {
  max-width: 850px;
  margin: 25px 0 20px;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.98;
}

.inner-hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.inner-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.contact-options {
  position: relative;
  z-index: 2;
  margin-top: -45px;
}

.contact-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 24px;
  border: 1px solid #e4eaf1;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 33, 56, 0.1);
}

.contact-option > span {
  display: grid;
  place-items: center;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  color: #fff;
  background: var(--grad-orange);
}

.contact-option div {
  min-width: 0;
}

.contact-option small,
.contact-option b {
  display: block;
}

.contact-option small {
  margin-bottom: 4px;
  color: #728096;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-option b {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 12px;
}

.contact-location,
.enquiry-section,
.gallery-page-section {
  padding: clamp(90px, 8vw, 135px) 0;
}

.location-grid,
.enquiry-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(48px, 7vw, 105px);
}

.location-map {
  height: 420px;
  padding: 10px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(15, 33, 56, 0.13);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}

.location-copy .h2,
.enquiry-grid .h2 {
  margin: 18px 0 20px;
}

.hours-card {
  margin-top: 30px;
  padding: 25px;
  border-radius: 20px;
  color: #fff;
  background: var(--navy);
}

.hours-card > div {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 17px;
  color: var(--orange);
}

.hours-card ul {
  display: grid;
  gap: 11px;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.hours-card li span {
  color: rgba(255, 255, 255, 0.6);
}

.enquiry-section {
  background: #fff;
}

.enquiry-grid {
  align-items: start;
}

.enquiry-note {
  display: grid;
  margin-top: 28px;
  padding: 19px;
  border-left: 3px solid var(--orange);
  border-radius: 0 14px 14px 0;
  background: #fff3e4;
}

.enquiry-note span {
  margin-top: 3px;
  color: #68778a;
  font-size: 13px;
}

.enquiry-form {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #e6ebf1;
  border-radius: 26px;
  background: #f8fafc;
  box-shadow: 0 25px 65px rgba(15, 33, 56, 0.1);
}

.interest-field {
  margin-bottom: 20px;
  border: 0;
}

.interest-field legend {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.interest-field > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.interest-field label {
  padding: 12px;
  border: 1px solid #dfe5ec;
  border-radius: 11px;
  background: #fff;
  font-size: 12px;
}

.compact-footer {
  padding-top: 50px;
}

.compact-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.compact-foot > div {
  display: flex;
  gap: 20px;
}

.gallery-page-section {
  background: #fff;
}

.gallery-page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 48px;
}

.gallery-page-head .h2 {
  margin-top: 16px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-filters button {
  padding: 10px 16px;
  border: 1px solid #dfe5ec;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.gallery-filters button.active {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
}

.gallery-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

.gallery-photo {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: var(--navy);
  cursor: pointer;
}

.gallery-photo[hidden] {
  display: none;
}

.gallery-photo.tall {
  grid-row: span 2;
}

.gallery-photo.wide {
  grid-column: span 2;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-photo:hover img {
  transform: scale(1.055);
}

.gallery-photo > span {
  position: absolute;
  inset: auto 0 0;
  padding: 45px 18px 17px;
  color: #fff;
  background: linear-gradient(transparent, rgba(5, 16, 29, 0.9));
  text-align: left;
  font: 700 17px "Space Grotesk";
}

.gallery-photo small {
  display: block;
  margin-top: 4px;
  color: var(--orange);
  font: 800 9px "Manrope";
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-page-cta {
  padding: 70px 0;
  color: #fff;
  background: var(--navy);
}

.gallery-page-cta > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.gallery-page-cta h2 {
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 52px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  place-items: center;
  padding: 35px;
  background: rgba(3, 10, 19, 0.94);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 90vw);
  max-height: 80vh;
  border-radius: 18px;
}

.lightbox button {
  position: absolute;
  right: 28px;
  top: 20px;
  border: 0;
  color: #fff;
  background: none;
  font-size: 42px;
  cursor: pointer;
}

.lightbox p {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .contact-option-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery .gal-item,
  .gallery .gal-item:nth-child(n) {
    grid-column: span 6;
  }
}

@media (max-width: 650px) {
  .inner-hero {
    min-height: 570px;
  }

  .inner-hero h1 {
    font-size: clamp(45px, 14vw, 63px);
  }

  .contact-options {
    margin-top: 22px;
  }

  .location-map {
    height: 430px;
  }

  .hours-card li {
    display: grid;
  }

  .interest-field > div {
    grid-template-columns: 1fr;
  }

  .gallery-page-head,
  .gallery-page-cta > .wrap,
  .compact-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-showcase {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .gallery-photo,
  .gallery-photo.tall,
  .gallery-photo.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery .gal-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .gallery .gal-item,
  .gallery .gal-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}

/* ============================ INNER PAGE BREADCRUMBS + FORM POLISH ============================ */
.inner-hero,
.about-hero {
  min-height: 260px;
}

.inner-hero-shade,
.about-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(5, 15, 29, 0.94),
    rgba(8, 24, 43, 0.72),
    rgba(8, 20, 36, 0.48)
  );
}

.breadcrumb-content,
.about-hero-copy.breadcrumb-content {
  padding-block: 70px;
  text-align: center;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--orange);
}

.breadcrumbs span {
  color: #fff;
}

.breadcrumb-content h1,
.about-hero-copy.breadcrumb-content h1 {
  max-width: none;
  margin: 22px 0 13px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
}

.breadcrumb-content > p,
.about-hero-copy.breadcrumb-content > p {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.breadcrumb-content .hero-ctas {
  display: none;
}

.enquiry-grid {
  grid-template-columns: 1fr;
  max-width: 980px;
}

.enquiry-grid > div:first-child {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.enquiry-grid > div:first-child .eyebrow {
  justify-content: center;
}

.enquiry-form {
  width: 100%;
  margin-inline: auto;
}

.interest-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  cursor: pointer;
}

.interest-field input[type="checkbox"] {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--orange);
}

.enquiry-note {
  max-width: 560px;
  margin-inline: auto;
  text-align: left;
}

@media (max-width: 720px) {
  .inner-hero,
  .about-hero {
    min-height: 330px;
  }

  .breadcrumb-content,
  .about-hero-copy.breadcrumb-content {
    padding-block: 52px;
  }

  .breadcrumb-content h1,
  .about-hero-copy.breadcrumb-content h1 {
    font-size: 43px;
  }
}

/* ============================ REFINED ABOUT SECTION ============================ */
.about {
  padding: 60px 0;
  background:
    radial-gradient(
      circle at 16% 34%,
      rgba(247, 147, 30, 0.07),
      transparent 27%
    ),
    linear-gradient(180deg, #f7f9fc 0%, #f1f4f8 100%);
  overflow: hidden;
  position: relative;
}

.about-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(56px, 6vw, 96px);
}

.collage {
  height: 610px;
  isolation: isolate;
}

.collage .img-a {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 7px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(15, 33, 56, 0.18);
}

.collage .img-b {
  width: 53%;
  height: 49%;
  border: 8px solid #f3f6fa;
  box-shadow: 0 22px 54px rgba(15, 33, 56, 0.19);
}

.badge-float,
.badge-award {
  animation-name: aboutBadgeFloat;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: transform;
  backface-visibility: hidden;
}

.badge-float {
  top: 30px;
  left: -20px;
  padding: 18px 23px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation-duration: 5.2s;
  animation-delay: 0s;
}

.badge-award {
    right: -23px;
    top: 62%;
    padding: 20px 18px;
    border: 1px solid rgba(15, 33, 56, 0.06);
    animation-duration: 5.8s;
    animation-delay: -2.1s;
}

@keyframes aboutBadgeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -9px, 0);
  }
}

.badge-award .ai {
  color: #f28a0c;
  background: #fff0dd;
}

.badge-copy {
  display: grid;
  gap: 3px;
}

.badge-award .badge-copy b {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.2;
}

.badge-award .badge-copy > span {
  color: #6d7b8d;
  font-size: 11px;
  line-height: 1.3;
}

.about-copy {
  max-width: 680px;
}

.about-copy .lede {
  line-height: 1.8;
}

.stats {
  position: relative;
  margin: 34px 0 30px;
  border: 1px solid rgba(15, 33, 56, 0.06);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 33, 56, 0.08);
}

.stat {
  position: relative;
  padding: 26px clamp(22px, 2vw, 32px);
  border-left: 0;
  opacity: 0;
  translate: 0 18px;
}

.stats.in .stat {
  animation: statReveal 0.65s var(--ease) forwards;
}

.stats.in .stat:nth-child(2) {
  animation-delay: 0.1s;
}

.stats.in .stat:nth-child(3) {
  animation-delay: 0.2s;
}

.stats.in .stat:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes statReveal {
  to {
    opacity: 1;
    translate: 0 0;
  }
}

.stat:nth-child(odd) {
  border-right: 1px solid var(--gray-2);
}

.stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  width: 3px;
  height: 50%;
  border-radius: 0 4px 4px 0;
  background: var(--grad-orange);
}

.stat b,
.stat .count {
  font-family: "Space Grotesk", sans-serif;
  color: var(--navy);
  font-size: clamp(31px, 2.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat b small {
  font-size: 0.65em;
  font-weight: 700;
}

.stat > b + span {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.checks {
  gap: 13px 24px;
  margin-bottom: 32px;
}

.checks li {
  font-size: 14px;
}

.checks .ck {
  width: 24px;
  height: 24px;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about-actions .btn {
  padding: 15px 22px;
  font-size: 12px;
}

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

  .collage {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .about-copy {
    max-width: 820px;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .about {
    padding: 82px 0;
  }

  .about-grid {
    gap: 58px;
  }

  .collage {
    height: 500px;
  }

  .badge-float {
    left: -5px;
    top: 18px;
    padding: 14px 17px;
  }

  .badge-float b {
    font-size: 21px;
  }

  .badge-award {
    right: -4px;
    padding: 11px 13px;
  }

  .badge-award .ai {
    width: 38px;
    height: 38px;
  }

  .stats {
    border-radius: 19px;
  }

  .stat {
    padding: 22px 18px;
  }
}

@media (max-width: 520px) {
  .collage {
    height: 410px;
  }

  .collage .img-a {
    width: 92%;
    height: 78%;
  }

  .collage .img-b {
    width: 56%;
    height: 47%;
  }

  .badge-award {
    top: auto;
    bottom: 12px;
    right: 0;
  }

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

  .stat {
    padding: 20px 13px;
  }

  .stat > b + span {
    font-size: 8.5px;
    letter-spacing: 0.11em;
  }

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

  .about-actions {
    display: grid;
  }

  .about-actions .btn {
    justify-content: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .badge-float,
  .badge-award {
    animation: none;
  }

  .stat {
    opacity: 1;
    translate: none;
  }
}

.sport-content-band {
  color: #fff;
  background: var(--navy);
}

.sport-content-band .section-heading-light .h2 {
  color: #fff;
}

.sport-content-band .benefit-grid article {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.sport-content-band .benefit-grid p {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================ FINAL HOME SECTION POLISH ============================ */
.testi {
  padding: clamp(78px, 7vw, 110px) 0;
}

.testi-head {
  margin-bottom: 34px;
}

.testi .slider {
  max-width: 850px;
  border-radius: 24px;
}

.testi .slide {
  min-height: 340px;
  display: grid;
  align-content: center;
  padding: clamp(34px, 4vw, 50px) clamp(28px, 6vw, 70px);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.045)
  );
}

.testi .slide .qi {
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
  padding: 0;
  border-radius: 15px;
}

.testi .slide .stars {
  margin-bottom: 14px;
  font-size: 15px;
}

.testi .slide blockquote {
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.5;
}

.testi .slide .who img {
  width: 50px;
  height: 50px;
}

.testi .dots {
  margin-top: 22px;
}

/* Show complete gallery images instead of cropping important content */
.gallery .gal-item,
.gallery-photo {
  background: #e9eef4;
}

.gallery .gal-item img,
.gallery-photo img {
  object-fit: contain;
  object-position: center;
}

.gallery .gal-item::after {
  background: linear-gradient(185deg, transparent 60%, rgba(15, 33, 56, 0.82));
}

.gallery-showcase {
  grid-auto-rows: 290px;
}

.gallery-photo.tall {
  grid-row: span 2;
}

/* Cleaner homepage contact composition */
.contact .contact-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.contact .contact-grid > div:first-child,
.contact .map-side {
  display: flex;
  flex-direction: column;
}

.contact .form-card {
  flex: 1;
  margin-top: 28px;
}

.contact .map-side {
  padding: 14px;
  border: 1px solid rgba(15, 33, 56, 0.07);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 25px 65px rgba(15, 33, 56, 0.1);
}

.contact .map-frame {
  height: 430px;
  border-radius: 19px;
  box-shadow: none;
}

.contact .info-float {
  margin: 14px 0 0;
  padding: 20px 15px;
  gap: 15px;
  border-radius: 19px;
  box-shadow: none;
}

.contact .info-item {
  min-width: 0;
  padding: 8px 0;
}

.contact .info-item > span:last-child {
  min-width: 0;
}

.contact .info-item span {
  overflow-wrap: anywhere;
}

.contact .contact-page-link {
  margin: 14px 0 2px;
}

/* Booking process icon system */
.booking {
  padding: clamp(85px, 7vw, 115px) 0;
}

.booking .center {
  margin-bottom: 58px;
}

.step .si {
  color: var(--orange);
}

.step .si > svg {
  stroke-width: 1.8;
}

.step .si .num {
  color: #fff;
}

/* Unique coaching benefit icons */
.coach-benefits .benefit-grid article > span {
  color: #fff;
}

.coach-benefits .benefit-grid article > span svg {
  stroke-width: 1.9;
}

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

  .gallery .gal-item img,
  .gallery-photo img {
    object-fit: contain;
  }
}

@media (max-width: 650px) {
  .testi .slide {
    min-height: 380px;
    padding: 30px 22px;
  }

  .testi-head {
    margin-bottom: 25px;
  }

  .gallery-showcase {
    grid-auto-rows: 250px;
  }

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

/* ============================ SIMPLE NATURAL GALLERY ============================ */
.gallery .gal-grid {
  display: block;
  columns: 3;
  column-gap: 18px;
}

.gallery .gal-item,
.gallery .gal-item:nth-child(n) {
  display: inline-block;
  width: 100%;
  height: auto;
  margin: 0 0 18px;
  break-inside: avoid;
  grid-column: auto;
  grid-row: auto;
  background: #fff;
}

.gallery .gal-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: initial;
}

.gallery-page-section {
  background: linear-gradient(180deg, #fff, #f5f7fa);
}

.gallery-showcase {
  display: block;
  columns: 3;
  column-gap: 20px;
}

.gallery-static-item {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
  overflow: hidden;
  break-inside: avoid;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(15, 33, 56, 0.1);
}

.gallery-static-item img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-static-item figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 17px;
  color: var(--navy);
  font: 700 15px "Space Grotesk";
}

.gallery-static-item small {
  color: var(--orange);
  font: 800 9px "Manrope";
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .gallery .gal-grid,
  .gallery-showcase {
    columns: 2;
  }
}

@media (max-width: 560px) {
  .gallery .gal-grid,
  .gallery-showcase {
    columns: 1;
  }
}

/* ============================ BLOG ============================ */
.blog-listing {
  padding: clamp(85px, 8vw, 130px) 0;
  background: #fff;
}

.blog-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.blog-heading .h2 {
  margin-top: 15px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid #e4eaf1;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 33, 56, 0.08);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(15, 33, 56, 0.14);
}

.blog-card.featured {
  grid-column: 1/-1;
}

.blog-card.featured > a {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-card.featured img {
  height: 440px;
}

.blog-card > a > div {
  padding: 28px;
}

.blog-card.featured > a > div {
  padding: clamp(34px, 5vw, 65px);
}

.blog-tag {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: #b65d00;
  background: #fff0dd;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
  margin: 16px 0 11px;
}

.blog-card h2 {
  font-size: clamp(29px, 3vw, 47px);
}

.blog-card h3 {
  font-size: 23px;
}

.blog-card p {
  color: #66758a;
  font-size: 14px;
}

.blog-meta {
  display: block;
  margin-top: 18px;
  color: #8a96a6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-header {
  padding: 95px 0 75px;
  text-align: center;
  color: #fff;
  background: var(--navy);
}

.article-title {
  max-width: 950px;
}

.article-title .breadcrumbs {
  margin-bottom: 27px;
}

.article-title h1 {
  margin: 20px 0;
  font-size: clamp(37px, 6vw, 50px);
}

.article-title > p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: clamp(45px, 7vw, 95px);
  padding-block: clamp(75px, 8vw, 120px);
}

.article-cover {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 24px;
  height: 400px;
}

.article-body {
  max-width: 820px;
}

.article-body > p {
  margin-bottom: 24px;
  color: #56667a;
  font-size: 16px;
  line-height: 1.85;
}

.article-body .article-lead {
  color: var(--navy);
  font-size: 20px;
}

.article-body h2 {
  margin: 42px 0 15px;
  font-size: 31px;
}

.article-body blockquote {
  margin: 38px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--orange);
  border-radius: 0 18px 18px 0;
  color: var(--navy);
  background: #fff2e1;
  font: 600 22px/1.5 "Space Grotesk";
}

.article-sidebar {
  position: sticky;
  top: 125px;
  display: grid;
  gap: 18px;
}

.article-sidebar > div {
  padding: 24px;
  border: 1px solid #e3e9f0;
  border-radius: 18px;
  background: #fff;
}

.article-sidebar ol {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding-left: 18px;
  color: #657489;
  font-size: 13px;
}

.article-sidebar h3 {
  margin-bottom: 9px;
}

.article-sidebar p {
  margin-bottom: 13px;
  color: #68778a;
  font-size: 13px;
}

.article-sidebar a {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.article-cta {
  margin-top: 50px;
  padding: 34px;
  border-radius: 22px;
  color: #fff;
  background: var(--navy);
}

.article-cta h3 {
  font-size: 26px;
}

.article-cta p {
  margin: 8px 0 22px;
  color: rgba(255, 255, 255, 0.65);
}

.article-cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 900px) {
  .blog-card.featured > a,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 650px) {
  .blog-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .blog-card.featured {
    grid-column: auto;
  }

  .blog-card.featured img,
  .blog-card img {
    height: auto;
  }

  .article-header {
    padding: 70px 0 55px;
  }

  .article-body blockquote {
    padding: 23px;
    font-size: 19px;
  }
}

/* ========================================
   Cricket Training Lanes & Pricing
======================================== */

.cricket-pricing-section {
  padding: 100px 0;
  background: #f4f6f9;
}

.cricket-pricing-heading {
  max-width: 820px;
  margin: 0 auto 45px;
  text-align: center;
}

.cricket-pricing-heading .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

.cricket-pricing-heading .h2 {
  margin-bottom: 18px;
  color: #10263f;
}

.cricket-pricing-heading .lede {
  margin: 0 auto;
  color: #5d6875;
  line-height: 1.8;
}

.cricket-pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
  gap: 25px;
  align-items: start;
}

.cricket-table-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(16, 38, 63, 0.1);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(16, 38, 63, 0.08);
}

.cricket-table-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 26px;
  background: #10263f;
}

.cricket-table-title > span {
  display: inline-flex;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ff8700;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.cricket-table-title h3 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.3;
}

.cricket-table-title p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.cricket-table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cricket-pricing-table,
.cricket-details-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.cricket-pricing-table {
  min-width: 650px;
}

.cricket-pricing-table th {
  padding: 17px 20px;
  background: #fff4e8;
  color: #10263f;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid #eadfd3;
}

.cricket-pricing-table td {
  padding: 17px 20px;
  color: #53606e;
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid #e8ecf0;
}

.cricket-pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.cricket-pricing-table tbody tr {
  transition: background-color 0.25s ease;
}

.cricket-pricing-table tbody tr:hover {
  background: #fffaf5;
}

.cricket-pricing-table td strong {
  color: #10263f;
}

.lane-price {
  display: inline-block;
  padding: 7px 11px;
  background: rgba(255, 135, 0, 0.12);
  border-radius: 7px;
  color: #e56f00;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.cricket-details-table th,
.cricket-details-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #e8ecf0;
  text-align: left;
  vertical-align: middle;
}

.cricket-details-table th {
  width: 50%;
  color: #10263f;
  font-size: 14px;
  font-weight: 700;
}

.cricket-details-table td {
  color: #5d6875;
  font-size: 14px;
}

.cricket-details-table tr:last-child th,
.cricket-details-table tr:last-child td {
  border-bottom: 0;
}

.cricket-pricing-btn {
  display: flex;
  width: calc(100% - 40px);
  margin: 20px;
  justify-content: center;
  text-align: center;
}

/* Tablet */
@media (max-width: 991px) {
  .cricket-pricing-section {
    padding: 80px 0;
  }

  .cricket-pricing-grid {
    grid-template-columns: 1fr;
  }

  .cricket-details-card {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .cricket-pricing-section {
    padding: 60px 0;
  }

  .cricket-pricing-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .cricket-pricing-heading .h2 {
    font-size: 30px;
  }

  .cricket-table-card {
    border-radius: 14px;
  }

  .cricket-table-title {
    padding: 20px;
  }

  .cricket-table-title h3 {
    font-size: 18px;
  }

  .cricket-pricing-table th,
  .cricket-pricing-table td {
    padding: 15px 16px;
  }

  .cricket-details-table th,
  .cricket-details-table td {
    display: block;
    width: 100%;
  }

  .cricket-details-table th {
    padding: 16px 18px 5px;
    border-bottom: 0;
  }

  .cricket-details-table td {
    padding: 0 18px 16px;
  }

  .cricket-details-table tr {
    display: block;
    border-bottom: 1px solid #e8ecf0;
  }

  .cricket-details-table tr:last-child {
    border-bottom: 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .cricket-pricing-section {
    padding: 50px 0;
  }

  .cricket-pricing-heading .h2 {
    font-size: 26px;
  }

  .cricket-pricing-heading .lede {
    font-size: 15px;
  }

  .cricket-table-title {
    gap: 10px;
    padding: 18px 16px;
  }

  .cricket-pricing-btn {
    width: calc(100% - 32px);
    margin: 16px;
  }
}

/* ========================================
   Cricket FAQ Section
======================================== */

.cricket-faq-section {
  padding: 100px 0;
  background: #ffffff;
}

.cricket-faq-heading {
  max-width: 780px;
  margin: 0 auto 45px;
  text-align: center;
}

.cricket-faq-heading .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

.cricket-faq-heading .h2 {
  margin: 0 0 18px;
  color: #10263f;
}

.cricket-faq-heading .lede {
  margin: 0;
  color: #5d6875;
  line-height: 1.8;
}

.cricket-faq-list {
  max-width: 950px;
  margin: 0 auto;
}

.cricket-faq-item {
  margin-bottom: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(16, 38, 63, 0.12);
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(16, 38, 63, 0.05);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.cricket-faq-item:hover {
  border-color: rgba(255, 135, 0, 0.45);
  box-shadow: 0 12px 30px rgba(16, 38, 63, 0.08);
}

.cricket-faq-item[open] {
  border-color: rgba(255, 135, 0, 0.6);
  box-shadow: 0 14px 35px rgba(16, 38, 63, 0.09);
}

.cricket-faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 32px;
  gap: 16px;
  align-items: center;
  padding: 21px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.cricket-faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 135, 0, 0.12);
  border-radius: 9px;
  color: #e56f00;
  font-size: 12px;
  font-weight: 700;
}

.faq-question {
  color: #10263f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.faq-toggle {
  position: relative;
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background: #10263f;
  border-radius: 50%;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  width: 12px;
  height: 2px;
  background: #ffffff;
  border-radius: 10px;
  content: "";
  transition: transform 0.25s ease;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.cricket-faq-item[open] .faq-toggle {
  background: #ff8700;
  transform: rotate(180deg);
}

.cricket-faq-item[open] .faq-toggle::after {
  transform: rotate(0deg);
}

.cricket-faq-answer {
  padding: 0 74px 24px 82px;
}

.cricket-faq-answer p {
  margin: 0;
  color: #5d6875;
  font-size: 15px;
  line-height: 1.8;
}

.cricket-faq-answer strong {
  color: #10263f;
}

.cricket-faq-cta {
  display: flex;
  max-width: 950px;
  margin: 35px auto 0;
  padding: 28px 30px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: #10263f;
  border-radius: 16px;
}

.cricket-faq-cta h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 22px;
}

.cricket-faq-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

/* Tablet */
@media (max-width: 991px) {
  .cricket-faq-section {
    padding: 80px 0;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .cricket-faq-section {
    padding: 60px 0;
  }

  .cricket-faq-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .cricket-faq-heading .h2 {
    font-size: 30px;
  }

  .cricket-faq-item summary {
    grid-template-columns: 36px minmax(0, 1fr) 28px;
    gap: 11px;
    padding: 18px 16px;
  }

  .faq-number {
    width: 34px;
    height: 34px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
  }

  .cricket-faq-answer {
    padding: 0 55px 20px 61px;
  }

  .cricket-faq-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .cricket-faq-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .cricket-faq-section {
    padding: 50px 0;
  }

  .cricket-faq-heading .h2 {
    font-size: 26px;
  }

  .cricket-faq-item {
    border-radius: 11px;
  }

  .cricket-faq-item summary {
    grid-template-columns: minmax(0, 1fr) 28px;
  }

  .faq-number {
    display: none;
  }

  .cricket-faq-answer {
    padding: 0 52px 19px 16px;
  }

  .cricket-faq-answer p {
    font-size: 14px;
  }

  .cricket-faq-cta h3 {
    font-size: 20px;
  }
}

/* ===== WordPress integration ===== */
body.admin-bar .nav { top: var(--mickleham-nav-top, 32px); }
@media (max-width: 782px) { body.admin-bar .nav { top: var(--mickleham-nav-top, 0px); } }
.nav-logo img, .footer-logo img { object-fit: contain; }
.mickleham-cf7-slot .wpcf7-form { display: contents; }
.mickleham-cf7-slot .wpcf7-form-control-wrap { display: block; width: 100%; }
.mickleham-cf7-slot .wpcf7-not-valid-tip { color: #b42318; font-size: 12px; margin-top: 5px; }
.mickleham-cf7-slot .wpcf7-response-output { grid-column: 1 / -1; margin: 14px 0 0 !important; border-radius: 12px; padding: 12px 16px !important; }
.mickleham-cf7-slot .wpcf7-spinner { margin: 0 8px; }
.mickleham-cf7-slot input[type="submit"] { width: auto; }
.mickleham-cf7-slot p { margin: 0; }
.mickleham-cf7-slot br { display: none; }
.mickleham-form-placeholder { min-height: 280px; padding: 34px; border: 1px dashed rgba(15,33,56,.22); border-radius: 22px; background: rgba(255,255,255,.72); display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.mickleham-form-placeholder strong { font-family: "Space Grotesk",sans-serif; font-size: 25px; color: var(--navy); }
.mickleham-form-placeholder p { color: var(--ink); }
.mickleham-form-placeholder div { display: flex; flex-wrap: wrap; gap: 12px; }
.mickleham-form-placeholder a { color: var(--orange); font-weight: 800; }
.wpcf7-list-item { margin: 0 18px 8px 0; }
.wpcf7-list-item label { display: inline-flex; gap: 8px; align-items: center; }
.wpcf7-list-item input { width: auto !important; }

.mickleham-pagination { margin-top: 44px; }
.mickleham-pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.mickleham-pagination .page-numbers, .blog-listing > .wrap > .nav-links .page-numbers { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; border-radius: 999px; background: var(--gray); font-weight: 800; padding: 0 16px; }
.mickleham-pagination .current { background: var(--orange); color: #fff; }
.mickleham-empty { padding: 60px 0; text-align: center; }

.blog-article-section { padding: 100px 0; background: #fff; }
.blog-article-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 70px; align-items: start; max-width: 1200px; }
.blog-article-content { font-size: 18px; color: var(--ink); }
.blog-article-content > * + * { margin-top: 24px; }
.blog-article-content h2, .blog-article-content h3, .blog-article-content h4 { color: var(--navy); margin-top: 44px; }
.blog-article-content h2 { font-size: clamp(30px,3vw,44px); }
.blog-article-content h3 { font-size: 28px; }
.blog-article-content ul, .blog-article-content ol { padding-left: 24px; }
.blog-article-content ul { list-style: disc; }
.blog-article-content li + li { margin-top: 10px; }
.blog-article-content a { color: var(--orange); text-decoration: underline; }
.blog-article-content img { border-radius: 24px; }
.blog-article-cta { position: sticky; top: 130px; padding: 34px; border-radius: 26px; background: var(--navy); color: #fff; box-shadow: var(--shadow-md); }
.blog-article-cta h3 { font-size: 30px; margin: 16px 0 12px; }
.blog-article-cta p { color: var(--mist); margin-bottom: 24px; }

.generic-page-hero { padding: 190px 0 90px; background: var(--navy); color: #fff; }
.generic-page-hero h1 { font-size: clamp(48px,7vw,82px); margin-top: 18px; }
.generic-page-hero p { max-width: 650px; color: var(--mist); margin: 22px 0; }
.generic-page-content { padding: 90px 0; }
.content-narrow { max-width: 1000px; }
.content-narrow > * + * { margin-top: 24px; }
.content-narrow h2, .content-narrow h3 { margin-top: 38px; }
.content-narrow ul { list-style: disc; padding-left: 24px; }
.content-narrow a { color: var(--orange); }

.alignwide { margin-left: calc(50% - 46vw); width: 92vw; max-width: 1520px; }
.alignfull { margin-left: calc(50% - 50vw); width: 100vw; max-width: 100vw; }
.wp-caption, .gallery-caption { color: var(--ink); }
.screen-reader-text { clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute !important; width: 1px; word-wrap: normal !important; }

@media (max-width: 900px) {
  .blog-article-wrap { grid-template-columns: 1fr; }
  .blog-article-cta { position: static; }
}
@media (max-width: 600px) {
  .blog-article-section, .generic-page-content { padding: 64px 0; }
  .generic-page-hero { padding-top: 150px; }
  .mickleham-form-placeholder { min-height: 220px; padding: 24px; }
}


/* ===== Complete Fixed 3.0 ===== */
/* Sport cards remain identical to the original HTML design and are clickable. */
.sports-grid > .sport {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.sports-grid > .sport:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
/* Prevent editor/plugin paragraph formatting from becoming a grid item. */
.sports-grid > p,
.sports-grid > br {
  display: none !important;
}


/* Final 4.0: Contact Form 7 layout correction. */
.mickleham-cf7-slot .wpcf7-form { display: block; }

/* ============================ GALLERY MANAGER POLISH (v4.2) ============================ */
/* Keeps the existing layouts intact while giving both galleries a cleaner,
   more consistent presentation for mixed portrait/landscape uploads. */
.gallery .gal-item {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 33, 56, 0.08);
  transition: transform .28s ease, box-shadow .28s ease;
}

.gallery .gal-item img,
.gallery-static-item img {
  transition: transform .4s ease;
}

@media (hover: hover) {
  .gallery .gal-item:hover,
  .gallery-static-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(15, 33, 56, 0.13);
  }

  .gallery .gal-item:hover img,
  .gallery-static-item:hover img {
    transform: scale(1.018);
  }
}


/* ============================ V4.3 MOBILE RESPONSIVE POLISH ============================ */
/*
 * The header remains in normal document flow but sticks to the actual visible
 * top edge. JavaScript supplies --mickleham-nav-top from the real WordPress
 * admin bar height only when that bar is actually visible. This prevents the
 * 46px empty gap that could appear on mobile/customizer previews.
 */
.nav {
  position: sticky;
  top: var(--mickleham-nav-top, 0px);
  z-index: 1000;
}

@media (max-width: 1080px) {
  .nav-menu {
    top: calc(var(--mickleham-nav-top, 0px) + var(--mickleham-nav-height, 82px));
    bottom: auto;
  }
}

@media (max-width: 720px) {
  .nav-inner,
  .nav.scrolled .nav-inner {
    width: min(100% - 28px, 1520px);
    min-height: 70px;
    padding-block: 8px;
    gap: 10px;
  }

  .nav-logo {
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 56px);
    padding: 7px 9px;
    border-radius: 12px;
  }

  .nav-logo img,
  .nav.scrolled .nav-logo img {
    width: auto;
    max-width: min(100%, 260px);
    height: 34px;
  }

  .nav-actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .menu-toggle {
    flex: 0 0 44px;
  }

  .nav-menu {
    inset-inline: 14px;
    width: auto !important;
    max-height: calc(100dvh - var(--mickleham-nav-height, 70px) - var(--mickleham-nav-top, 0px) - 16px);
    border-radius: 16px;
  }

  /* Home hero: compact, readable heading with whole phrases kept together. */
  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 28px;
    padding: 44px 0 58px;
  }

  .hero-chip {
    max-width: 100%;
    padding: 9px 15px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .hero h1 {
    max-width: 100%;
    margin: 20px 0 18px;
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero h1 .word {
    max-width: 100%;
    overflow: visible;
    white-space: nowrap;
  }

  .hero p {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-ctas {
    gap: 12px;
  }

  .hero-ctas .btn {
    min-height: 50px;
    padding: 14px 20px;
    font-size: 12px;
  }

  .court-arcs {
    right: -330px;
    top: -180px;
    opacity: 0.3;
  }
}

@media (max-width: 520px) {
  .hero-grid {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(33px, 9.15vw, 39px);
  }

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

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Keep the home facility image and floating badges inside the viewport. */
  .collage {
    width: 100%;
    height: 430px;
  }

  .collage .img-a {
    width: 100%;
    height: 100%;
    border-width: 5px;
    border-radius: 26px;
    object-position: center;
  }

  .badge-float {
    left: 0;
    top: 14px;
  }

  .badge-award {
    right: 0;
    bottom: 0;
    max-width: calc(100% - 24px);
  }
}

@media (max-width: 390px) {
  .nav-inner,
  .nav.scrolled .nav-inner {
    width: min(100% - 20px, 1520px);
  }

  .nav-logo img,
  .nav.scrolled .nav-logo img {
    height: 30px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .hero p {
    font-size: 15px;
  }
}


/* ============================ V4.5 MOBILE HEADER + HERO FIX ============================ */
/*
 * Mobile-only correction layer. Desktop/tablet design remains unchanged.
 * The header is fixed to the visible top edge, the hero keeps safe side
 * spacing, and the open navigation uses the full available mobile width.
 */
@media (max-width: 1080px) {
  .nav {
    position: fixed !important;
    top: var(--mickleham-nav-top, 0px) !important;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
  }

  body {
    padding-top: var(--mickleham-nav-height, 82px);
  }

  .nav-menu,
  .nav.menu-open .nav-menu {
    position: fixed;
    top: calc(var(--mickleham-nav-top, 0px) + var(--mickleham-nav-height, 82px));
    bottom: auto;
  }
}

@media (max-width: 720px) {
  body {
    padding-top: var(--mickleham-nav-height, 70px);
  }

  .nav-inner,
  .nav.scrolled .nav-inner {
    width: min(100% - 24px, 1520px);
    min-height: 70px;
    padding-block: 8px;
  }

  .nav-menu,
  .nav.menu-open .nav-menu {
    left: 12px !important;
    right: 12px !important;
    width: calc(100vw - 24px) !important;
    max-width: none !important;
    margin: 0 !important;
    max-height: calc(100dvh - var(--mickleham-nav-height, 70px) - var(--mickleham-nav-top, 0px) - 12px);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    width: min(100% - 32px, 1520px);
    margin-inline: auto;
    padding: 36px 0 52px;
    gap: 24px;
  }

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

  .hero h1 {
    width: 100%;
    max-width: 100%;
    margin: 18px 0 18px;
    font-size: clamp(31px, 8.6vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero h1 .word {
    max-width: 100%;
    overflow: visible;
    white-space: nowrap;
  }

  .hero p {
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-ctas {
    width: 100%;
  }

  .hero-ctas .btn {
    min-width: 0;
  }

  .quick-stack,
  .qcard,
  .qcard-copy {
    min-width: 0;
    max-width: 100%;
  }

  .qcard-copy {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 430px) {
  .nav-inner,
  .nav.scrolled .nav-inner {
    width: min(100% - 20px, 1520px);
  }

  .nav-menu,
  .nav.menu-open .nav-menu {
    left: 10px !important;
    right: 10px !important;
    width: calc(100vw - 20px) !important;
  }

  .hero-grid {
    width: min(100% - 28px, 1520px);
    padding-top: 32px;
  }

  .hero h1 {
    font-size: clamp(29px, 8.4vw, 34px);
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 29px;
  }

  .hero h1 .word {
    white-space: normal;
  }
}

/* ============================================================
   v4.6 Blog readability, inline links and FAQ presentation
   ============================================================ */
.article-body a:not(.btn),
.article-body .mickleham-inline-link {
  color: #ff7a00;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body a:not(.btn):hover,
.article-body .mickleham-inline-link:hover {
  color: #e66e00;
}

.article-body h3 {
  margin: 32px 0 12px;
  color: var(--navy);
  font-size: clamp(21px, 2.1vw, 25px);
  line-height: 1.3;
}

.article-body ul,
.article-body ol {
  margin: 8px 0 26px 22px;
  color: #56667a;
  font-size: 16px;
  line-height: 1.8;
}

.article-body li + li {
  margin-top: 7px;
}

.article-faq {
  margin-top: 58px;
  padding-top: 8px;
}

.article-faq > h2 {
  margin-bottom: 24px;
}

.article-faq-list {
  display: grid;
  gap: 12px;
}

.article-faq-item {
  overflow: hidden;
  border: 1px solid #e3e9f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 33, 56, 0.05);
}

.article-faq-item summary {
  position: relative;
  cursor: pointer;
  padding: 19px 52px 19px 20px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
}

.article-faq-item summary::-webkit-details-marker {
  display: none;
}

.article-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #ff7a00;
  font-size: 25px;
  font-weight: 500;
}

.article-faq-item[open] summary::after {
  content: "−";
}

.article-faq-item > div {
  padding: 0 20px 18px;
}

.article-faq-item > div p {
  margin: 0;
  color: #56667a;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 650px) {
  .article-body h3 {
    margin-top: 27px;
  }
  .article-body ul,
  .article-body ol {
    margin-left: 18px;
  }
  .article-faq {
    margin-top: 45px;
  }
  .article-faq-item summary {
    padding: 17px 46px 17px 17px;
    font-size: 15px;
  }
  .article-faq-item summary::after {
    right: 16px;
  }
  .article-faq-item > div {
    padding: 0 17px 17px;
  }
}


/* ============================================================
   v4.7 Single blog post polish
   - sticky blog header
   - consistent 16px copy
   - visible CTA heading
   - list markers on every UL
   - clean FAQ typography
   ============================================================ */

/* Keep the main header pinned to the top on blog archive and single posts. */
body.blog .nav,
body.single-post .nav,
body.category .nav,
body.archive .nav {
  position: fixed !important;
  top: var(--mickleham-nav-top, 0px) !important;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}

body.admin-bar.blog .nav,
body.admin-bar.single-post .nav,
body.admin-bar.category .nav,
body.admin-bar.archive .nav {
  top: var(--mickleham-nav-top, 32px) !important;
}

/* Single-post body copy stays at one comfortable reading size. */
body.single-post .article-body,
body.single-post .article-body > p,
body.single-post .article-body p,
body.single-post .article-body .article-lead,
body.single-post .article-body ul,
body.single-post .article-body ol,
body.single-post .article-body li,
body.single-post .article-faq-item > div p,
body.single-post .article-cta p {
  font-size: 16px !important;
}

body.single-post .article-body > p,
body.single-post .article-body p,
body.single-post .article-body .article-lead,
body.single-post .article-body li {
  line-height: 1.85;
}

/* Content headings stay dark on the light article background. */
body.single-post .article-body h2,
body.single-post .article-body h3,
body.single-post .article-body h4 {
  color: var(--navy) !important;
}

/* The CTA is dark, so its heading must remain white. */
body.single-post .article-body .article-cta h3 {
  display: block !important;
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: 26px !important;
  line-height: 1.25;
}

body.single-post .article-body .article-cta p {
  margin: 0 0 22px !important;
  color: rgba(255, 255, 255, 0.74) !important;
  line-height: 1.75;
}

/* Every unordered list in a single blog post gets a visible marker. */
body.single-post .article-body ul {
  display: block;
  margin: 10px 0 26px !important;
  padding-left: 28px !important;
  list-style: disc outside !important;
}

body.single-post .article-body ul li {
  display: list-item !important;
  padding-left: 4px;
}

body.single-post .article-body ul li::marker {
  color: #ff7a00;
  font-size: 1.05em;
}

body.single-post .article-body ol {
  margin: 10px 0 26px !important;
  padding-left: 30px !important;
  list-style: decimal outside !important;
}

/* FAQ text uses the same 16px reading size. */
body.single-post .article-faq-item summary {
  font-size: 16px !important;
}

body.single-post .article-faq-item > div p {
  font-size: 16px !important;
  line-height: 1.75;
}

@media (max-width: 782px) {
  body.admin-bar.blog .nav,
  body.admin-bar.single-post .nav,
  body.admin-bar.category .nav,
  body.admin-bar.archive .nav {
    top: var(--mickleham-nav-top, 0px) !important;
  }
}

@media (max-width: 650px) {
  body.single-post .article-body,
  body.single-post .article-body > p,
  body.single-post .article-body p,
  body.single-post .article-body .article-lead,
  body.single-post .article-body ul,
  body.single-post .article-body ol,
  body.single-post .article-body li,
  body.single-post .article-faq-item > div p,
  body.single-post .article-cta p,
  body.single-post .article-faq-item summary {
    font-size: 16px !important;
  }
}

/* ============================================================
   v4.8 Live Customizer/Home inline internal-link colour fix
   ============================================================ */
.mickleham-live-home a:not(.btn),
[class*="mickleham-live-home-"] a:not(.btn) {
  color: #ff7a00 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 700;
}

.mickleham-live-home a:not(.btn):hover,
[class*="mickleham-live-home-"] a:not(.btn):hover {
  color: #e66e00 !important;
}
