:root {
  --ink: #08090a;
  --steel: #17191d;
  --muted: #9aa0a8;
  --paper: #0d0f12;
  --white: #f5f2ec;
  --red: #d1322e;
  --red-dark: #941f1c;
  --amber: #ffbc25;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius: 8px;
  --display: "Arial Black", "Arial Bold", "Segoe UI", Arial, Helvetica, sans-serif;
  --hero-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Franklin Gothic Heavy", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 54px);
  background: rgba(8, 9, 10, 0.96);
  color: #fff;
  border-bottom: 1px solid rgba(209, 50, 46, 0.42);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 250px;
}

.brand-logo {
  width: clamp(118px, 10vw, 150px);
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 0 12px rgba(209, 50, 46, 0.34));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--display);
  font-size: 0.95rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small,
.site-nav {
  color: rgba(255, 255, 255, 0.72);
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  color: rgba(255, 255, 255, 0.86);
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: #fff;
}

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

.site-nav a.active {
  color: #fff;
}

.site-nav a.active::after {
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.04em;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(209, 50, 46, 0.26);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #111;
  padding: clamp(72px, 10vw, 120px) clamp(18px, 5vw, 76px);
}

.hero-video,
.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video,
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  z-index: 0;
  background: #090a0c;
  opacity: 0;
  transition: opacity 900ms ease;
}

.hero-video.is-active {
  opacity: 1;
}

.hero-poster {
  z-index: 0;
}

.hero.has-video .hero-poster {
  opacity: 0;
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 0.7px, transparent 0.8px) 0 0 / 4px 4px,
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.68) 39%, rgba(209, 50, 46, 0.16) 72%, rgba(0, 0, 0, 0.3)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.68) 40%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.05));
  mix-blend-mode: normal;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--hero-display);
  font-size: clamp(3.2rem, 6.9vw, 8.2rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.12rem, 1.9vw, 1.38rem);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  font: inherit;
  font-family: var(--display);
  font-weight: 950;
  letter-spacing: 0.04em;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

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

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.bar-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  background:
    linear-gradient(90deg, rgba(209, 50, 46, 0.95), rgba(148, 31, 28, 0.95)),
    #111316;
  color: #fff;
}

.bar-strip article {
  min-height: 168px;
  padding: clamp(24px, 3.2vw, 42px);
  background:
    linear-gradient(135deg, rgba(209, 50, 46, 0.34), rgba(209, 50, 46, 0.04) 46%),
    #15181c;
  border-top: 4px solid var(--red);
}

.bar-strip strong,
.bar-strip span,
.bar-strip small {
  display: block;
}

.bar-strip small {
  margin-bottom: 16px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bar-strip strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: 0.01em;
  line-height: 1.02;
  text-transform: uppercase;
}

.bar-strip span {
  max-width: 520px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  font-weight: 650;
}

.power-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(209, 50, 46, 0.22), transparent 44%),
    linear-gradient(180deg, #070809, #111316);
  border-top: 4px solid var(--red);
  border-bottom: 1px solid rgba(209, 50, 46, 0.28);
}

.power-band-copy h2 {
  max-width: 820px;
}

.power-band-copy p:not(.section-kicker) {
  max-width: 620px;
  color: #c5cbd2;
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  font-weight: 650;
}

.power-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 38px);
  align-self: center;
}

.power-list article {
  position: relative;
  padding-top: 20px;
  background: transparent;
  border: 0;
}

.power-list article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 4px;
  background: var(--red);
  content: "";
}

.power-list h3 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1;
  text-transform: uppercase;
}

.power-list p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  font-weight: 650;
}

.about-modern {
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 80px);
  background:
    linear-gradient(180deg, #08090a, #101215 58%, #08090a),
    #0c0d0f;
}

.about-modern-intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto clamp(42px, 7vw, 86px);
}

.about-modern-intro h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--hero-display);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.about-modern-intro p:not(.section-kicker),
.about-modern-grid p {
  color: #c7ccd2;
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  font-weight: 650;
}

.about-modern-intro img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.about-modern-intro img {
  height: clamp(340px, 40vw, 560px);
}

.about-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 78px);
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}

.about-modern-grid article {
  padding-top: 22px;
  border-top: 4px solid var(--red);
}

