@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Manrope:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: dark;
  --bg: #07080b;
  --bg-2: #0d1116;
  --bg-3: #111720;
  --ink: #f7f4ee;
  --muted: #b5bec8;
  --line: rgba(255, 255, 255, 0.12);
  --surface: rgba(12, 16, 21, 0.72);
  --surface-strong: rgba(15, 19, 26, 0.9);
  --panel: rgba(17, 22, 28, 0.82);
  --accent: #ff6a2f;
  --accent-2: #43e0c2;
  --accent-dark: #b5421d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 12px 36px rgba(0, 0, 0, 0.22);
  --max: 1180px;
  --radius: 18px;
  --brand-logo: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at top left, rgba(255, 106, 47, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(67, 224, 194, 0.12), transparent 28%),
    linear-gradient(180deg, #07080b 0%, #090b0f 40%, #050608 100%);
  color: var(--ink);
  letter-spacing: 0;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.7;
}

body::before {
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 106, 47, 0.16);
}

body::after {
  bottom: 8%;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(67, 224, 194, 0.11);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 14px max(24px, calc((100% - var(--max)) / 2));
  background: rgba(6, 8, 10, 0.44);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 8, 10, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 176px;
}

.brand-mark {
  flex: 0 0 auto;
  width: 58px;
  height: 50px;
  background: var(--brand-logo) center / contain no-repeat;
}

.brand-photo {
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.38));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(246, 244, 239, 0.78);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  outline: 0;
}

.header-cta {
  justify-self: end;
  padding: 11px 16px;
  background: linear-gradient(135deg, var(--ink), rgba(255, 255, 255, 0.88));
  color: #101316;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.92rem;
  box-shadow: var(--shadow-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 150px max(24px, calc((100% - var(--max)) / 2)) 38px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media::after,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 106, 47, 0.2), transparent 28%),
    linear-gradient(180deg, #111720 0%, #080b10 100%);
}

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

.hero-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 400ms ease;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.92) 0%, rgba(5, 7, 9, 0.6) 44%, rgba(5, 7, 9, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 7, 9, 0.92) 0%, rgba(5, 7, 9, 0.24) 42%, rgba(5, 7, 9, 0.78) 100%);
}

.hero-content {
  max-width: 720px;
  padding-bottom: 96px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-logo {
  width: 220px;
  height: 176px;
  margin: 0 0 24px -12px;
  background: var(--brand-logo) center / contain no-repeat;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.52));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.media-copy h2,
.contact-copy h2 {
  margin: 0;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 {
  max-width: 700px;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(246, 244, 239, 0.82);
  font-size: 1.15rem;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 0.82rem;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), #ff8a56);
  color: white;
  box-shadow: 0 16px 34px rgba(255, 106, 47, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #ff7f49, #ff9b6d);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel {
  position: absolute;
  right: max(24px, calc((100% - var(--max)) / 2));
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(126px, 1fr));
  gap: 1px;
  width: min(560px, calc(100% - 48px));
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(140%);
}

.hero-panel div {
  padding: 17px 18px;
  background: rgba(11, 15, 20, 0.78);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: 1.12rem;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
}

.hero-panel span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section,
.section-band {
  padding: 104px max(24px, calc((100% - var(--max)) / 2));
}

