:root {
  --orange: #e96f00;
  --ink: #303030;
  --paper: #fff;
  --soft: #f4f4f2;
  --content: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(var(--content), calc(100% - 2rem)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; scroll-margin-top: 8rem; }
.section-title {
  margin: 0 0 3rem;
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
}
.section-title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  margin: 1rem auto 0;
  background: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 3px solid var(--orange);
  background: rgba(255, 255, 255, .97);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 86px;
}
.brand { flex: 0 0 auto; }
.brand img { width: clamp(180px, 22vw, 270px); }
.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(.75rem, 2vw, 1.5rem);
  margin-left: auto;
  white-space: nowrap;
}
.main-nav a {
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.main-nav a:hover,
.main-nav a:focus-visible { color: var(--orange); }
.social-links { display: flex; gap: .4rem; }
.social-links a {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
}
.social-links a:hover,
.social-links a:focus-visible { background: var(--orange); }
.social-links svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-links a:first-child svg,
.social-links .icon-dot { fill: currentColor; stroke: none; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 89px;
}
.hero img { width: 100%; height: auto; }
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  text-decoration: none;
  transform: translateX(-50%);
}

.about { background: var(--soft); text-align: center; }
.about-copy { max-width: 930px; margin: auto; font-size: 1.08rem; font-style: italic; }
.about-copy p { margin: 0 0 1.25rem; }
.motto { font-weight: 700; font-style: normal; }

#section-128 .container { width: min(1400px, calc(100% - 2rem)); }
.powr-social-feed { width: 100%; min-height: 400px; }

.coaches { color: #1f1f1f; background: var(--orange); }
.coach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.coach-card {
  padding: 1.5rem;
  border-radius: .35rem;
  background: rgba(255, 255, 255, .18);
  text-align: center;
}
.coach-card img {
  width: 165px;
  aspect-ratio: 1;
  margin: auto;
  border: 3px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}
.coach-card h3 { margin: 1rem 0 .35rem; font-size: 1.35rem; }
.coach-card blockquote { margin: 0; font-size: .92rem; }
.coach-card cite { display: block; margin-top: .5rem; font-size: .82rem; }

.training-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.training-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid #ddd;
  border-radius: .35rem;
  background: #fff;
  text-align: center;
}
.training-card img { width: 125px; margin: auto; border-radius: 50%; }
.training-card h3 { font-size: 1.35rem; }
.training-card table { width: 100%; border-collapse: collapse; text-align: left; }
.training-card th,
.training-card td { padding: .55rem; border-bottom: 1px solid #ddd; }
.training-note { margin: 1.25rem 0 0; color: var(--orange); font-weight: 700; }

.events { background: var(--soft); }
.event-card { width: min(560px, 100%); margin: auto; text-align: center; }
.event-card img { width: 100%; }
.event-card figcaption { margin-top: .75rem; font-size: 1.35rem; font-weight: 700; }

.contact {
  color: #fff;
  background: linear-gradient(rgba(20, 20, 20, .62), rgba(20, 20, 20, .62)),
    url("/assets/images/contact-map.jpg") center / cover no-repeat;
  text-align: center;
}
.contact-address { font-size: clamp(1.05rem, 2vw, 1.3rem); font-style: normal; font-weight: 700; }
.contact-address a { text-underline-offset: .2em; }
.map iframe { display: block; width: 100%; height: min(500px, 72vh); border: 0; }

.site-footer { padding: 1.5rem 1rem; color: #fff; background: #222; text-align: center; }
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: #fff;
  background: var(--orange);
  font-size: 1.4rem;
  text-decoration: none;
}

@media (max-width: 900px) {
  .header-inner { position: relative; gap: .75rem; padding-block: .75rem; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    display: none;
    width: 100%;
    padding: .5rem;
    border-bottom: 3px solid var(--orange);
    background: var(--paper);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .12);
  }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: .5rem .75rem; text-align: right; }
  .social-links { margin-left: auto; }
  .menu-toggle {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    padding: .5rem;
    border: 0;
    place-content: center;
    gap: .22rem;
    color: #fff;
    background: var(--orange);
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 1.2rem; height: 2px; background: currentColor; }
  .hero { scroll-margin-top: 130px; }
  .section { scroll-margin-top: 130px; }
}

@media (max-width: 640px) {
  .header-inner { gap: .5rem; }
  .brand img { width: min(150px, 40vw); }
  .social-links { gap: .25rem; }
  .social-links a { width: 2rem; height: 2rem; }
  .training-grid { grid-template-columns: 1fr; }
  .section-title { margin-bottom: 2rem; }
  .coach-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .coach-card { padding: 1rem .6rem; }
  .coach-card img { width: 120px; }
}

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