.about-modern-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-modern-grid h2 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 3vw, 3.55rem);
  line-height: 0.96;
  text-wrap: balance;
}

.split-hero,
.pricing-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: center;
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 80px);
  background:
    linear-gradient(135deg, rgba(209, 50, 46, 0.16), transparent 46%),
    #0b0d10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.split-hero h1,
.pricing-intro h1 {
  margin: 0;
  font-family: var(--hero-display);
  font-size: clamp(4rem, 8vw, 9.4rem);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.split-hero p:not(.section-kicker),
.pricing-intro p:not(.section-kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  font-weight: 650;
}

.split-hero img,
.pricing-intro img {
  width: 100%;
  height: clamp(340px, 44vw, 620px);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.membership-hero {
  grid-template-columns: minmax(320px, 0.78fr) minmax(360px, 0.92fr);
  min-height: 620px;
  background:
    radial-gradient(circle at 20% 20%, rgba(209, 50, 46, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(9, 10, 12, 0.92)),
    #090a0c;
}

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

.membership-copy .button {
  margin-top: 22px;
}

.membership-photo {
  position: relative;
  margin: 0;
  border-left: 5px solid var(--red);
  background: #15181c;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.membership-photo img {
  display: block;
  height: clamp(420px, 44vw, 640px);
  border: 0;
  filter: grayscale(1) contrast(1.08);
}

.membership-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  padding: 14px 16px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.35;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.membership-section {
  padding-top: clamp(46px, 6vw, 86px);
}

.membership-heading {
  max-width: 980px;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.membership-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 6.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.membership-heading p:not(.section-kicker) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 750;
}

.events-hero img {
  filter: grayscale(1) contrast(1.1);
}

.events-page {
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(209, 50, 46, 0.18), transparent 44%),
    #090a0c;
}

.events-shell {
  padding-left: clamp(18px, 5vw, 80px);
  padding-right: clamp(18px, 5vw, 80px);
}

.events-intro {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding-right: clamp(120px, 16vw, 210px);
}

.events-intro h1 {
  margin: 0;
  font-family: var(--hero-display);
  font-size: clamp(3.4rem, 6.5vw, 7.6rem);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.events-intro p:not(.section-kicker) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  font-weight: 650;
}

.uspa-mark {
  position: absolute;
  top: 50%;
  right: 0;
  width: clamp(92px, 12vw, 150px);
  height: auto;
  object-fit: contain;
  transform: translateY(-50%);
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.28));
}

.events-board {
  padding-top: clamp(18px, 4vw, 42px);
  padding-bottom: clamp(46px, 7vw, 88px);
  background: #090a0c;
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.58fr);
  gap: clamp(22px, 4vw, 52px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #15181c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--red);
}

.event-list {
  display: grid;
  gap: 18px;
  max-width: 1220px;
  margin: 18px auto 0;
}

.event-details {
  min-width: 0;
}

.event-details h2 {
  margin-top: 0;
  margin-bottom: 16px;
  max-width: 680px;
  font-size: clamp(3rem, 5vw, 5.6rem);
}

.event-summary {
  max-width: 760px;
  color: #c7ccd2;
  font-size: 1.08rem;
  font-weight: 650;
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.event-meta div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-meta dt {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-meta dd {
  margin: 6px 0 0;
  color: #fff;
  font-weight: 850;
}

.event-flyer {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: clamp(24px, 4vw, 42px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(209, 50, 46, 0.2), rgba(0, 0, 0, 0.18)),
    #0b0d10;
  border: 2px dashed rgba(255, 255, 255, 0.28);
}

.event-flyer img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #050607;
}

.event-flyer-placeholder {
  display: grid;
  place-items: center;
  gap: 12px;
}

.event-flyer span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-flyer strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.event-flyer p {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.event-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 16px auto 0;
}

.event-notes article {
  padding: 22px;
  background: #15181c;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-notes span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-notes p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 650;
}

.admin-page {
  min-height: calc(100svh - 76px);
  padding: clamp(34px, 5vw, 64px) clamp(18px, 4vw, 54px);
  color: #f4f4f4;
  background:
    linear-gradient(135deg, rgba(209, 50, 46, 0.12), transparent 38%),
    #0b0d10;
}

.admin-heading,
.admin-layout {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.admin-heading h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.admin-heading p:not(.section-kicker) {
  color: #c7ccd2;
  font-weight: 650;
}

.admin-message {
  padding: 12px 14px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 18px;
  margin-top: 24px;
}

.admin-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
  padding: 20px;
  background: #15181c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--red);
}

.admin-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 900;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  color: #fff;
  font: inherit;
  background: #090a0c;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.admin-form input[type="file"] {
  padding: 10px;
}