.section-band {
  background:
    radial-gradient(circle at top right, rgba(67, 224, 194, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(9, 12, 16, 0.96), rgba(8, 10, 13, 0.98));
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 34px;
  padding-bottom: 34px;
  background: linear-gradient(90deg, #12161b, #111921);
}

.intro-item {
  min-height: 190px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.intro-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  color: #101316;
  background: linear-gradient(135deg, var(--accent), #ff9b6d);
  border-radius: 14px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 106, 47, 0.24);
}

.intro-item h2 {
  margin: 0 0 10px;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.intro-item p,
.section-heading p,
.program-card p,
.media-copy p,
.trainer-card p,
.contact-copy p,
.price-card li {
  color: var(--muted);
  line-height: 1.65;
}

.intro-item p {
  margin: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -26px;
}

.section-heading h2,
.media-copy h2,
.contact-copy h2 {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  letter-spacing: -0.04em;
}

.section-title-relaxed {
  line-height: 1.08;
}

.section-heading p {
  margin: 0;
  max-width: 600px;
}

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

.program-card,
.trainer-card,
.price-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.program-card:hover,
.trainer-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.program-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.program-card div,
.trainer-card div {
  padding: 24px 22px 26px;
}

.program-card h3,
.trainer-card h3,
.price-card h3 {
  margin: 0 0 10px;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.program-card p,
.trainer-card p {
  margin: 0;
}

.media-feature {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: center;
}

.media-copy p:not(.eyebrow) {
  margin: 20px 0 0;
}

.media-link {
  margin-top: 26px;
}

.video-frame {
  position: relative;
  min-height: 420px;
  background:
    radial-gradient(circle at top left, rgba(255, 106, 47, 0.12), transparent 24%),
    #101418;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-frame img,
.feature-video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.feature-video {
  position: absolute;
  inset: 0;
  background: #101418;
  opacity: 0;
  z-index: 1;
  transition: opacity 260ms ease;
}

.video-frame:hover .feature-video,
.video-frame:focus-within .feature-video,
.video-frame.is-playing .feature-video,
.feature-video.is-ready {
  opacity: 1;
}

.video-controls {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.video-frame.is-controls-visible .video-controls,
.video-frame:focus-within .video-controls {
  opacity: 1;
  transform: translateY(0);
}

.video-frame:fullscreen,
.video-frame:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  border: 0;
  border-radius: 0;
  background: #000;
}

.video-frame:fullscreen .feature-video,
.video-frame:-webkit-full-screen .feature-video {
  min-height: 100%;
  object-fit: contain;
}

.video-frame:fullscreen > img,
.video-frame:-webkit-full-screen > img {
  display: none;
}

.video-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto auto;
  grid-template-areas: "play seek time screen";
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(7, 9, 12, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.36);
}

@media (hover: none), (pointer: coarse) {
  .feature-video {
    opacity: 1;
  }

  .video-controls {
    transform: none;
  }
}

.video-control-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #101316;
  background: linear-gradient(135deg, var(--ink), rgba(255, 255, 255, 0.9));
  border: 0;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.video-control-button:hover {
  color: #050607;
  background: linear-gradient(135deg, var(--accent), #ff8a56);
  transform: translateY(-1px);
}

.video-control-button:focus-visible,
.video-seek:focus-visible {
  outline: 3px solid rgba(255, 191, 0, 0.42);
  outline-offset: 3px;
}

[data-video-toggle] {
  grid-area: play;
}

[data-video-screen-toggle] {
  grid-area: screen;
}

.video-control-button.is-playing {
  background: linear-gradient(135deg, var(--accent-2), #8df0df);
}

.video-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.video-icon-expand,
.video-icon-collapse {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-icon-pause,
.video-icon-collapse {
  display: none;
}

.video-control-button.is-playing .video-icon-play,
.video-control-button.is-fullscreen .video-icon-expand {
  display: none;
}

.video-control-button.is-playing .video-icon-pause,
.video-control-button.is-fullscreen .video-icon-collapse {
  display: block;
}

.video-seek {
  grid-area: seek;
  width: 100%;
  height: 6px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: linear-gradient(
    to right,
    var(--accent) 0%,
    var(--accent) var(--seek-progress, 0%),
    rgba(255, 255, 255, 0.28) var(--seek-progress, 0%),
    rgba(255, 255, 255, 0.28) 100%
  );
  border-radius: 999px;
  cursor: pointer;
}

.video-seek::-webkit-slider-thumb {
  width: 17px;
  height: 17px;
  appearance: none;
  -webkit-appearance: none;
  background: var(--ink);
  border: 3px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.video-seek::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: var(--ink);
  border: 3px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.video-time {
  grid-area: time;
  min-width: 88px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

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

.support-card {
  min-height: 240px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(67, 224, 194, 0.24);
  box-shadow: var(--shadow);
}

.support-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 38px;
  color: #101316;
  background: var(--accent-2);
  border-radius: 50%;
  font-weight: 900;
}

.support-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.trainer-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}


.gallery-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.gallery-carousel {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.gallery-carousel__viewport {
  overflow: hidden;
  border-radius: 20px;
}

.gallery-carousel__track {
  display: flex;
  gap: 16px;
  align-items: center;
  will-change: transform;
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-carousel__slide {
  flex: 0 0 min(76%, 920px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #151a20;
  opacity: 0.38;
  transform: scale(0.94);
  box-shadow: var(--shadow-soft);
  transition: opacity 460ms ease, transform 460ms ease, box-shadow 460ms ease;
}

.gallery-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: var(--shadow);
}

.gallery-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--ink);
  background: rgba(8, 10, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px) saturate(130%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.gallery-carousel__nav:hover,
.gallery-carousel__nav:focus-visible {
  outline: 0;
  transform: translateY(-50%) scale(1.04);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
}

.gallery-carousel__nav--prev {
  left: 8px;
}

.gallery-carousel__nav--next {
  right: 8px;
}

.pricing-section {
  background:
    radial-gradient(circle at top left, rgba(67, 224, 194, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 106, 47, 0.08), transparent 24%),
    var(--bg);
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.highlighted {
  background:
    linear-gradient(180deg, rgba(255, 106, 47, 0.16), rgba(255, 106, 47, 0.05)),
    var(--surface-strong);
  border-color: rgba(255, 106, 47, 0.36);
}

.badge {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 7px 10px;
  color: #101316;
  background: linear-gradient(135deg, var(--accent-2), #8df0df);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.price {
  margin: 18px 0;
  font-size: 2.55rem;
  font-weight: 900;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

.price-card ul {
  display: grid;
  gap: 10px;
  min-height: 128px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.price-card .button {
  width: 100%;
}

.pricing-section .price-card .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-section .price-card .button-secondary:hover,
.pricing-section .price-card .button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.11));
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 47, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(10, 13, 18, 0.98), rgba(7, 9, 12, 0.98));
}

.contact-copy p:not(.eyebrow) {
  margin: 20px 0 0;
}

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

.contact-details a,
.contact-details span {
  display: block;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  overflow-wrap: anywhere;
}

.contact-card {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(67, 224, 194, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 106, 47, 0.14), rgba(255, 106, 47, 0.04)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 106, 47, 0.26);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-card-label {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 8px 11px;
  color: #101316;
  background: var(--accent-2);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-card h3 {
  margin: 0;
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.contact-card p:not(.contact-card-label) {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.contact-actions .button-primary {
  padding-left: 24px;
  padding-right: 24px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px max(24px, calc((100% - var(--max)) / 2));
  color: rgba(246, 244, 239, 0.72);
  background: linear-gradient(180deg, rgba(7, 9, 11, 0.94), rgba(6, 7, 9, 1));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.site-footer a {
  color: rgba(247, 244, 238, 0.84);
  transition: color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-2);
  outline: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@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;
  }
}

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

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 24px;
    background: rgba(6, 8, 10, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 84svh;
    padding-top: 124px;
  }

  .hero h1 {
    font-size: clamp(3rem, 8vw, 4.5rem);
  }

  .hero-content {
    padding-bottom: 160px;
  }

  .hero-panel {
    left: 24px;
    right: 24px;
    width: auto;
  }

  .intro,
  .program-grid,
  .trainer-grid,
  .pricing-grid,
  .support-grid,
  .media-feature,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-nav {
    inset: 68px 0 auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-mark {
    width: 52px;
    height: 44px;
  }

  .hero {
    min-height: 88svh;
    padding: 108px 16px 24px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-logo {
    width: 170px;
    height: 136px;
    margin-left: -8px;
  }

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

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

  .hero-panel {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    padding: 12px 14px;
  }

  .section,
  .section-band {
    padding: 66px 16px;
  }

  .intro {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .section-heading h2,
  .media-copy h2,
  .contact-copy h2 {
    font-size: 2.1rem;
  }

  .video-frame,
  .video-frame img,
  .feature-video {
    min-height: 300px;
  }

  .video-controls {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "play seek screen"
      ". time .";
    gap: 8px;
    padding: 8px;
  }

  .video-control-button {
    width: 40px;
    height: 40px;
  }

  .video-time {
    font-size: 0.78rem;
  }

  .gallery-carousel__slide {
    flex-basis: 88%;
  }

  .gallery-carousel__nav {
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .gallery-carousel__nav--prev {
    left: 4px;
  }

  .gallery-carousel__nav--next {
    right: 4px;
  }

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

  .contact-card {
    padding: 24px;
  }

  .contact-details a,
  .contact-details span {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-footer {
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
  }
}
