:root {
  --black: #070707;
  --charcoal: #111112;
  --charcoal-2: #181818;
  --ice: #e6e8e8;
  --silver: #a7abad;
  --muted: #8c9093;
  --line: rgba(230, 232, 232, 0.18);
  --red: #e01d18;
  --red-dark: #9f140f;
  --orange: #f47b20;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(224, 29, 24, 0.22), transparent 22rem),
    linear-gradient(180deg, #050505 0%, #101010 48%, #070707 100%);
  color: var(--ice);
  font-family: "Manrope", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.08;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.24) 49%, transparent 50%),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 19px);
  mix-blend-mode: screen;
}

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

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

.ice-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.28;
  background:
    repeating-linear-gradient(100deg, transparent 0 24px, rgba(255, 255, 255, 0.03) 25px 26px),
    repeating-linear-gradient(-8deg, transparent 0 32px, rgba(255, 255, 255, 0.025) 33px 34px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(5, 5, 5, 0.76);
  border-bottom: 1px solid rgba(230, 232, 232, 0.12);
  backdrop-filter: blur(18px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.ig-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  padding: 0.45rem 0.85rem;
  color: #fff;
  border: 1px solid rgba(230, 232, 232, 0.16);
  background: rgba(255, 255, 255, 0.035);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: transform 420ms var(--ease), border-color 420ms var(--ease), background 420ms var(--ease);
}

.ig-chip svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.65;
}

.ig-chip:hover,
.ig-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(244, 123, 32, 0.62);
  background: rgba(244, 123, 32, 0.09);
}

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

.brand-logo {
  display: block;
  width: clamp(5.4rem, 8vw, 8.2rem);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.42));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  color: #f3f3f3;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.08rem;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms var(--ease);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.55rem 0.45rem 1rem;
  border: 1px solid rgba(244, 123, 32, 0.45);
  color: #fff;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  transition: transform 420ms var(--ease), border-color 420ms var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: var(--red);
}

.button-disc {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.1);
  color: currentColor;
  transition: transform 480ms var(--ease), background 480ms var(--ease);
}

.button-disc svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: 7.5rem clamp(1.25rem, 5vw, 5rem) 5rem;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 2px solid rgba(224, 29, 24, 0.72);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.88) 38%, rgba(7, 7, 7, 0.18) 65%, rgba(7, 7, 7, 0.72) 100%),
    linear-gradient(115deg, rgba(224, 29, 24, 0.16), transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -6rem;
  top: 8rem;
  width: min(45vw, 38rem);
  aspect-ratio: 1;
  border: 1px solid rgba(230, 232, 232, 0.13);
  border-radius: 50%;
  transform: rotate(-18deg);
  z-index: -1;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  filter: saturate(0.74) contrast(1.08);
}

.hero-logo-mark {
  position: absolute;
  right: clamp(-4rem, 2vw, 4.5rem);
  bottom: clamp(1.5rem, 7vw, 7rem);
  width: min(29vw, 25rem);
  height: auto;
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
  filter: saturate(0.9) drop-shadow(0 24px 36px rgba(0, 0, 0, 0.55));
}

.hero-copy {
  max-width: 58rem;
}

