:root {
  --colors-brand-50: #fffef0;
  --colors-brand-100: #fff9bf;
  --colors-brand-700: #1f1f1f;
  --colors-brand-800: #000000;
  --colors-brand-900: #000000;
  --colors-yellow-accent: #f4e600;
  --colors-bg: #ffffff;
  --colors-text: #0e0e0e;
  --colors-muted: #2e2e2e;
  --colors-border: #dadada;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.75rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-14: 6rem;
  --shadow-lg: 0 24px 40px -8px rgba(0, 0, 0, 0.24);
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: radial-gradient(circle at 95% -5%, #6f6f6f 0%, #f3f3f3 33%, #ffffff 64%);
  color: var(--colors-text);
  font-family: var(--font-sans);
  line-height: 1.54;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header,
main {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: max(0px, env(safe-area-inset-top));
  z-index: 12;
  margin-top: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-4) var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: 0 18px 35px rgba(15, 15, 15, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.brand {
  color: var(--colors-brand-800);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.brand img {
  display: block;
  height: 52px;
  width: auto;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.top-nav a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

main {
  margin-block: var(--space-8) calc(var(--space-14) + 1.5rem);
}

section {
  margin-top: var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 24px 45px rgba(10, 10, 10, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--space-8);
  padding: clamp(2.4rem, 5vw, 5rem);
  background: linear-gradient(132deg, rgba(255, 255, 255, 0.74) 0%, rgba(220, 220, 220, 0.5) 100%);
  min-height: 0;
  align-items: stretch;
}

.hero > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 var(--space-3);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #000;
  font-size: 0.81rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-family: var(--font-display);
  font-weight: 700;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(2.2rem, 7vw, 4.9rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.55rem, 4vw, 2.6rem);
}

h3 {
  font-size: 1.35rem;
}

p,
li,
blockquote {
  margin: 0;
  color: var(--colors-muted);
  overflow-wrap: anywhere;
}

.hero-copy p:not(.eyebrow) {
  margin-top: var(--space-4);
  max-width: 58ch;
}

.hero-actions {
  margin-top: var(--space-8);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  min-height: 44px;
  padding: 0.72rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  max-width: 100%;
  text-align: center;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-nav {
  background: var(--colors-yellow-accent);
  color: #000;
  border-color: #d8cb00;
}

.btn-primary {
  background: var(--colors-yellow-accent);
  color: #000;
  border-color: #d8cb00;
}

.btn-outline {
  border-color: #000;
  color: #000;
  background: rgba(255, 255, 255, 0.78);
}

.btn-large {
  padding-inline: 1.6rem;
}

.hero-panel {
  border: 0;
  border-radius: 0;
  overflow: hidden;
  min-height: 0;
  height: clamp(420px, 62vh, 620px);
  background: transparent;
  box-shadow: none;
  position: relative;
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  display: block;
  mix-blend-mode: multiply;
  filter: grayscale(100%) contrast(1.06);
  -webkit-mask-image: radial-gradient(115% 115% at 50% 45%, #000 62%, transparent 100%);
  mask-image: radial-gradient(115% 115% at 50% 45%, #000 62%, transparent 100%);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  border: none;
  background: transparent;
}

.highlights article {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  padding: var(--space-10);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  backdrop-filter: blur(16px) saturate(130%);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.highlights article:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.sport-icon {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: var(--space-3);
}

.highlights h2 {
  font-size: 1.65rem;
  color: #000;
}

.highlights p {
  margin-top: var(--space-2);
}

.highlight-photo {
  display: block;
  width: 100%;
  margin-top: var(--space-4);
  border-radius: 12px;
  border: 1px solid #cfcfcf;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  filter: grayscale(100%);
  transition: filter 220ms ease;
}

.highlights article:hover .highlight-photo,
.highlight-photo:hover {
  filter: grayscale(0%);
}

.programs,
.asics,
.testimonials,
.contact {
  padding: clamp(2.3rem, 4.8vw, 4.2rem);
}

.programs {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-8);
  align-items: start;
}

.programs > * {
  min-width: 0;
}

.program-media img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--colors-border);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.programs h2,
.asics h2,
.contact h2 {
  color: var(--colors-brand-900);
}

.programs p,
.asics p {
  margin-top: var(--space-6);
  max-width: 70ch;
  line-height: 1.78;
}

.program-grid {
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.program-card {
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 14px;
  padding: var(--space-4);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 253, 232, 0.7) 100%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
}

.program-card p {
  margin-top: var(--space-2);
}

.asics {
  background: linear-gradient(175deg, #0a0a0a 0%, #1a1a1a 100%);
}

.asics .eyebrow,
.asics h2,
.asics p,
.asics li {
  color: #fff;
}

.asics ul {
  margin: var(--space-4) 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: var(--space-2);
}

.logo-row {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: var(--space-4);
}

.logo-row img {
  max-height: 70px;
  width: auto;
}

.testimonials {
  background: var(--colors-yellow-accent);
  border-color: #d8cb00;
}

.testimonials .eyebrow {
  color: #000;
}

.quote-grid {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.quote-grid blockquote {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: var(--space-8);
  font-size: 1.02rem;
  line-height: 1.78;
}

.contact {
  text-align: center;
  border: none;
  background: rgba(255, 255, 255, 0.5);
}

.social-hub {
  padding: clamp(2.3rem, 4.8vw, 4.2rem);
}

.social-intro {
  margin-top: var(--space-4);
  max-width: 70ch;
  line-height: 1.7;
}

.social-grid {
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.social-card {
  border-radius: 16px;
  padding: var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.social-card h3 {
  font-size: 2rem;
}

.social-card p {
  margin-top: var(--space-3);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.social-card.facebook {
  background: linear-gradient(160deg, rgba(245, 248, 255, 0.9) 0%, rgba(232, 239, 255, 0.76) 100%);
}

.social-card.instagram {
  background: linear-gradient(160deg, rgba(255, 247, 242, 0.92) 0%, rgba(255, 237, 228, 0.78) 100%);
}

.contact p {
  margin: var(--space-6) auto var(--space-10);
  max-width: 60ch;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.site-footer {
  text-align: center;
  padding: var(--space-10);
}

.footer-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(220px, 60vw);
  margin: 0 auto var(--space-3);
  object-fit: contain;
}

.site-footer p {
  color: #606675;
  font-size: 0.92rem;
}

@media (min-width: 961px) {
  .hero {
    height: clamp(600px, calc(100dvh - 170px), 820px);
    padding: clamp(1.8rem, 3vw, 2.8rem);
    align-items: stretch;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 5vw, 4.8rem);
    max-width: 12.8ch;
    line-height: 1.02;
  }

  .hero-copy p:not(.eyebrow) {
    margin-top: var(--space-2);
  }

  .hero-actions {
    margin-top: var(--space-3);
  }

  .hero-panel {
    height: 100%;
    min-height: 0;
  }

  .hero-photo {
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center bottom;
  }
}

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

section {
  animation: fadeUpIn 420ms ease both;
}

@media (max-width: 960px) {
  .hero,
  .programs,
  .program-grid,
  .quote-grid,
  .highlights,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: var(--space-3);
    padding: 0.7rem 0.9rem;
    border-radius: 18px;
  }

  .brand img {
    height: 44px;
  }

  .btn-nav {
    padding: 0.62rem 0.9rem;
    min-height: 40px;
    font-size: 0.9rem;
  }

  .top-nav {
    display: none;
  }

  .hero {
    padding: clamp(1.6rem, 4.5vw, 2.4rem);
    gap: var(--space-6);
  }

  .hero-panel,
  .hero-photo {
    height: auto;
    min-height: 460px;
  }

  .highlights article {
    padding: var(--space-8);
  }

  .programs,
  .asics,
  .testimonials,
  .contact,
  .social-hub {
    padding: clamp(1.5rem, 4.5vw, 2.4rem);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.45rem, 7.5vw, 2rem);
  }

  .site-header,
  main {
    width: min(1120px, 94vw);
  }

  .hero-panel,
  .hero-photo {
    height: auto;
    min-height: 380px;
  }

  .quote-grid blockquote {
    padding: var(--space-4);
    font-size: 0.98rem;
  }

  .highlight-photo {
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0.55rem 0.7rem;
  }

  .brand img {
    height: 38px;
  }

  .btn-nav {
    font-size: 0.82rem;
    min-height: 36px;
    padding: 0.5rem 0.72rem;
  }

  .hero-panel,
  .hero-photo {
    height: auto;
    min-height: 320px;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-copy p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .highlights article,
  .program-card,
  .quote-grid blockquote {
    padding: var(--space-6);
  }

  .contact-actions {
    flex-direction: column;
  }

  .footer-logo {
    height: 38px;
    width: auto;
    max-width: min(180px, 70vw);
  }
}

@media (max-width: 360px) {
  .site-header,
  main {
    width: min(1120px, 96vw);
  }

  .site-header {
    padding: 0.45rem 0.55rem;
  }

  .brand img {
    height: 34px;
  }

  .btn-nav {
    display: none;
  }

  h1 {
    font-size: clamp(1.7rem, 11vw, 2.2rem);
  }

  h2 {
    font-size: clamp(1.25rem, 8.2vw, 1.6rem);
  }

  .hero {
    padding: 1.15rem;
  }

  .hero-panel,
  .hero-photo {
    min-height: 280px;
  }

  .quote-grid blockquote {
    font-size: 0.94rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