.admin-events {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px;
  background: #111316;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-events h2 {
  margin-bottom: 6px;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
}

.admin-event-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: #15181c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--red);
}

.admin-event-row strong,
.admin-event-row span {
  display: block;
}

.admin-event-row span {
  color: rgba(255, 255, 255, 0.68);
}

.admin-event-row button {
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  font-weight: 900;
  background: var(--red-dark);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.pricing-intro {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
}

.contact-redesign {
  min-height: calc(100svh - 74px);
  align-items: center;
  background:
    radial-gradient(circle at 9% 10%, rgba(209, 50, 46, 0.25), transparent 30%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.82), rgba(9, 10, 12, 0.94) 48%, #090a0c),
    #090a0c;
}

.contact-panel {
  max-width: 760px;
}

.contact-panel h1 {
  max-width: 7ch;
  font-size: clamp(4.2rem, 8vw, 9rem);
}

.contact-inline-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 620px;
  object-fit: contain;
  object-position: center;
  background: #090a0c;
  filter: contrast(1.06);
  border-right: 4px solid var(--red);
  border-bottom: 0;
}

.intro,
.section,
.visit,
.story-section {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 80px);
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(430px, 55svh, 620px);
  display: grid;
  align-content: center;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 5vw, 80px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.24)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.04)),
    url("assets/fitness-hero.png") center / cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero h1,
.visit-copy h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--hero-display);
  font-size: clamp(4rem, 8.5vw, 9.8rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero p:not(.section-kicker),
.visit-copy p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.12rem, 1.9vw, 1.38rem);
  font-weight: 650;
}

.intro,
.story-grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(26px, 6vw, 86px);
  align-items: start;
}

.story-section {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), #090a0c 88%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 7px),
    #111316;
}

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

.story-grid {
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 1fr);
  align-items: stretch;
}

.story-grid img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  filter: grayscale(1) contrast(1.16);
}

.story-copy {
  padding: clamp(24px, 4vw, 44px);
  background: #15181c;
  border-left: 5px solid var(--red);
}

.story-copy h3,
.trainer-panel h3,
.rate-card h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.story-copy p,
.trainer-panel p,
.rate-card p,
.rate-card li {
  color: #c7ccd2;
  font-size: 1rem;
}

.trainer-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1180px;
  margin: 18px auto 0;
}

.trainer-panel > div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
}

.dark-panel {
  background:
    linear-gradient(135deg, rgba(209, 50, 46, 0.16), transparent 42%),
    #0b0c0e;
}

