/* Club page: warm, elegant theme */
.club-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #2c1e12 0%, #4a3426 50%, #2c1e12 100%);
  color: #f5f0e6;
  padding: 140px 20px 80px;
  overflow: hidden;
}

.club-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.15), transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(245, 240, 230, 0.08), transparent 45%);
  pointer-events: none;
}

.club-hero__container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.club-hero__label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 20px;
}

.club-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
}

.club-hero__subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(245, 240, 230, 0.85);
  margin-bottom: 40px;
}

.club-hero__cta {
  background-color: #d4af37;
  color: #1a120b;
}

.club-hero__cta:hover {
  background-color: #f5d76e;
  color: #1a120b;
}

/* Sections */
.club-section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .club-section {
    padding: 110px 0;
  }
}

.club-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 28px;
  text-align: center;
  color: inherit;
}

.club-section__title--left {
  text-align: left;
}

.club-text {
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 18px;
  line-height: 1.7;
}

/* Intro */
.club-intro {
  background-color: #f8f5ef;
  color: #1a120b;
}

.club-intro__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.club-intro__lead {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 500;
  color: #1a120b;
  margin-bottom: 28px;
  line-height: 1.5;
}

.club-intro__text {
  color: rgba(26, 18, 11, 0.78);
  margin-bottom: 18px;
  line-height: 1.7;
}

/* For everyone */
.club-for-everyone {
  background-color: #ffffff;
  color: #1a120b;
}

.club-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .club-split {
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
  }
}

.club-media-card {
  background: linear-gradient(135deg, #4a3426, #2c1e12);
  color: #f5f0e6;
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(44, 30, 18, 0.18);
}

.club-media-card__icon {
  display: block;
  font-size: 3rem;
  margin-bottom: 16px;
}

.club-media-card__text {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(245, 240, 230, 0.9);
}

.club-feature-photo {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44, 30, 18, 0.18);
  aspect-ratio: 4 / 5;
  background-color: rgba(0, 0, 0, 0.05);
}

.club-feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.club-feature-photo:hover img {
  transform: scale(1.04);
}

/* What awaits */
.club-what-awaits {
  background-color: #efeae0;
  color: #1a120b;
}

.club-features {
  display: grid;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.club-features__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 600px) {
  .club-features__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.club-features__item {
  position: relative;
  padding-left: 28px;
  color: rgba(26, 18, 11, 0.85);
  line-height: 1.5;
}

.club-features__item::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #8b6914;
  font-weight: 700;
}

.club-features__text {
  font-size: 1.05rem;
  color: rgba(26, 18, 11, 0.8);
  line-height: 1.7;
  text-align: center;
}

@media (min-width: 768px) {
  .club-features__text {
    text-align: left;
  }
}

/* Community */
.club-community {
  background-color: #3d2817;
  color: #f5f0e6;
}

.club-community__box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.club-community__text {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(245, 240, 230, 0.85);
  line-height: 1.7;
}

/* Details */
.club-details {
  background-color: #f8f5ef;
  color: #1a120b;
}

.club-details__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .club-details__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.club-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(44, 30, 18, 0.08);
  text-align: center;
}

.club-card--wide {
  grid-column: 1 / -1;
}

.club-card__icon {
  display: block;
  font-size: 2.25rem;
  margin-bottom: 14px;
}

.club-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #3d2817;
}

.club-card__highlight {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a120b;
  margin-bottom: 6px;
}

.club-card__value {
  font-size: 1.25rem;
  color: #8b6914;
  font-weight: 500;
  margin-bottom: 12px;
}

.club-card__note {
  font-size: 0.95rem;
  color: rgba(26, 18, 11, 0.65);
}

.club-pricing__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 16px;
}

.club-pricing__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(44, 30, 18, 0.1);
}

.club-pricing__name {
  text-align: left;
  color: rgba(26, 18, 11, 0.85);
}

.club-pricing__price {
  font-weight: 600;
  color: #1a120b;
  white-space: nowrap;
}

/* FAQ */
.club-faq {
  background-color: #ffffff;
  color: #1a120b;
}

.club-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.club-faq__item {
  background-color: #f8f5ef;
  border-radius: 16px;
  overflow: hidden;
}

.club-faq__question {
  padding: 22px 28px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.club-faq__question::-webkit-details-marker {
  display: none;
}

.club-faq__question::after {
  content: '+';
  font-size: 1.5rem;
  color: #8b6914;
  flex-shrink: 0;
}

.club-faq__item[open] .club-faq__question::after {
  content: '−';
}

.club-faq__answer {
  padding: 0 28px 24px;
  color: rgba(26, 18, 11, 0.78);
  line-height: 1.7;
}

/* Contact */
.club-contact {
  background: linear-gradient(135deg, #4a3426, #2c1e12);
  color: #f5f0e6;
}

.club-contact__box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.club-contact__text {
  font-size: 1.15rem;
  color: rgba(245, 240, 230, 0.85);
  margin-bottom: 32px;
}

.club-contact__channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

@media (min-width: 600px) {
  .club-contact__channels {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}

.club-contact__channel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: inherit;
}

.club-contact__channel:hover {
  color: #f5d76e;
}

.club-contact__label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.65);
}

.club-contact__value {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Closing */
.club-closing {
  background-color: #f8f5ef;
  color: #1a120b;
}

.club-closing__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.club-closing__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 18px;
  line-height: 1.25;
}

.club-closing__text {
  font-size: 1.15rem;
  color: rgba(26, 18, 11, 0.8);
  margin-bottom: 16px;
  line-height: 1.6;
}

.club-closing__tagline {
  font-size: 1.25rem;
  font-weight: 600;
  color: #8b6914;
}

/* Gallery */
.club-gallery {
  margin-top: 56px;
}

.club-gallery__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: inherit;
}

.club-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 600px) {
  .club-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .club-gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.club-gallery__grid--small {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {
  .club-gallery__grid--small {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .club-gallery__grid--small {
    grid-template-columns: repeat(5, 1fr);
  }
}

.club-gallery__link {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
}

.club-gallery__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.club-gallery__link:hover img {
  transform: scale(1.05);
}

/* Ensure header/footer look consistent on light club page */
.club-hero + .site-header,
body:has(.club-hero) .site-header {
  background: rgba(26, 18, 11, 0.85);
}
