:root {
  --bg: #050505;
  --panel: #0b0b0b;
  --panel-soft: #101010;
  --gold: #d4af37;
  --gold-bright: #f0cc55;
  --gold-soft: rgba(212, 175, 55, 0.18);
  --text: #ffffff;
  --muted: #b8b8b8;
  --subtle: #777777;
  --border: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(212, 175, 55, 0.34);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  --max-width: 1180px;
  --cursor-x: 50vw;
  --cursor-y: 22vh;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.12), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.045), transparent 21%),
    linear-gradient(115deg, rgba(212, 175, 55, 0.09), transparent 28%),
    linear-gradient(180deg, #050505 0%, #080808 45%, #050505 100%);
  animation: ambient-pan 18s ease-in-out infinite alternate;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(212, 175, 55, 0.105), transparent 20rem),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: auto, 86px 86px, 86px 86px;
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 88%, transparent);
  opacity: 0.82;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 -1px 0 rgba(212, 175, 55, 0.04);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(212, 175, 55, 0.22);
  background: rgba(5, 5, 5, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.header-inner,
.footer-inner,
.section,
.hero-inner,
.final-cta-inner,
.contact-layout,
.story-layout {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  object-fit: contain;
  background: #050505;
  box-shadow: inset 0 0 24px rgba(212, 175, 55, 0.08);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.brand:hover .brand-logo {
  border-color: rgba(212, 175, 55, 0.72);
  box-shadow:
    inset 0 0 28px rgba(212, 175, 55, 0.13),
    0 0 24px rgba(212, 175, 55, 0.16);
  transform: translateY(-1px);
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a,
.footer-nav a {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a::after,
.footer-nav a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--gold);
}

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

.nav-cta,
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.nav-cta::before,
.button::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, transparent 12%, rgba(255, 255, 255, 0.42), transparent 42%);
  opacity: 0;
  transform: translateX(-120%);
}

.nav-cta:hover::before,
.button:hover::before {
  opacity: 0.72;
  animation: button-sheen 760ms ease;
}

.nav-cta {
  min-width: 132px;
  padding: 0 18px;
  border: 1px solid var(--border-gold);
  color: var(--gold);
}

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

.nav-cta:hover {
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform 200ms ease,
    opacity 200ms ease,
    background 200ms ease;
}

.menu-toggle.is-active span {
  background: var(--gold);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section-band {
  position: relative;
  overflow: hidden;
}

.section-band::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.13), transparent 30%),
    linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent 32%),
    linear-gradient(0deg, #050505 0%, transparent 24%, transparent 76%, #050505 100%);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 78px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 24%, rgba(212, 175, 55, 0.09), transparent 28%),
    linear-gradient(180deg, #050505 0%, #050505 100%);
  isolation: isolate;
}

.hero.section-band::before {
  background: #050505;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100dvh - 78px);
  place-items: center;
  padding: clamp(52px, 7dvh, 86px) 0;
}

.hero-copy {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 1040px;
  justify-items: center;
  text-align: center;
}

.hero-copy::before {
  width: 76px;
  height: 2px;
  margin-bottom: 24px;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.38);
}

.hero-eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

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

h1 {
  max-width: 1120px;
  margin-bottom: 28px;
  font-size: clamp(5.8rem, 10.4vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text);
  text-shadow:
    0 16px 56px rgba(0, 0, 0, 0.72),
    0 0 22px rgba(255, 255, 255, 0.08);
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 30px;
  font-size: clamp(3.8rem, 6.3vw, 6.6rem);
  line-height: 0.94;
  font-weight: 850;
  text-transform: none;
  text-shadow:
    0 14px 46px rgba(0, 0, 0, 0.62),
    0 0 14px rgba(255, 255, 255, 0.055);
}

.hero h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.hero-subhead,
.section-heading p,
.contact-copy > p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-subhead {
  max-width: 760px;
  margin-bottom: 28px;
}

.hero-lower {
  display: grid;
  width: 100%;
  justify-items: inherit;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  width: auto;
  margin-bottom: 22px;
}

