/* Orion Private Wealth Consulting — brand stylesheet */

:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --ivory: #f2ecd9;
  --gold: #c9a24b;
  --gold-soft: rgba(201, 162, 75, 0.35);
  --line: rgba(242, 236, 217, 0.12);
  --max-w: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ivory);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Subtle starfield texture on dark sections */
body {
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(242,236,217,0.35), transparent),
    radial-gradient(1px 1px at 70% 65%, rgba(242,236,217,0.25), transparent),
    radial-gradient(1px 1px at 45% 80%, rgba(201,162,75,0.3), transparent),
    radial-gradient(1px 1px at 85% 15%, rgba(242,236,217,0.2), transparent),
    radial-gradient(1px 1px at 10% 90%, rgba(201,162,75,0.25), transparent),
    radial-gradient(1px 1px at 60% 10%, rgba(242,236,217,0.25), transparent);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

h1, h2, h3, .wordmark {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ivory);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.15rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

p { margin: 0 0 1.2em; color: rgba(242,236,217,0.85); }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--ivory); }

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8em;
  display: block;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav .logo img {
  height: 40px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ivory);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ivory);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  cursor: pointer;
}

@media (max-width: 780px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 16px 28px; }
  .nav-toggle { display: block; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}

.btn:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn-solid {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.btn-solid:hover {
  background: transparent;
  color: var(--gold);
}

/* Hero */
.hero {
  padding: 120px 0 90px;
  text-align: center;
}

.hero .subtitle {
  max-width: 640px;
  margin: 0 auto 2.2em;
  font-size: 1.05rem;
  color: rgba(242,236,217,0.8);
}

.constellation {
  margin: 0 auto 2em;
  display: block;
}

/* Sections */
section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 3em; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
}

.card {
  border: 1px solid var(--line);
  padding: 36px 30px;
  background: rgba(255,255,255,0.015);
  transition: border-color 0.25s;
}

.card:hover { border-color: var(--gold-soft); }

.card .icon-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px 2px var(--gold-soft);
  margin-bottom: 18px;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 1.2em 0;
}

.list-clean li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: rgba(242,236,217,0.85);
  border-top: 1px solid var(--line);
}

.list-clean li:first-child { border-top: none; }

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2em;
}

.photo-placeholder {
  border: 1px dashed var(--line);
  background: linear-gradient(135deg, rgba(201,162,75,0.06), rgba(242,236,217,0.02));
  aspect-ratio: 4 / 5;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(242,236,217,0.4);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 20px;
}

.founder-photo {
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  max-width: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.logo-placeholder {
  border: 1px dashed var(--line);
  background: rgba(242,236,217,0.02);
  height: 90px;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,236,217,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 auto;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .values-grid { grid-template-columns: 1fr; } }

.value-item { text-align: center; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; padding: 10px; }
.step .num {
  width: 46px; height: 46px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; color: var(--gold); font-family: "Montserrat", sans-serif; font-weight: 700;
}

/* Markets */
.market-block { padding: 60px 0; border-bottom: 1px solid var(--line); }
.market-block:last-child { border-bottom: none; }
.market-block .tag { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.6em; display: block; }

/* Form */
.form-wrap { max-width: 640px; margin: 0 auto; }
label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin: 22px 0 8px; }
input, select, textarea {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 2px;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}
textarea { min-height: 120px; resize: vertical; }
.privacy-note { font-size: 0.85rem; color: rgba(242,236,217,0.6); margin: 18px 0 26px; }
.submit-row { margin-top: 10px; }
.submit-row button { font: inherit; cursor: pointer; }

.contact-direct { text-align: center; margin-top: 60px; padding-top: 50px; border-top: 1px solid var(--line); }
.contact-direct p { margin: 6px 0; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 50px 0 30px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(242,236,217,0.5);
}
.site-footer .footer-links { margin-top: 14px; }
.site-footer .footer-links a { margin: 0 10px; color: rgba(242,236,217,0.5); }
.site-footer .footer-links a:hover { color: var(--gold); }

.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}
