:root {
  color-scheme: light;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111827;
  background: #fffaf3;
  --brand: #ff6b35;
  --brand-2: #0f766e;
  --accent: #fbbf24;
  --surface: #fffdf8;
  --ink: #111827;
  --muted: #5b6472;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 107, 53, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 24%),
    linear-gradient(135deg, #fff8ef 0%, #fdfdf6 100%);
  color: var(--ink);
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 190px;
  height: 190px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}

body::before {
  top: 7rem;
  left: -2.5rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff8d9 0%, #fef3c7 18%, #f59e0b 35%, #f97316 60%, #a16207 100%);
  box-shadow:
    inset -18px -18px 28px rgba(255, 255, 255, 0.4),
    inset 14px 14px 24px rgba(146, 64, 14, 0.2),
    0 20px 40px rgba(15, 23, 42, 0.14);
  transform: rotate(-18deg);
}

body::before::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.3);
}

body::after {
  bottom: 3.5rem;
  right: -1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #ffffff 0%, #fef3c7 18%, #fbbf24 35%, #f59e0b 65%, #b45309 100%);
  box-shadow:
    inset -16px -16px 26px rgba(255, 255, 255, 0.42),
    inset 12px 12px 22px rgba(120, 53, 15, 0.22),
    0 20px 40px rgba(15, 23, 42, 0.12);
  transform: rotate(18deg);
}

body::after::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.28);
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.warning-banner {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1f2937;
  padding: 1rem 0;
  border-bottom: 3px solid #d97706;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
  position: relative;
  z-index: 21;
}

.warning-banner p {
  margin: 0;
  font-weight: 500;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--ink);
  font-size: 1.25rem;
}

.brand-logo {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.85rem;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #0f172a;
}

.nav-toggle {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 0.18rem;
  border-radius: 999px;
  background: #0f172a;
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 3rem 0 1rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.16) 0%, rgba(251, 191, 36, 0.12) 42%, rgba(255, 255, 255, 0.98) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.8;
}

.hero::before {
  width: 240px;
  height: 240px;
  right: -80px;
  top: -40px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero::after {
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.14) 0%, rgba(15, 118, 110, 0) 70%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.hero p {
  margin: 1.5rem 0 0;
  max-width: 55ch;
  color: #475569;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: #2563eb;
  color: white;
}

.button-secondary {
  background: rgba(37, 99, 235, 0.08);
  color: #1e293b;
}

.hero-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #fff8ef 100%);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: 0 40px 120px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.15);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/pickleball-ball.svg');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 120px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-card h2 {
  margin-top: 0;
}

.hero-card ul {
  padding-left: 1.2rem;
  margin: 1rem 0 0;
  color: #475569;
}

.hero-card li {
  margin-bottom: 0.8rem;
}

.section {
  padding: 6rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.05) 0%, rgba(15, 118, 110, 0.04) 100%);
}

.section-label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
}

.section h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #0f172a;
}

.section p {
  color: #475569;
  max-width: 68ch;
}

.section-grid {
  display: grid;
  gap: 2rem;
}

.feature-list {
  display: grid;
  gap: 1.25rem;
}

.feature-list article,
.membership-card,
.training-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #fffaf2 100%);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(255, 107, 53, 0.12);
  overflow: hidden;
}

.feature-list article::after,
.membership-card::after,
.training-card::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 80px;
  height: 80px;
  background-image: url('assets/pickleball-racket.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.feature-list h3,
.membership-card h3 {
  margin-top: 0;
}

.training-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-badges span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 0.95rem;
  font-weight: 600;
  color: var(--brand-2);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.icon-pill {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.18), rgba(15, 118, 110, 0.16));
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.hero-image-card {
  margin-top: 1.25rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.hero-image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.contact-form {
  background: var(--surface);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 107, 53, 0.16);
  color: var(--brand-2);
}

.flyer-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.flyer-card {
  background: linear-gradient(145deg, #fffdf8 0%, #fff3e6 100%);
  border-radius: 28px;
  padding: 1rem;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.12);
}

.flyer-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.training-grid article {
  background: white;
  border-radius: 24px;
  padding: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.training-grid h3 {
  margin-top: 0;
}

.benefits-list {
  list-style: disc inside;
  margin: 1.5rem 0;
  padding-left: 0;
  color: #475569;
}

.benefits-list li {
  margin-bottom: 0.75rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  color: #475569;
}

.contact-info li {
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.08);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: #0f172a;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  background: #f8fafc;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-feedback {
  color: #16a34a;
  margin-top: 0.5rem;
}

.site-footer {
  padding: 2rem 0;
  background: #0f172a;
  color: #e2e8f0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid,
  .section-grid,
  .training-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.96);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.5rem;
    gap: 1rem;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.2s ease;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  }

  .site-nav.open {
    transform: scaleY(1);
  }

  .hero {
    padding-top: 5rem;
  }
}