.hero h1 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(4.4rem, 9vw, 8.8rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 span:first-child {
  color: #f3f3f3;
  text-shadow: 0 12px 0 rgba(255, 255, 255, 0.02);
}

.hero h1 span:last-child {
  color: var(--red);
}

.hero p {
  max-width: 35rem;
  margin: 1.75rem 0 0;
  color: #f0f2f2;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  min-height: 3.9rem;
  padding: 0.8rem 0.8rem 0.8rem 1.45rem;
  border: 1px solid transparent;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: transform 480ms var(--ease), background 480ms var(--ease), border-color 480ms var(--ease);
}

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

.button:hover .button-disc,
.button:focus-visible .button-disc {
  transform: translateX(0.25rem);
}

.button:active {
  transform: scale(0.98);
}

.button-primary {
  background: linear-gradient(135deg, var(--red), #c91712);
  border-color: rgba(255, 255, 255, 0.16);
}

.button-primary .button-disc {
  background: rgba(7, 7, 7, 0.22);
}

.button-ghost,
.button-outline {
  background: rgba(7, 7, 7, 0.45);
  border-color: rgba(244, 123, 32, 0.55);
}

.crease-map {
  position: absolute;
  right: 3rem;
  bottom: 2.6rem;
  width: 11rem;
  height: 4.8rem;
  border-bottom: 1px solid rgba(230, 232, 232, 0.28);
  border-left: 1px solid rgba(230, 232, 232, 0.18);
  opacity: 0.9;
}

.crease-map span {
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 4.5rem;
  background: rgba(230, 232, 232, 0.18);
  transform: rotate(62deg);
}

.crease-map span:nth-child(1) {
  left: 1.5rem;
}

.crease-map span:nth-child(2) {
  left: 5rem;
  background: rgba(244, 123, 32, 0.64);
}

.crease-map span:nth-child(3) {
  left: 8.5rem;
}

section {
  position: relative;
  z-index: 1;
  scroll-margin-top: 6rem;
}

.focus-section {
  padding: clamp(4rem, 7vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  background:
    linear-gradient(180deg, rgba(19, 19, 20, 0.95), rgba(7, 7, 7, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 10rem, rgba(230, 232, 232, 0.04) 10.05rem 10.1rem);
  border-bottom: 2px solid rgba(224, 29, 24, 0.72);
}

.about-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.98), rgba(13, 13, 13, 0.94)),
    radial-gradient(circle at 100% 0%, rgba(224, 29, 24, 0.12), transparent 22rem);
}

.about-copy {
  position: sticky;
  top: 7rem;
}

.about-copy p {
  margin: 1.25rem 0 0;
  max-width: 34rem;
  color: var(--silver);
  line-height: 1.7;
}

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

.about-card {
  min-height: 18rem;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid rgba(230, 232, 232, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    repeating-linear-gradient(135deg, rgba(230, 232, 232, 0.035) 0 1px, transparent 1px 18px);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}

.about-card h3 {
  margin: 0.45rem 0 1rem;
  color: #fff;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1;
  text-transform: uppercase;
}

.about-card p {
  margin: 0;
  color: var(--silver);
  line-height: 1.6;
}

.org-card {
  grid-column: span 2;
  min-height: 15rem;
  background:
    linear-gradient(105deg, rgba(224, 29, 24, 0.18), rgba(255, 255, 255, 0.025)),
    #101010;
}

.org-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.5rem;
  list-style: none;
}

.org-card li {
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.7rem;
  color: #f2f2f2;
  line-height: 1.45;
}

.org-card li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: 0.48rem;
  background: var(--orange);
  transform: rotate(45deg);
}

.section-heading,
.programs-top,
.method-section,
.booking-section,
.coaches-section,
.search-section,
.faq-section,
.contact-section,
.site-footer {
  max-width: 1320px;
  margin-inline: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 0.55fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}

h2 {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading p,
.programs-top p,
.method-copy p,
.location-panel p,
.booking-form p {
  margin: 0;
  color: var(--silver);
  line-height: 1.65;
}

.focus-rail {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-logo-bug {
  width: min(11rem, 48vw);
  height: auto;
  margin-bottom: 1.4rem;
  opacity: 0.92;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.32));
}

.focus-item {
  min-height: 17rem;
  padding: 2.3rem 1.7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid var(--line);
}

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

.focus-icon {
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid rgba(230, 232, 232, 0.8);
  border-radius: 50%;
  position: relative;
  margin-bottom: 1.5rem;
}

.focus-icon::before,
.focus-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  color: var(--orange);
}

.angle-icon::before {
  width: 3.2rem;
  height: 1px;
  left: 0.65rem;
  top: 2.2rem;
  transform: rotate(-42deg);
}