h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro p,
.section-heading p,
.split p,
.schedule-section p,
.visit-copy p,
.proof p {
  color: #b9bec5;
  font-size: 1.06rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.about-grid article {
  min-height: 210px;
  padding: 22px;
  background: #15181c;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-grid span,
.schedule-grid span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.about-grid strong,
.schedule-grid strong {
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.about-grid p {
  margin-bottom: 0;
  color: #aeb4bd;
}

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

.dark .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.schedule-section {
  background: #111316;
}

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

.schedule-grid article {
  min-height: 260px;
  padding: 24px;
  color: #fff;
  background: #20252a;
  border-radius: var(--radius);
}

.schedule-grid article:nth-child(even) {
  background: var(--red-dark);
}

.schedule-grid p {
  color: rgba(255, 255, 255, 0.7);
}

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

.rates-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.rate-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3.4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 40%),
    #15181c;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.rate-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--red);
}

.rate-card.featured {
  background:
    linear-gradient(135deg, rgba(209, 50, 46, 0.26), rgba(209, 50, 46, 0.06)),
    #15181c;
  border-color: rgba(209, 50, 46, 0.55);
}

.rate-card.training {
  grid-column: 1 / -1;
}

.rate-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.rate-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rate-card li strong {
  color: #fff;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.rate-card li span {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.74);
  text-align: right;
  font-weight: 700;
}

.pricing-grid article,
.training-list article,
.equipment-grid article {
  padding: 24px;
  background: #16191d;
  color: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.pricing-grid article {
  min-height: 220px;
}

.pricing-grid .featured {
  background: var(--red);
  color: #fff;
  border-color: transparent;
}

.pricing-grid span,
.equipment-grid span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-grid strong {
  display: block;
  margin: 12px 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 950;
  line-height: 0.9;
}

.pricing-grid p,
.equipment-grid p,
.training-list span {
  color: #aeb4bd;
}

.featured p,
.featured span {
  color: rgba(255, 255, 255, 0.78);
}

.split,
.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(26px, 6vw, 86px);
}

.training-list {
  display: grid;
  gap: 12px;
}

.training-list article {
  display: grid;
  gap: 6px;
}

.equipment {
  background: #0d0f12;
}

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

.equipment-grid article {
  min-height: 250px;
}

.equipment-grid h3 {
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: 1.38rem;
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
}

.proof {
  background: #1c2024;
  color: #fff;
}

blockquote {
  margin: 0;
  padding: 28px;
  background: var(--red);
  border-radius: var(--radius);
}

blockquote p {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.05;
}

cite {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-weight: 900;
}

.visit {
  align-items: start;
}

.contact-redesign.visit {
  grid-template-columns: minmax(320px, 0.62fr) minmax(620px, 1fr);
}

.contact-actions {
  margin-top: 28px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
}

.contact-details div {
  min-height: 112px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent),
    #15181c;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
}

.contact-details dt {
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
  line-height: 1.35;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: #15181c;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a {
  color: var(--red);
  font-weight: 950;
}

.big-phone,
.big-email {
  display: block;
  color: var(--red);
  font-weight: 950;
}

.big-phone {
  margin-top: 26px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  font-weight: 950;
  line-height: 0.95;
}

.big-email {
  margin-top: 12px;
  overflow-wrap: anywhere;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.form-heading {
  grid-column: 1 / -1;
}

.form-heading h2 {
  margin: 0 0 2px;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #e8e8e8;
  font-size: 0.88rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  color: var(--white);
  font: inherit;
  background: #090a0c;
  border: 1px solid var(--line);
  border-radius: 0;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(209, 50, 46, 0.8);
  outline-offset: 0;
  border-color: rgba(209, 50, 46, 0.8);
}

.lead-form textarea {
  resize: vertical;
}

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

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--red);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 18px;
  padding: 34px clamp(18px, 5vw, 80px);
  color: #fff;
  background: #0f1113;
}

.site-footer strong,
.site-footer span,
.site-footer small,
.site-footer a {
  display: block;
}

.site-footer strong {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer small {
  margin-bottom: 8px;
  color: var(--amber);
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
  font-weight: 950;
}

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

  .site-nav,
  .header-call {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-header.nav-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 10px;
  }

  .site-header.nav-open .site-nav a {
    min-height: 46px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-header.nav-open .site-nav a::after {
    bottom: 0;
  }

  .hero {
    min-height: 760px;
  }

  .intro,
  .about-modern-intro,
  .about-modern-grid,
  .events-intro,
  .split-hero,
  .pricing-intro,
  .event-feature,
  .power-band,
  .story-grid,
  .split,
  .visit,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-inline-photo {
    height: auto;
    min-height: 0;
    max-height: none;
    border-right: 0;
    border-bottom: 4px solid var(--red);
  }

  .bar-strip,
    .pricing-grid,
    .rates-layout,
    .equipment-grid,
    .about-grid,
    .schedule-grid,
    .trainer-panel,
    .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .brand span:last-child {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 122px;
  }

  .site-header {
    min-height: 68px;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3.3rem, 15vw, 5.6rem);
    line-height: 0.86;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

    .bar-strip,
    .power-band,
    .power-list,
    .event-meta,
    .event-notes,
    .admin-form,
    .pricing-grid,
    .rates-layout,
    .equipment-grid,
    .about-grid,
    .schedule-grid,
    .trainer-panel,
    .site-footer,
    .contact-details,
    .lead-form {
    grid-template-columns: 1fr;
  }

  .bar-strip article {
    min-height: auto;
  }

  .events-intro {
    padding-right: 0;
  }

  .uspa-mark {
    position: static;
    width: 112px;
    margin-top: 22px;
    transform: none;
  }

}
