:root {
  --black: #111111;
  --red: #e6231e;
  --white: #ffffff;
  --gray-bg: #f2efe9;
  --gray-text: #555555;
  --brick-mortar: #e4e0d8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- HEADER ---------- */
.header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.logo {
  font-family: 'Anton', sans-serif;
  color: var(--white);
  line-height: 1;
  font-size: 14px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.logo__line1, .logo__line2 { display: block; }
.logo__club { color: var(--red); }

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav__link {
  color: #cfcfcf;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav__link:hover,
.nav__link.active { color: var(--red); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  background: transparent;
  border: 1px solid #444;
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--white);
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, opacity 0.15s;
}
.btn:hover { transform: translateY(-1px); opacity: 0.92; }

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

.btn--lg { padding: 14px 32px; font-size: 14px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: #eeece5;
  overflow: hidden;
}

.hero__visual {
  width: 100%;
  line-height: 0;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
}

.highlight { color: var(--red); }

.scroll-cue {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--white);
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- BENEFITS STRIP ---------- */
.benefits {
  background: var(--black);
  padding: 36px 0;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit {
  color: var(--white);
  text-align: left;
  padding-left: 44px;
  position: relative;
}
.benefit__icon {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 22px;
}
.benefit h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}
.benefit p {
  font-size: 12.5px;
  color: #b9b9b9;
  line-height: 1.4;
}

/* ---------- REAL PEOPLE ---------- */
.real-people {
  padding: 64px 0;
  text-align: center;
}
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}
.real-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.real-card {
  border: 1px solid #e8e6e0;
  border-radius: 14px;
  padding: 28px 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.real-card__icon {
  font-size: 26px;
  display: block;
  margin-bottom: 14px;
}
.real-card p {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

/* ---------- WAITLIST ---------- */
.waitlist {
  background: var(--gray-bg);
  text-align: center;
  padding: 72px 0;
}
.waitlist__inner { max-width: 560px; margin: 0 auto; }

.waitlist__title {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.waitlist__desc {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 28px;
}

.waitlist__form {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.waitlist__input {
  flex: 1;
  max-width: 300px;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid #d8d5cc;
  font-family: inherit;
  font-size: 14px;
  background: var(--white);
}
.waitlist__input:focus {
  outline: none;
  border-color: var(--red);
}

.waitlist__message {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  min-height: 18px;
}
.waitlist__message--ok { color: #1a7a3c; }
.waitlist__message--error { color: var(--red); }

@media (max-width: 560px) {
  .waitlist__form { flex-direction: column; align-items: stretch; }
  .waitlist__input { max-width: none; }
}

/* ---------- QUOTE ---------- */
.quote {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 48px 0;
}
.quote__text {
  font-size: 18px;
  font-weight: 600;
  max-width: 640px;
  margin: 0 auto 10px;
  font-style: italic;
}
.quote__author {
  font-size: 13px;
  color: #999;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
  }
  .nav--open { display: flex; }
  .burger { display: flex; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .real-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .header__inner { height: 64px; }
  .real-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black);
  color: #999;
  padding: 24px 0;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
}
.site-footer__inner a {
  color: #ccc;
  text-decoration: underline;
}
.site-footer__inner a:hover { color: var(--white); }
