:root {
  --green-primary: #9dca00;
  --green-mid: #9ec436;
  --green-dark: #71b230;
  --dark: #3a3a3a;
  --light-grey: #eaeaea;
  --white: #ffffff;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-bottom: 6px solid var(--green-primary);
  z-index: 100;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 24px;
  min-height: 130px;
}

.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.logo img { height: 110px; width: auto; }

.nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-list a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s;
}

.nav-list a:hover { color: var(--green-primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35)), url('images/gym-3.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 130px 24px 110px;
}

.hero .eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: 56px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: 4px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
}

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

.btn-light {
  background: var(--white);
  color: var(--green-dark);
  margin-top: 12px;
}

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

/* About */
.about { padding: 90px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.about-content h2 {
  font-size: 30px;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  font-size: 16px;
}

/* Section titles */
.section-title {
  text-align: center;
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: #666;
  max-width: 560px;
  margin: 0 auto 50px;
}

/* Features */
.features {
  background: var(--light-grey);
  padding: 90px 0;
}

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

.feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}

.feature-card:hover { transform: translateY(-6px); }

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card p {
  color: #666;
  font-size: 15px;
}

/* Join */
.join {
  background: var(--dark);
  color: var(--white);
  padding: 90px 0;
  text-align: center;
}

.join h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--green-primary);
}

.pricing-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.pricing-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 16px;
}

.pricing-list strong { color: var(--green-mid); }

.join-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 640px;
  margin: 0 auto;
}

.join-cta p {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 15px;
}

/* Waitlist notice on Join section */
.waitlist-notice {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

.waitlist-notice h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}

.waitlist-notice p {
  max-width: 520px;
  margin: 0 auto 20px;
  color: #ddd;
  font-size: 15px;
}

/* Waiting list page */
.waitlist-page {
  padding: 90px 0;
  background: var(--light-grey);
  min-height: 60vh;
}

.waitlist-form-wrap {
  max-width: 560px;
}

.waitlist-form-wrap h1 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--dark);
}

.waitlist-form-wrap > p {
  color: #555;
  margin-bottom: 32px;
}

.waitlist-form {
  background: var(--white);
  padding: 36px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.waitlist-form label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: -10px;
}

.waitlist-form input[type="text"],
.waitlist-form input[type="tel"],
.waitlist-form input[type="email"] {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--green-primary);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: #444;
}

.checkbox-label input { margin-top: 3px; }

.waitlist-form .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* Posts */
.posts { padding: 90px 0; }

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

.post-card img {
  border-radius: 8px;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* Footer */
.site-footer {
  background: var(--light-grey);
  padding: 40px 0;
  text-align: center;
}

.footer-logo img {
  height: 42px;
  width: auto;
  margin: 0 auto 16px;
}

.site-footer p {
  color: #555;
  font-size: 14px;
  margin-bottom: 6px;
}

.copyright { opacity: 0.7; }

/* Responsive */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .join-buttons { grid-template-columns: 1fr; gap: 24px; }
  .hero h1 { font-size: 40px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    display: none;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  }
  .nav-list.open { display: flex; }
  .nav-list li { border-top: 1px solid var(--light-grey); }
  .nav-list a { display: block; padding: 16px 24px; }
}