.angle-icon::after {
  width: 2.4rem;
  height: 1px;
  left: 1.15rem;
  top: 2.25rem;
  transform: rotate(42deg);
}

.depth-icon::before {
  left: 1.45rem;
  top: 1rem;
  width: 1.5rem;
  height: 2.6rem;
  border: 1px solid var(--orange);
  border-bottom: 0;
  border-radius: 1.5rem 1.5rem 0 0;
  background: transparent;
}

.depth-icon::after {
  left: 0.9rem;
  top: 2.7rem;
  width: 2.7rem;
  height: 1px;
}

.recovery-icon::before,
.recovery-icon::after {
  width: 2.7rem;
  height: 1px;
  left: 0.85rem;
  transform: rotate(-36deg);
}

.recovery-icon::before {
  top: 1.7rem;
}

.recovery-icon::after {
  top: 2.7rem;
  background: rgba(230, 232, 232, 0.9);
}

.tracking-icon::before {
  width: 3.4rem;
  height: 1px;
  left: 0.55rem;
  top: 2.2rem;
}

.tracking-icon::after {
  width: 1px;
  height: 3.4rem;
  left: 2.2rem;
  top: 0.55rem;
  background: rgba(230, 232, 232, 0.9);
}

.reads-icon::before {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  left: 1.1rem;
  top: 1.25rem;
  box-shadow: 1.6rem 0.6rem 0 var(--orange), 0.95rem 1.9rem 0 rgba(230, 232, 232, 0.9);
}

.focus-item h3,
.program-content h3,
.session-strip strong {
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
}

.focus-item h3 {
  font-size: 1.5rem;
  color: #f5f5f5;
}

.focus-item h3::after,
.program-content h3::after,
.location-panel h2::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 3px;
  margin: 0.65rem 0 0.9rem;
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.focus-item p {
  margin: 0;
  color: var(--silver);
  font-size: 0.94rem;
  line-height: 1.55;
}

.programs-section {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  background:
    linear-gradient(180deg, #090909, #121212 62%, #080808),
    radial-gradient(circle at 0% 100%, rgba(244, 123, 32, 0.18), transparent 26rem);
}

.programs-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.inline-link {
  color: #fff;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.35rem;
  transition: color 420ms var(--ease);
}

.inline-link:hover {
  color: var(--orange);
}

.program-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.82fr 0.82fr;
  gap: 1rem;
}

.program-card {
  position: relative;
  min-height: 33rem;
  display: grid;
  grid-template-rows: 12.5rem 1fr;
  background: linear-gradient(180deg, #171717, #0d0d0d);
  border: 1px solid rgba(224, 29, 24, 0.68);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0% 100%);
  overflow: hidden;
}

.program-card.large {
  grid-row: span 2;
  min-height: 42rem;
}

.program-card.wide {
  grid-column: span 2;
  min-height: 22rem;
  grid-template-columns: 0.9fr 1fr;
  grid-template-rows: 1fr;
}

.program-image {
  min-height: 12rem;
  background-image:
    linear-gradient(180deg, transparent, rgba(7, 7, 7, 0.9)),
    var(--program-photo);
  background-size: cover;
  filter: grayscale(0.45) contrast(1.08);
}

.image-private {
  --program-photo: url("./assets/ig-goalie-red.jpg");
  background-position: 50% 36%;
}

.image-groups {
  --program-photo: url("./assets/ig-goalie-thunder.jpg");
  background-position: 50% 34%;
}

.image-clinics {
  --program-photo: url("./assets/ig-goalie-will.jpg");
  background-position: 48% 20%;
}

.image-video {
  --program-photo: url("./assets/ig-goalie-red.jpg");
  background-position: 50% 42%;
}