.hero-actions .button {
  min-width: 172px;
}

.button {
  min-width: 150px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.button-primary {
  border-color: rgba(255, 229, 139, 0.48);
  background:
    linear-gradient(135deg, #f2cf58 0%, var(--gold) 42%, #b88e1e 100%);
  color: #050505;
  box-shadow:
    0 16px 42px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -10px 22px rgba(72, 51, 4, 0.14);
}

.button-primary::after {
  position: absolute;
  right: 18px;
  bottom: 10px;
  left: 18px;
  z-index: -1;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  opacity: 0.72;
  transform: translateX(-55%);
  animation: button-accent-slide 3.6s ease-in-out infinite;
}

.button-primary:hover {
  background:
    linear-gradient(135deg, #ffe27a 0%, var(--gold-bright) 42%, #c99d27 100%);
  box-shadow:
    0 0 34px rgba(212, 175, 55, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -10px 22px rgba(72, 51, 4, 0.12);
}

.button-secondary,
.button-card {
  border-color: var(--border-gold);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover,
.button-card:hover {
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.18);
}

.age-pill,
.time-pill,
.coaching-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.section {
  padding: 112px 0;
}

.section-alt {
  position: relative;
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(20px, calc((100vw - var(--max-width)) / 2));
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    #070707;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading-centred {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.section-heading-centred .eyebrow::after {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.feature-grid,
.program-grid,
.coaching-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.program-card,
.coaching-card,
.testimonial-card,
.enquiry-form,
.contact-note,
.story-copy {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.feature-card::before,
.program-card::before,
.coaching-card::before,
.testimonial-card::before,
.enquiry-form::before,
.contact-note::before,
.story-copy::before,
.privacy-content::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(212, 175, 55, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), transparent 28%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.feature-card > *,
.program-card > *,
.coaching-card > *,
.testimonial-card > *,
.enquiry-form > *,
.contact-note > *,
.story-copy > *,
.privacy-content > * {
  position: relative;
  z-index: 1;
}

.feature-card,
.program-card,
.coaching-card,
.testimonial-card {
  transition:
    transform 260ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(0, 0, 0);
  transform-style: preserve-3d;
}

.feature-card:hover,
.program-card:hover,
.coaching-card:hover,
.testimonial-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42), 0 0 34px rgba(212, 175, 55, 0.12);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translate3d(0, -8px, 0);
}

.feature-card:hover::before,
.program-card:hover::before,
.coaching-card:hover::before,
.testimonial-card:hover::before,
.enquiry-form:hover::before,
.contact-note:hover::before,
.story-copy:hover::before,
.privacy-content:hover::before {
  opacity: 1;
}

.feature-card {
  min-height: 260px;
  padding: 26px;
}

.card-marker {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-card p,
.program-card p,
.coaching-card p,
.testimonial-card p,
.story-copy p,
.story-copy li,
.contact-note span {
  color: var(--muted);
}

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

.program-card,
.coaching-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.button-emphasis {
  min-width: min(100%, 320px);
  min-height: 58px;
  border-color: rgba(240, 204, 85, 0.65);
  font-size: 1rem;
  box-shadow:
    0 20px 58px rgba(212, 175, 55, 0.24),
    0 0 0 1px rgba(212, 175, 55, 0.2);
}

.program-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.age-pill,
.time-pill,
.coaching-meta span {
  padding: 0 12px;
}

.age-pill {
  border-color: var(--border-gold);
  color: var(--gold);
}

.session-time {
  color: var(--gold) !important;
  font-size: 0.92rem;
  font-weight: 900;
}

.program-card ul,
.coaching-card ul,
.story-copy ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.program-card li::marker,
.coaching-card li::marker,
.story-copy li::marker {
  color: var(--gold);
}

.pricing-block {
  display: grid;
  gap: 5px;
  margin: auto 0 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.pricing-block strong,
.price {
  color: var(--gold);
  font-size: 1.12rem;
}

.pricing-block span {
  color: var(--muted);
  font-size: 0.9rem;
}

.kit-note {
  margin-top: auto;
  margin-bottom: 0;
  padding: 15px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.07);
  color: var(--gold) !important;
  font-size: 0.94rem;
  font-weight: 900;
}

.button-card {
  width: 100%;
  margin-top: auto;
}

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

.coaching-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.price {
  display: block;
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 42px;
  align-items: stretch;
}

.story-copy {
  padding: 34px;
  font-size: 1.02rem;
}

.story-copy h2 {
  margin-bottom: 28px;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.story-image {
  position: sticky;
  top: 108px;
  align-self: start;
  height: min(760px, calc(100svh - 132px));
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  background: #0d0d0d;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.story-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 46%, rgba(5, 5, 5, 0.72)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.26), transparent 44%);
  pointer-events: none;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04) brightness(0.88);
  transform: translate3d(var(--image-shift-x, 0px), var(--image-shift-y, 0px), 0) scale(1.02);
  transition: transform 420ms ease;
}

.story-image:hover img {
  transform: translate3d(var(--image-shift-x, 0px), var(--image-shift-y, 0px), 0) scale(1.055);
}

.story-image:hover {
  border-color: rgba(212, 175, 55, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.56), 0 0 38px rgba(212, 175, 55, 0.16);
}

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

.testimonial-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 26px;
  text-align: center;
}

.stars {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.24);
}

.testimonial-card p {
  flex: 1;
}

.testimonial-card strong {
  color: var(--text);
}

.testimonial-card span {
  color: var(--subtle);
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-tile {
  position: relative;
  margin: 0;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #0d0d0d;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04) brightness(0.86);
  transform: translate3d(var(--image-shift-x, 0px), var(--image-shift-y, 0px), 0) scale(1.01);
  transition:
    filter 260ms ease,
    transform 420ms ease;
}

.gallery-tile::before,
.gallery-tile::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.gallery-tile::before {
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 44%, rgba(5, 5, 5, 0.62)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.34), transparent 42%);
  opacity: 0.88;
  transition: transform 260ms ease;
}

.gallery-tile::after {
  z-index: 2;
  right: 16px;
  bottom: 16px;
  width: 54px;
  height: 2px;
  background: var(--gold);
  opacity: 0.88;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.28);
  transform-origin: right;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.gallery-tile:hover {
  border-color: var(--border-gold);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.48), 0 0 28px rgba(212, 175, 55, 0.13);
  transform: translateY(-6px);
}

.gallery-tile:hover img {
  filter: saturate(1.02) contrast(1.06) brightness(0.94);
  transform: translate3d(var(--image-shift-x, 0px), var(--image-shift-y, 0px), 0) scale(1.07);
}

.gallery-tile:hover::after {
  opacity: 1;
  transform: scaleX(1.55);
}

.gallery-tile-large {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

.final-cta {
  padding: 100px 0;
  border-block: 1px solid var(--border-gold);
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.22), transparent 36%),
    linear-gradient(100deg, rgba(212, 175, 55, 0.12), transparent 45%),
    #080808;
}

