/* -----------------------------------------------------------
   GLOBAL THEME — Malibu Private Management Aesthetic
----------------------------------------------------------- */

:root {
  --bg: #050509;
  --bg-alt: #0c0c13;
  --card: #11111a;
  --accent: #f5c144;
  --accent-soft: rgba(245, 193, 68, 0.12);
  --text: #f7f7fb;
  --muted: #a5a5b8;
  --border: #232333;
  --radius-xl: 18px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.6);
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #121222, #050509 55%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-title {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.section-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 26px;
}

/* -----------------------------------------------------------
   NAVIGATION
----------------------------------------------------------- */

header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 9, 0.75);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffe8a3, #c28622);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #050509;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.brand-text-main {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.brand-text-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  border-color: var(--accent);
}

.nav-cta {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 193, 68, 0.4);
  background: radial-gradient(circle at top left, #3b3113, #181316);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fdf5d8;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* -----------------------------------------------------------
   HERO SECTION (Home)
----------------------------------------------------------- */

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 64px;
  display: grid;
  grid-template-columns: 3fr 2.5fr;
  gap: 36px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(245, 193, 68, 0.35);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f7e1a8;
  margin-bottom: 14px;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(245, 193, 68, 0.9);
}

.hero-title {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 10px;
}

.hero-title span {
  color: var(--accent);
}

.hero-sub {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-tag {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5c144, #d69123);
  color: #17120c;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(245, 193, 68, 0.45);
}

.btn-outline {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-outline strong {
  color: var(--text);
}

.hero-meta {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* -----------------------------------------------------------
   HERO RIGHT CARD
----------------------------------------------------------- */

.hero-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, #1b1624, #07060b);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.hero-card-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 0%, rgba(245, 193, 68, 0.2), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.9);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.metric-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
}

.metric-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.14), transparent);
  margin: 16px 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-small {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(5,5,9,0.85);
  color: var(--muted);
}

/* -----------------------------------------------------------
   HOLDINGS PAGE
----------------------------------------------------------- */

.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

.grid-holdings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.holding-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.holding-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
}

.chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--accent-soft);
  border: 1px solid rgba(245, 193, 68, 0.4);
  color: var(--accent);
  margin-bottom: 12px;
}

.holding-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* -----------------------------------------------------------
   CONTACT PAGE
----------------------------------------------------------- */

.contact-box {
  max-width: 480px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 26px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.contact-box h3 {
  margin-top: 0;
}

.contact-email {
  display: inline-block;
  margin: 10px 0;
  color: var(--accent);
  font-size: 14px;
}

.fine-print {
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 14px;
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */

footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 18px 20px;
  font-size: 11px;
  color: var(--muted);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */

@media (max-width: 840px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
}