.program-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.age-line {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.program-content h3 {
  margin-top: 0.5rem;
  font-size: 2rem;
}

.program-content p {
  margin: 0;
  color: var(--silver);
  line-height: 1.6;
}

.program-content a {
  width: max-content;
  margin-top: 1.5rem;
  color: #fff;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
}

.program-content a::after {
  content: ">";
  color: var(--red);
  margin-left: 0.7rem;
}

.social-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 0.64fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.social-copy {
  position: sticky;
  top: 7rem;
}

.social-copy p {
  margin: 1rem 0 1.5rem;
  max-width: 30rem;
  color: var(--silver);
  line-height: 1.65;
}

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

.feed-card {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  border: 1px solid rgba(224, 29, 24, 0.58);
  background: #111;
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
}

.feed-card.tall {
  grid-row: span 2;
  min-height: 35rem;
}

.feed-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.feed-card:first-child img {
  object-position: 50% 36%;
}

.feed-card:nth-child(2) img {
  object-position: 50% 30%;
}

.feed-card:nth-child(3) img {
  object-position: 50% 18%;
}

.feed-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 7, 0.92));
  pointer-events: none;
}

.feed-card span {
  position: absolute;
  left: 1.2rem;
  bottom: 1.1rem;
  z-index: 1;
  color: #fff;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.feed-card span::before {
  content: "@defiancegoalie";
  display: block;
  margin-bottom: 0.35rem;
  color: var(--orange);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
}

.feed-card:hover img,
.feed-card:focus-visible img {
  transform: scale(1.045);
  filter: saturate(0.9) contrast(1.08);
}

.coaches-section {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(16, 16, 16, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 8rem, rgba(230, 232, 232, 0.035) 8.05rem 8.1rem);
}

.coaches-heading {
  position: sticky;
  top: 7rem;
}

.coaches-heading p {
  margin: 1rem 0 0;
  max-width: 28rem;
  color: var(--silver);
  line-height: 1.65;
}

.coach-template-grid {
  display: grid;
  gap: 1rem;
}

.coach-card {
  display: grid;
  grid-template-columns: minmax(12rem, 0.44fr) 1fr;
  min-height: 20rem;
  border: 1px solid rgba(230, 232, 232, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  overflow: hidden;
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
}

.coach-photo-slot {
  min-height: 18rem;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(224, 29, 24, 0.18), rgba(244, 123, 32, 0.04)),
    repeating-linear-gradient(135deg, rgba(230, 232, 232, 0.1) 0 1px, transparent 1px 16px),
    #101010;
  border-right: 1px solid rgba(224, 29, 24, 0.44);
}

.coach-photo-slot span {
  display: inline-grid;
  place-items: center;
  width: 6rem;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 123, 32, 0.62);
  color: var(--orange);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
}

.coach-photo-filled {
  place-items: stretch;
}

.coach-photo-filled img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.82) contrast(1.08);
}

.coach-card-action {
  grid-template-columns: 1fr;
}