.final-cta-inner {
  max-width: 860px;
  text-align: center;
}

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

.final-cta .eyebrow::after {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.final-cta .hero-actions {
  justify-content: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 44px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 108px;
}

.contact-note {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
}

.contact-note strong {
  color: var(--gold);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
}

.enquiry-form::before {
  display: none;
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 900;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.enquiry-form input,
.enquiry-form select {
  min-height: 48px;
  padding: 0 14px;
}

.enquiry-form textarea {
  min-height: 128px;
  resize: vertical;
  padding: 14px;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--border-gold);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.full-field {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 0%, rgba(212, 175, 55, 0.08), transparent 28%),
    #030303;
}

.footer-inner {
  display: grid;
  gap: 26px;
  padding: 48px 0;
}

.footer-inner > p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-contact {
  display: grid;
  gap: 3px;
  width: min(100%, 320px);
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.footer-contact span,
.footer-inner > small {
  color: var(--subtle);
}

.footer-contact strong,
.footer-contact a {
  color: var(--gold);
}

.footer-contact a {
  width: fit-content;
  font-weight: 850;
  transition: color 180ms ease;
}

.footer-contact a:hover {
  color: var(--gold-bright);
}

.privacy-page {
  min-height: 70svh;
}

.privacy-content {
  position: relative;
  overflow: hidden;
  max-width: 880px;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.privacy-content h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.privacy-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.privacy-content p,
.privacy-content li {
  color: var(--muted);
}

.privacy-content ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.privacy-content li::marker {
  color: var(--gold);
}

.privacy-updated {
  color: var(--gold) !important;
  font-weight: 900;
}

.privacy-content .button {
  margin-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 620ms ease,
    transform 620ms ease,
    filter 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes ambient-pan {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(0, -18px, 0) scale(1.04);
  }
}

@keyframes button-sheen {
  to {
    transform: translateX(120%);
  }
}

@keyframes button-accent-slide {
  0%,
  28% {
    transform: translateX(-60%);
    opacity: 0;
  }

  48% {
    opacity: 0.8;
  }

  72%,
  100% {
    transform: translateX(60%);
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 14px;
    font-size: 0.82rem;
  }

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

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

  .program-card {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 72px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    z-index: 102;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-height: calc(100svh - 96px);
    margin: 0;
    overflow: auto;
    padding: 12px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 8px;
    background:
      radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.14), transparent 36%),
      rgba(5, 5, 5, 0.98);
    box-shadow:
      0 28px 72px rgba(0, 0, 0, 0.58),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    backdrop-filter: blur(18px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

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

  .site-nav a {
    min-height: 46px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .story-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: calc(100dvh - 72px);
    padding: 34px 0 44px;
  }

  .story-image,
  .contact-copy {
    position: static;
  }

  body::after {
    background-size: auto, 64px 64px, 64px 64px;
  }

  .story-image {
    min-height: 440px;
    height: auto;
    aspect-ratio: 4 / 5;
  }

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

@media (max-width: 640px) {
  .header-inner,
  .footer-inner,
  .section,
  .hero-inner,
  .final-cta-inner,
  .contact-layout,
  .story-layout {
    width: min(100% - 32px, var(--max-width));
  }

  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    background: rgba(5, 5, 5, 0.88);
  }

  .header-inner {
    gap: 12px;
  }

  .brand-copy span {
    font-size: 0.84rem;
  }

  .brand-copy small {
    font-size: 0.6rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border-color: rgba(212, 175, 55, 0.22);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
      #0a0a0a;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.06);
  }

  .site-nav {
    right: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    max-height: calc(100svh - 88px);
  }

  .site-nav a {
    min-height: 48px;
  }

  .hero {
    min-height: calc(100dvh - 72px);
  }

  .hero::after {
    background:
      radial-gradient(circle at 18% 14%, rgba(212, 175, 55, 0.1), transparent 32%),
      linear-gradient(180deg, #050505 0%, #050505 100%);
    opacity: 1;
  }

  .hero-inner {
    display: grid;
    min-height: calc(100dvh - 72px);
    align-content: start;
    padding-top: clamp(34px, 5.6dvh, 56px);
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    place-items: start center;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    text-align: left;
    justify-items: start;
  }

  .hero-copy::before {
    width: 54px;
    margin-bottom: 14px;
  }

  .hero-eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    width: min(100%, 27rem);
    margin-bottom: 26px;
    font-size: clamp(2.72rem, 12vw, 3.45rem);
    line-height: 0.82;
    text-transform: uppercase;
    text-wrap: balance;
    overflow-wrap: normal;
  }

  .hero-lower {
    margin-top: clamp(18px, 5.4dvh, 54px);
  }

  h2 {
    margin-bottom: 14px;
    font-size: clamp(1.92rem, 9.8vw, 2.72rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-subhead {
    width: min(100%, 30rem);
    margin-bottom: 30px;
    font-size: clamp(0.96rem, 3.7vw, 1.1rem);
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
  }

  .hero .hero-actions .button {
    width: auto;
    min-width: 0;
    min-height: 66px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 1rem;
    box-shadow:
      0 18px 48px rgba(212, 175, 55, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }

  .button-primary.full-field {
    width: 100%;
  }

  .button {
    min-width: 0;
    width: 100%;
    min-height: 66px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 1rem;
  }

  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .section-alt {
    padding-right: 16px;
    padding-left: 16px;
  }

  .story-section .story-layout,
  .contact-section .contact-layout {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading p,
  .contact-copy > p,
  .final-cta p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .eyebrow {
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .eyebrow::before,
  .section-heading-centred .eyebrow::after,
  .final-cta .eyebrow::after {
    width: 24px;
  }

  .feature-grid,
  .coaching-grid,
  .testimonial-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .program-grid,
  .coaching-grid,
  .testimonial-grid {
    gap: 14px;
  }

  .feature-card,
  .program-card,
  .coaching-card,
  .testimonial-card,
  .story-copy,
  .privacy-content,
  .enquiry-form {
    padding: 20px;
    max-width: 100%;
  }

  .privacy-content h1 {
    font-size: clamp(1.86rem, 8.8vw, 2.38rem);
    text-wrap: balance;
  }

  .privacy-content h2 {
    font-size: clamp(1.04rem, 5.45vw, 1.38rem);
    line-height: 1.14;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .program-card,
  .coaching-card,
  .testimonial-card,
  .enquiry-form,
  .contact-note,
  .story-copy {
    border-color: rgba(255, 255, 255, 0.12);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022)),
      #0a0a0a;
  }

  .program-topline,
  .coaching-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .program-topline {
    margin-bottom: 18px;
  }

  .age-pill,
  .time-pill,
  .coaching-meta span {
    justify-content: center;
    min-height: 38px;
    padding: 0 8px;
    text-align: center;
  }

  .session-time {
    margin-bottom: 12px;
  }

  .program-card p,
  .coaching-card p,
  .testimonial-card p,
  .story-copy p,
  .story-copy li {
    line-height: 1.58;
  }

  .program-card ul,
  .coaching-card ul,
  .story-copy ul {
    gap: 8px;
  }

  .section-cta {
    margin-top: 22px;
  }

  .button-emphasis {
    width: 100%;
    min-height: 56px;
  }

  .pricing-block {
    gap: 7px;
    margin-bottom: 18px;
    padding: 16px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.055);
  }

  .price {
    margin-bottom: 12px;
    font-size: 1.25rem;
  }

  .testimonial-card {
    min-height: 0;
    text-align: left;
  }

  .stars {
    margin-bottom: 14px;
  }

  .story-copy {
    font-size: 0.98rem;
  }

  .story-image {
    min-height: 0;
    aspect-ratio: 1 / 1.05;
  }

  .contact-layout,
  .story-layout {
    gap: 24px;
  }

  .contact-note {
    margin-top: 20px;
    padding: 18px;
  }

  .enquiry-form {
    gap: 14px;
  }

  .enquiry-form input,
  .enquiry-form select {
    min-height: 52px;
  }

  .enquiry-form textarea {
    min-height: 116px;
  }

  .gallery-grid {
    grid-auto-rows: 138px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-tile {
    min-height: 138px;
  }

  .gallery-tile-large,
  .gallery-tile-wide {
    grid-column: span 2;
  }

  .gallery-tile-large,
  .gallery-tile-tall {
    grid-row: span 2;
  }

  .gallery-tile::after {
    right: 12px;
    bottom: 12px;
    width: 38px;
  }

  .final-cta {
    padding: 72px 0;
  }

  .final-cta .hero-actions {
    display: grid;
    width: 100%;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .footer-nav a {
    min-height: 38px;
  }

  .footer-contact {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .brand-copy span {
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11.2vw, 2.92rem);
  }

  .hero-subhead {
    font-size: 1.02rem;
  }

  .gallery-grid {
    grid-auto-rows: 126px;
  }

  .gallery-tile {
    min-height: 126px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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