/* ════════════════════════════════════════════════════════════
   COMPONENTS — page hero, eyebrow, buttons, tags, cta strip
   ════════════════════════════════════════════════════════════ */

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  position: relative;
  margin-top: 88px; /* clear the fixed navbar */
  height: 52vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 50px 64px;
}
.ph-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a12 0%, #120a08 40%, #0a0e0a 100%);
}
.ph-bg.with-img {
  background-size: cover;
  background-position: center top;
}
.ph-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='0.8' fill='rgba(200,169,110,0.15)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.5;
}
.ph-bg.with-img::after { opacity: 0; }

.ph-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ph-vig {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(7, 7, 7, 0.55) 0%, transparent 38%, rgba(7, 7, 7, 0.92) 100%),
    linear-gradient(to right, rgba(7, 7, 7, 0.85) 0%, rgba(7, 7, 7, 0.25) 55%, transparent 80%);
}

.ph-content {
  position: relative;
  z-index: 3;
  max-width: 580px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}
.eyebrow .dash {
  width: 26px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow span:last-child {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.ph-content h1 {
  font-family: var(--font-playfair-display), serif;
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.ph-content h1 em {
  font-style: italic;
  color: var(--gold);
}
.ph-content p {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--text-mute);
  max-width: 400px;
  text-wrap: pretty;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--gold);
  border-radius: 100px;
  font-family: var(--font-plus-jakarta-sans), sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #070707;
  text-decoration: none;
  border: none;
  cursor: none;
  transition: box-shadow 0.35s, transform 0.25s;
}
.btn-gold:hover {
  box-shadow: 0 0 52px var(--gold-dim);
  transform: translateY(-2px);
}
.btn-gold svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-plus-jakarta-sans), sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
  background: var(--gold-glow);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-dim);
  transition: gap 0.3s, border-color 0.3s;
}
.link-arrow:hover {
  gap: 16px;
  border-color: var(--gold);
}
.link-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── TAGS ── */
.tag {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--glass);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  cursor: default;
  display: inline-block;
}
.tag.tag-int {
  cursor: none;
}
.tag:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
  background: var(--gold-glow);
}
.tag.act {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

/* ── CTA STRIP ── */
.cta-strip {
  padding: 110px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "RUMPAKA";
  position: absolute;
  font-family: var(--font-playfair-display), serif;
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.03em;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-playfair-display), serif;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 20px;
  text-wrap: balance;
}
.cta-inner h2 em {
  font-style: italic;
  color: var(--gold);
}
.cta-inner p {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--text-mute);
  margin-bottom: 36px;
  text-wrap: pretty;
}

/* ── STATS ── */
.stats {
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 68px 50px;
}
.stats-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--font-playfair-display), serif;
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .page-hero { padding: 0 32px 52px; }
  .stats { padding: 52px 32px; }
  .cta-strip { padding: 88px 32px; }
}
@media (max-width: 768px) {
  .page-hero {
    margin-top: 70px;
    padding: 0 20px 44px;
    height: 46vh;
    min-height: 300px;
  }
  .stats { padding: 44px 20px; }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .cta-strip { padding: 72px 20px; }
}