.coach-card-owner {
  border-color: rgba(244, 123, 32, 0.34);
  background:
    linear-gradient(135deg, rgba(244, 123, 32, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(10, 10, 10, 0.98));
}

.coach-card-action .coach-photo-slot {
  min-height: clamp(14rem, 24vw, 18rem);
  border-right: 0;
  border-bottom: 1px solid rgba(224, 29, 24, 0.44);
}

.coach-photo-action {
  background: #0d0d0d;
}

.coach-photo-action img {
  object-fit: cover;
  object-position: 50% 50%;
}

.coach-photo-owner img {
  object-position: 50% 18%;
  filter: saturate(0.92) contrast(1.05);
}

.coach-card-body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.coach-card-body h3 {
  margin: 0.45rem 0 1.5rem;
  color: #fff;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  text-transform: uppercase;
}

.coach-bio {
  margin: 0 0 1rem;
  color: var(--silver);
  line-height: 1.62;
}

.coach-bio + dl {
  margin-top: 1.25rem;
}

.coach-card-body dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.coach-card-body div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.coach-card-body dt {
  color: var(--orange);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
}

.coach-card-body dd {
  margin: 0;
  color: var(--silver);
  line-height: 1.55;
}

.method-section {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.method-copy {
  position: sticky;
  top: 7rem;
}

.method-copy p {
  margin-top: 1.5rem;
}

.session-strip {
  display: grid;
  gap: 0.75rem;
}

.session-strip div {
  display: grid;
  grid-template-columns: 4.5rem minmax(12rem, 0.48fr) 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.session-strip div:last-child {
  border-bottom: 1px solid var(--line);
}

.session-strip span {
  color: var(--orange);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1.2rem;
}

.session-strip strong {
  color: #fff;
  font-size: 1.35rem;
}

.session-strip p {
  margin: 0;
  color: var(--silver);
  line-height: 1.55;
}

.booking-section {
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(18rem, 0.52fr) 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(224, 29, 24, 0.12), transparent 34rem),
    linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(12, 12, 12, 0.98));
}

.booking-copy {
  position: sticky;
  top: 7rem;
}

.booking-copy h2 {
  margin-top: 0.65rem;
}

.booking-copy p {
  margin: 1.35rem 0 1.75rem;
  max-width: 32rem;
  color: var(--silver);
  line-height: 1.7;
}

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

.booking-step {
  min-height: 17rem;
  padding: clamp(1.35rem, 3vw, 2.15rem);
  display: grid;
  align-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(230, 232, 232, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    repeating-linear-gradient(135deg, transparent 0 1rem, rgba(244, 123, 32, 0.035) 1.05rem 1.1rem);
  clip-path: polygon(0 0, 96% 0, 100% 12%, 100% 100%, 4% 100%, 0 88%);
}

.booking-step span {
  color: var(--orange);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 1rem;
}

.booking-step h3 {
  margin: 0;
  color: #fff;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.booking-step p {
  margin: 0;
  color: var(--silver);
  line-height: 1.6;
}

.search-section {
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(11, 11, 12, 0.98), rgba(7, 7, 7, 0.98)),
    repeating-linear-gradient(135deg, transparent 0 7rem, rgba(230, 232, 232, 0.035) 7.05rem 7.1rem);
}

.search-copy {
  position: sticky;
  top: 7rem;
}

.search-copy p {
  margin-top: 1.25rem;
  max-width: 32rem;
}

.search-grid {
  display: grid;
  gap: 1rem;
}

.search-card {
  padding: clamp(1.35rem, 3vw, 2.15rem);
  border: 1px solid rgba(230, 232, 232, 0.14);
  background:
    linear-gradient(110deg, rgba(224, 29, 24, 0.13), rgba(255, 255, 255, 0.02)),
    #111;
  clip-path: polygon(2% 0, 100% 0, 98% 100%, 0% 100%);
}

.search-card h3 {
  margin: 0.55rem 0 0.85rem;
  color: #fff;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  text-transform: uppercase;
}

.search-card p {
  margin: 0;
  color: var(--silver);
  line-height: 1.62;
}

.faq-section {
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.faq-heading {
  position: sticky;
  top: 7rem;
}

.faq-heading p {
  margin-top: 1rem;
  max-width: 28rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  padding: 1.25rem 0.25rem;
  color: #fff;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  text-transform: uppercase;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  margin-left: 1rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 2rem 1.35rem 0.25rem;
  color: var(--silver);
  line-height: 1.65;
}

.contact-section {
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  background:
    linear-gradient(108deg, rgba(12, 12, 12, 0.98) 0 54%, rgba(18, 18, 18, 0.88) 54%),
    repeating-linear-gradient(90deg, transparent 0 7rem, rgba(230, 232, 232, 0.04) 7.05rem 7.1rem);
  border-top: 2px solid rgba(224, 29, 24, 0.7);
  border-bottom: 1px solid var(--line);
}

.location-panel {
  align-self: stretch;
  padding-left: clamp(0rem, 3vw, 2rem);
}

.location-logo {
  width: min(15rem, 58vw);
  height: auto;
  margin-bottom: 1.6rem;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.34));
}

