/* ─── PAGE BANNER ────────────────────────────────── */
.page-banner {
  height: 420px;
  background: url('/images/lib/beach-sunrise-1600w.webp') center 55%/cover no-repeat;
}

.page-banner::after {
  background: linear-gradient(to right,
    rgba(10,24,16,0.82) 0%,
    rgba(10,24,16,0.58) 40%,
    rgba(10,24,16,0.20) 70%,
    rgba(10,24,16,0.02) 100%
  );
}

/* ─── INTRO ──────────────────────────────────────── */
.tribes-intro {
  background: var(--linen);
  padding: 64px 80px 56px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.tribes-intro-inner { max-width: 760px; margin: 0 auto; }

.intro-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ─── TRIBE QUICK NAV ────────────────────────────── */
.tribe-nav {
  background: var(--green-deep);
  padding: 18px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.tribe-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 8px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s;
  white-space: nowrap;
}

.tribe-nav a:last-child { border-right: none; }
.tribe-nav a:hover { color: var(--gold); }

/* ─── TRIBE SECTIONS ─────────────────────────────── */
.tribe-section {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 560px;
}

.tribe-section.reverse { grid-template-columns: 42% 58%; }

.tribe-photo { position: relative; overflow: hidden; }

.tribe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.tribe-section:hover .tribe-photo img { transform: scale(1.04); }

.tribe-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,24,16,0.12) 0%, rgba(10,24,16,0.0) 60%);
}

.tribe-section.reverse .tribe-photo-overlay {
  background: linear-gradient(to left, rgba(10,24,16,0.12) 0%, rgba(10,24,16,0.0) 60%);
}

.tribe-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tribe-section:nth-child(odd) .tribe-content { background: var(--linen); }
.tribe-section:nth-child(even) .tribe-content { background: var(--cream); }

.tribe-label {
  font-family: 'Lato', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.tribe-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }

.tribe-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 20px;
}

.tribe-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}

.tribe-list { list-style: none; margin: 20px 0 28px; }

.tribe-list li {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.6;
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  position: relative;
}

.tribe-list li:last-child { border-bottom: none; }

.tribe-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.tribe-cta {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 13px 28px;
  text-decoration: none;
  transition: background 0.2s;
  align-self: flex-start;
}

.tribe-cta:hover { background: var(--gold-light); }

/* ─── CLOSING CTA ────────────────────────────────── */
.tribes-cta-section {
  background: var(--green-deep);
  padding: 72px 80px;
  text-align: center;
}

.tribes-cta-section .section-eyebrow { color: var(--gold-pale); }
.tribes-cta-section .section-title { color: #fff; max-width: 600px; margin: 0 auto 28px; }

.tribes-cta-script {
  font-family: 'Dancing Script', cursive;
  font-size: 30px;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin: 16px 0 32px;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .tribe-section, .tribe-section.reverse { grid-template-columns: 1fr; min-height: 0; }
  .tribe-section.reverse .tribe-photo { order: -1; }
  .tribe-photo { height: 320px; }
  .tribe-content { padding: 44px 40px; }
}

@media (max-width: 1100px) {
  .tribe-nav { display: none; }
}

@media (max-width: 900px) {
  .tribes-intro { padding: 48px 24px 40px; }
  .tribe-content { padding: 36px 24px; }
  .tribes-cta-section { padding: 56px 24px; }
}
