/* ============ AREA PAGE STYLES ============ */
:root {
  --gold: #C9982E;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --text: #333;
  --dark: #2d2d2d;
}

/* ============ AREA HEADER SECTION ============ */
.area-header-section {
  background: #f5f5f5;
  padding: 60px 0 50px;
}

.area-header-section .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.area-page-title {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 12px;
}

.area-page-subtitle {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: #555;
  margin-bottom: 28px;
}

.area-header-section p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 880px;
  margin-bottom: 18px;
}

.area-header-section p:last-child {
  margin-bottom: 0;
}

/* ============ COMMUNITY CHARACTER SECTION ============ */
.area-community-section {
  background: #f5f5f5;
  padding: 50px 0 60px;
}

.area-community-section .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.area-community-section h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.25;
}

.area-community-section p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 880px;
  margin-bottom: 18px;
}

.area-bullet-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  max-width: 880px;
}

.area-bullet-list li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.area-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============ GOLD CTA BANNER ============ */
.area-cta-banner {
  background: var(--gold);
  padding: 45px 0;
}

.area-cta-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.area-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  flex: 1;
}

.btn-cta-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.btn-cta-outline:hover {
  background: #fff;
  color: var(--gold);
}

/* ============ COMMUNITY VALUES SECTION ============ */
.area-values-section {
  background: #fff;
  padding: 60px 0;
}

.area-values-section .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.area-values-section p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 880px;
  margin-bottom: 18px;
}

.area-values-section p:last-child {
  margin-bottom: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .area-page-title {
    font-size: 36px;
  }

  .area-community-section h2 {
    font-size: 26px;
  }

  .area-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .area-cta-inner h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .area-page-title {
    font-size: 30px;
  }

  .area-header-section {
    padding: 40px 0 35px;
  }

  .area-community-section {
    padding: 35px 0 45px;
  }

  .area-community-section h2 {
    font-size: 24px;
  }

  .area-cta-inner h2 {
    font-size: 22px;
  }

  .area-values-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .area-page-title {
    font-size: 26px;
  }

  .area-page-subtitle {
    font-size: 17px;
  }

  .btn-cta-outline {
    padding: 12px 28px;
    font-size: 14px;
  }
}