.location-panel p {
  margin-top: 1rem;
  max-width: 29rem;
}

.contact-lines {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0;
  color: #f2f2f2;
}

.contact-lines span {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.75rem;
  align-items: start;
}

.contact-lines span::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  background: var(--orange);
  transform: rotate(45deg);
}

.booking-form {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(7, 7, 7, 0.52);
  border: 1px solid rgba(230, 232, 232, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.booking-form p {
  margin-top: 0.5rem;
}

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

label {
  display: grid;
  gap: 0.45rem;
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(230, 232, 232, 0.2);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color 320ms var(--ease), background 320ms var(--ease);
}

select {
  color: #d7d7d7;
}

textarea {
  resize: vertical;
  margin-top: 0.9rem;
}

.form-honey {
  display: none;
}

.legal-ack {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 1rem;
  color: var(--silver);
  font-size: 0.82rem;
  line-height: 1.55;
  text-transform: none;
}

.legal-ack input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.18rem;
  accent-color: var(--red);
}

.legal-ack a {
  color: #fff;
  border-bottom: 1px solid rgba(244, 123, 32, 0.72);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
}

.booking-form .button {
  width: 100%;
  margin-top: 1rem;
}

.form-note {
  min-height: 1.4rem;
  font-size: 0.88rem;
  color: var(--orange) !important;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.2rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(7, 7, 7, 0.9), rgba(24, 24, 24, 0.92)),
    url("./assets/ig-goalie-red.jpg") center / cover;
}

.thanks-panel {
  width: min(680px, 100%);
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid rgba(230, 232, 232, 0.18);
  background: rgba(7, 7, 7, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.thanks-logo {
  display: block;
  width: min(13rem, 62vw);
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.38));
}

