:root {
  --bg: #0c0f12;
  --bg-soft: #11161c;
  --card: #151b22;
  --accent: #f5b942;
  --accent-2: #ff6f4f;
  --cta-gradient: linear-gradient(120deg, var(--accent), var(--accent-2));
  --text: #f3f5f7;
  --muted: #b8c0cc;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  --radius: 20px;
}

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

body {
  font-family: "Space Grotesk", "IBM Plex Sans", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #151a20 0%, #0b0f13 55%, #07090b 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

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

.grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='120' height='120' filter='url(%23n)' opacity='0.08'/></svg>");
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 40px clamp(20px, 6vw, 100px) 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 60px;
}

.nav.nav-center {
  justify-content: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.hero-brand {
  justify-content: center;
  gap: 18px;
  margin: -20px 0 40px;
}

.hero-brand img {
  width: 160px;
  height: 160px;
  border-radius: 24px;
}

.hero-brand h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.hero-intro {
  text-align: center;
  margin-bottom: 40px;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 70vw;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .gradient-link {
  padding-bottom: 0;
  position: static;
}

.nav-links .gradient-link::after {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 12px;
}

h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

h1 span {
  color: var(--accent);
}

h3 {
  font-size: 1.15rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.7vw, 1.7rem);
  font-weight: 600;
  color: var(--accent);
  margin-top: 10px;
}

.hero-tagline {
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  color: var(--muted);
  margin: 8px 0 18px;
}

.hero-title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

button {
  cursor: pointer;
}

.btn.primary {
  background: var(--cta-gradient);
  color: #111;
  box-shadow: 0 15px 40px rgba(255, 128, 82, 0.4);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--muted);
}

.gradient-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cta-gradient);
  color: #111;
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid transparent;
  box-shadow: 0 12px 30px rgba(255, 128, 82, 0.25);
}

.gradient-link:hover {
  transform: translateY(-1px);
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.hero-badges div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.hero-links {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hero-links li {
  color: var(--muted);
}

.hero-links a {
  color: var(--muted);
}

.list-plain {
  list-style: none;
  padding: 0;
  margin: 0;
}

.media-card h3 {
  margin-bottom: 12px;
  font-family: "Unbounded", sans-serif;
}

.media-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.badge-title {
  display: block;
  font-weight: 600;
}

.badge-sub {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.media-card {
  background: var(--card);
  padding: 12px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  height: 100%;
  display: grid;
  align-content: start;
}


.section {
  position: relative;
  z-index: 1;
  padding: 80px clamp(20px, 6vw, 100px);
}

.section.contact {
  display: block;
}

.section.contact .section-head {
  margin-bottom: 24px;
}

.section-head {
  margin-bottom: 40px;
}

.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: end;
}

.section-head h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-card {
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.when-where-card {
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.why-card h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.why-card p {
  color: var(--muted);
}

.for-you {
  background: linear-gradient(120deg, rgba(245, 185, 66, 0.08), rgba(255, 111, 79, 0.05));
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.list-grid ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.list-grid li {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}

.list-item {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}

.schedule-card {
  background: var(--card);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.schedule-card .btn {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin: 24px 0 32px;
}

.schedule-grid h4 {
  margin-bottom: 8px;
}

.schedule-grid p {
  color: var(--muted);
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: stretch;
}

.coach-media img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.coach-copy p {
  margin-bottom: 16px;
  color: var(--muted);
}

.quote {
  font-style: italic;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.price-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--card);
  height: 100%;
}

.price-card.highlight {
  background: linear-gradient(160deg, rgba(245, 185, 66, 0.2), rgba(255, 111, 79, 0.12));
}

.price-card h3 {
  margin-bottom: 12px;
}

.price-card .price {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.price-card .price-sub {
  color: var(--muted);
  margin-top: -12px;
  margin-bottom: 18px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.gallery {
  padding-top: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  height: 240px;
  object-fit: cover;
}

.cta {
  background: radial-gradient(circle at top, rgba(245, 185, 66, 0.2), transparent 60%);
  display: grid;
  gap: 24px;
}

.cta-card {
  background: var(--card);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 28px;
}

.cta-copy {
  display: grid;
  gap: 8px;
}

.cta-card .btn {
  margin: 0 auto;
}

.contact {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-item {
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.coach-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--card);
  height: 100%;
}

.coach-card.highlight {
  background: linear-gradient(160deg, rgba(245, 185, 66, 0.16), rgba(255, 111, 79, 0.08));
}

.coach-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  margin-top: 12px;
}

.text-columns {
  display: grid;
  gap: 18px;
  color: var(--muted);
}

.calligraphy {
  padding-top: 10px;
  padding-bottom: 10px;
}

.calligraphy-wrap {
  display: grid;
  place-items: center;
}

.calligraphy-wrap img {
  max-width: min(840px, 90%);
  border-radius: 20px;
}

.two-cols {
  align-items: stretch;
}

.list-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
}

.list-card h3 {
  margin-bottom: 14px;
}

.list-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
}

.systems-media img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.systems-copy ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
}

.list-quote {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin: 18px 0;
}

.list-quote ul {
  margin: 0;
}

.list-quote .quote {
  margin: 0;
}

.text-quote {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin: 18px 0;
}

.text-quote .quote {
  margin: 0;
}

.subtext {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-left: 5%;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.training-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--card);
  height: 100%;
}

.training-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
  margin-top: 12px;
}

.muted {
  color: var(--muted);
}

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

.contact-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 8px;
}

.contact-card a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-link {
  border-color: var(--line);
}

.contact-link strong {
  color: var(--accent);
}

.text-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.cert-grid figure {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.cert-grid figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.photo-grid img {
  height: 240px;
  object-fit: cover;
}

.footer {
  padding: 32px clamp(20px, 6vw, 100px) 60px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  align-items: center;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .media-card.offset {
    transform: none;
  }

  .hero {
    padding-bottom: 60px;
  }

  .list-quote {
    grid-template-columns: 1fr;
  }

  .text-quote {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .schedule-card,
  .cta-card {
    padding: 28px;
  }

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.hero-media,
.section {
  animation: fadeUp 0.8s ease both;
}

.section:nth-of-type(2) {
  animation-delay: 0.05s;
}

.section:nth-of-type(3) {
  animation-delay: 0.1s;
}

.section:nth-of-type(4) {
  animation-delay: 0.15s;
}

.section-text {
  margin-top: 24px;
  margin-bottom: 24px;
}

table td {
  vertical-align: top;
}

td.description {
  width: 110px;
  vertical-align: top;
}

.top-pad {
  margin-top: 16px;
}