.thanks-panel h1 {
  margin: 0.25rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(3rem, 10vw, 6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.thanks-panel p {
  color: var(--silver);
  line-height: 1.7;
}

.thanks-panel .button {
  margin-top: 1.5rem;
}

.site-footer {
  position: relative;
  max-width: none;
  margin-inline: 0;
  padding:
    clamp(2.5rem, 5vw, 4.5rem)
    max(clamp(1.25rem, 5vw, 5rem), calc((100vw - 1320px) / 2 + 5rem));
  display: grid;
  grid-template-columns: minmax(18rem, 1.2fr) minmax(10rem, 0.45fr) minmax(16rem, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem);
  color: var(--muted);
  font-size: 0.9rem;
  background:
    linear-gradient(135deg, rgba(6, 6, 6, 0.98), rgba(15, 15, 15, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 7rem, rgba(230, 232, 232, 0.035) 7.05rem 7.1rem);
  border-top: 2px solid rgba(224, 29, 24, 0.72);
  overflow: hidden;
  isolation: isolate;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: max(1rem, calc((100vw - 1320px) / 2));
  top: 50%;
  width: min(25rem, 34vw);
  aspect-ratio: 2955 / 2838;
  background: url("./assets/defiance-logo.webp") center / contain no-repeat;
  opacity: 0.055;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.footer-main,
.footer-nav,
.footer-contact,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-logo-link {
  display: inline-flex;
  width: min(13.5rem, 70vw);
}

.footer-logo-link img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}

.footer-main p {
  max-width: 30rem;
  margin: 1rem 0 0;
  color: var(--silver);
  line-height: 1.7;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-nav a,
.footer-contact a {
  color: #fff;
  width: max-content;
  border-bottom: 1px solid rgba(244, 123, 32, 0.58);
}

.footer-nav a {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  text-transform: uppercase;
}

.footer-contact span {
  color: var(--silver);
  line-height: 1.45;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(230, 232, 232, 0.12);
  color: rgba(230, 232, 232, 0.68);
}

.legal-page {
  width: min(860px, calc(100% - 2rem));
  min-height: 100dvh;
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.legal-logo {
  display: block;
  width: min(12rem, 56vw);
  height: auto;
  margin: 1.5rem 0 1rem;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}

.legal-callout {
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(244, 123, 32, 0.38);
  background: rgba(244, 123, 32, 0.08);
  color: #fff !important;
}

.legal-list {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.15rem;
  color: var(--silver);
  line-height: 1.65;
}

.legal-page h1 {
  margin: 1.5rem 0 1rem;
  color: #fff;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.legal-page p {
  color: var(--silver);
  line-height: 1.7;
}

.reveal {
  opacity: 1;
  transform: none;
  animation: softUp 760ms var(--ease) both;
}

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

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

@keyframes softUp {
  from {
    opacity: 0.001;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92dvh;
  }

  .hero-logo-mark {
    right: -4rem;
    bottom: 4rem;
    width: min(42vw, 18rem);
    opacity: 0.13;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.86) 65%, rgba(7, 7, 7, 0.54) 100%),
      linear-gradient(115deg, rgba(224, 29, 24, 0.16), transparent 42%);
  }

  .section-heading,
  .about-section,
  .method-section,
  .booking-section,
  .coaches-section,
  .search-section,
  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-copy {
    position: static;
  }

  .method-copy {
    position: static;
  }

  .booking-copy {
    position: static;
  }

  .search-copy {
    position: static;
  }

  .faq-heading {
    position: static;
  }

  .coaches-heading {
    position: static;
  }

  .social-section {
    grid-template-columns: 1fr;
  }

  .social-copy {
    position: static;
  }

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

  .focus-item {
    border-bottom: 1px solid var(--line);
  }

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

  .program-card.large,
  .program-card.wide {
    grid-row: auto;
    grid-column: span 1;
    min-height: 33rem;
    grid-template-columns: 1fr;
    grid-template-rows: 12.5rem 1fr;
  }

  .session-strip div {
    grid-template-columns: 3.5rem 1fr;
  }

  .session-strip p {
    grid-column: 2;
  }

  .booking-lane {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0.8rem 1rem;
    gap: 1rem;
  }

  .nav-cta {
    padding-left: 0.85rem;
  }

  .ig-chip span {
    display: none;
  }

  .ig-chip {
    min-width: 2.9rem;
    justify-content: center;
    padding-inline: 0.75rem;
  }

  .brand-logo {
    width: 4.9rem;
  }

  .hero {
    padding: 6.25rem 1rem 3.5rem;
    align-items: end;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 16vw, 5.4rem);
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .programs-top {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .crease-map {
    display: none;
  }

  .focus-section,
  .about-section,
  .programs-section,
  .social-section,
  .coaches-section,
  .method-section,
  .booking-section,
  .search-section,
  .faq-section,
  .contact-section {
    padding-inline: 1rem;
  }

  .focus-rail,
  .about-grid,
  .program-grid,
  .feed-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .about-card,
  .booking-step,
  .search-card,
  .org-card {
    grid-column: auto;
    min-height: auto;
    clip-path: none;
  }

  .booking-lane {
    grid-template-columns: 1fr;
  }

  .org-card ul {
    grid-template-columns: 1fr;
  }

  .focus-item {
    min-height: auto;
    border-right: 0;
  }

  .program-card,
  .program-card.large,
  .program-card.wide {
    min-height: auto;
    clip-path: none;
  }

  .program-content {
    padding: 1.5rem;
  }

  .feed-card,
  .feed-card.tall {
    min-height: 22rem;
    grid-row: auto;
    clip-path: none;
  }

  .coach-card {
    grid-template-columns: 1fr;
    clip-path: none;
  }

  .coach-photo-slot {
    min-height: 13rem;
    border-right: 0;
    border-bottom: 1px solid rgba(224, 29, 24, 0.44);
  }

  .coach-card-body div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .contact-section {
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(18, 18, 18, 0.92));
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 1rem;
  }

  .site-footer::after {
    width: 72vw;
    right: -18vw;
    top: 24%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
