/* Broadstone Capital - Static Site Stylesheet */
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --color-bg-dark: #0A1628;
  --color-bg-cream: #F5F0E8;
  --color-bg-section: #FAFAF7;
  --color-gold: #C9A96E;
  --color-gold-hover: #B8944F;
  --color-text-white: #FFFFFF;
  --color-text-white-60: rgba(255,255,255,0.6);
  --color-text-white-50: rgba(255,255,255,0.5);
  --color-text-dark: #0A1628;
  --color-text-muted: #4A5568;
  --color-border-light: rgba(255,255,255,0.1);
  --color-border-dark: rgba(10,22,40,0.1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --container-max: 1280px;
  --container-narrow: 800px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  background: var(--color-bg-dark);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; }

/* Utility */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }

/* Skip Link */
.skip-link {
  position: absolute; top: -40px; left: 0; background: var(--color-gold);
  color: var(--color-bg-dark); padding: 8px 16px; z-index: 100; font-size: 14px;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* Navigation */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 20px 0;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(8px);
  transition: padding 0.3s, background 0.3s;
}
.nav-inner {
  max-width: var(--container-max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--color-text-white); letter-spacing: 0.02em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--color-gold); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-gold); color: var(--color-bg-dark);
  padding: 10px 20px; border-radius: 4px; font-size: 13px;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--color-gold-hover); transform: translateY(-1px); }

/* Mobile Nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: 0.3s; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--color-bg-dark); flex-direction: column;
    padding: 40px 24px; gap: 24px;
    transform: translateX(100%); transition: transform 0.3s;
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links a { font-size: 18px; }
}

/* Hero Sections */
.hero {
  position: relative; padding: 160px 0 100px; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,22,40,0.82);
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-text-white-60); margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); color: var(--color-text-white);
  max-width: 800px; margin-bottom: 24px;
}
.hero h1 .accent { color: var(--color-gold); }
.hero-subtitle {
  font-family: var(--font-body); font-size: 16px; line-height: 1.7;
  color: var(--color-text-white-60); max-width: 600px; margin-bottom: 32px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 4px; border: none; cursor: pointer;
  transition: all 0.3s;
}
.btn-gold { background: var(--color-gold); color: var(--color-bg-dark); }
.btn-gold:hover { background: var(--color-gold-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--color-text-white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--color-gold); color: var(--color-gold); }
.btn-dark { background: var(--color-bg-dark); color: var(--color-text-white); }
.btn-dark:hover { background: #132038; }
.btn svg, .btn .arrow { transition: transform 0.3s; }
.btn:hover svg, .btn:hover .arrow { transform: translateX(3px); }

/* Sections */
.section { padding: 80px 0; }
.section-dark { background: var(--color-bg-dark); color: var(--color-text-white); }
.section-cream { background: var(--color-bg-cream); }
.section-light { background: var(--color-bg-section); }
.section-eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px;
}
.section-subtitle {
  font-size: 16px; color: var(--color-text-muted); max-width: 600px;
  line-height: 1.7;
}
.section-dark .section-subtitle { color: var(--color-text-white-60); }

/* Cards */
.card {
  background: white; border-radius: 8px; padding: 32px;
  border: 1px solid var(--color-border-dark);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.card-dark {
  background: rgba(255,255,255,0.03); border: 1px solid var(--color-border-light);
}
.card-dark:hover { background: rgba(255,255,255,0.06); }

/* Grid */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Numbered Items */
.numbered-item { position: relative; padding-left: 0; }
.numbered-item .number {
  font-family: var(--font-body); font-size: 48px; font-weight: 800;
  color: rgba(201,169,110,0.15); line-height: 1; margin-bottom: 12px;
}
.numbered-item h3 {
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px;
}
.numbered-item p { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; }
.section-dark .numbered-item p { color: var(--color-text-white-60); }

/* Article Cards */
.article-card {
  display: block; background: white; border-radius: 8px; padding: 32px;
  border: 1px solid var(--color-border-dark);
  transition: transform 0.3s, box-shadow 0.3s;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.article-card-category {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: 12px;
}
.article-card h3 {
  font-size: 1.25rem; margin-bottom: 12px; color: var(--color-text-dark);
}
.article-card p {
  font-size: 14px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 16px;
}
.article-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--color-text-muted);
}
.article-card-byline { font-weight: 500; }
.article-card-readmore {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--color-gold); font-size: 13px;
  letter-spacing: 0.03em;
}

/* Article Page */
.article-header { padding: 160px 0 60px; }
.article-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-gold); margin-bottom: 24px;
}
.article-back:hover { gap: 12px; }
.article-category {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-text-white-60); margin-bottom: 16px;
}
.article-title {
  font-size: clamp(2rem, 4vw, 3.5rem); color: white; max-width: 900px;
  margin-bottom: 24px;
}
.article-meta {
  display: flex; align-items: center; gap: 24px;
  font-size: 13px; color: var(--color-text-white-50);
}
.article-byline a { color: var(--color-gold); }
.article-byline a:hover { text-decoration: underline; }
.article-body {
  background: var(--color-bg-section); padding: 60px 0;
}
.article-body .container-narrow { font-size: 16px; line-height: 1.8; }
.article-body h2 {
  font-size: 1.75rem; margin: 48px 0 16px; color: var(--color-text-dark);
}
.article-body h3 {
  font-family: var(--font-heading); font-size: 1.25rem;
  margin: 32px 0 12px; color: var(--color-text-dark);
}
.article-body p { margin-bottom: 20px; color: var(--color-text-muted); }
.article-body ul, .article-body ol {
  margin: 16px 0 20px 24px; color: var(--color-text-muted);
}
.article-body li { margin-bottom: 8px; }
.article-body ol { list-style: decimal; }
.article-body ul { list-style: disc; }
.article-body strong { color: var(--color-text-dark); font-weight: 600; }
.article-body a { color: var(--color-gold); text-decoration: underline; }
.article-body a:hover { color: var(--color-gold-hover); }
.article-body blockquote {
  border-left: 3px solid var(--color-gold); padding: 16px 24px;
  margin: 24px 0; background: rgba(201,169,110,0.05);
  font-style: italic; color: var(--color-text-dark);
}

/* Stats Box */
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  background: var(--color-bg-dark); border-radius: 8px; padding: 32px;
  margin: 32px 0;
}
.stat-item { text-align: center; }
.stat-value { font-family: var(--font-heading); font-size: 1.5rem; color: white; margin-bottom: 4px; }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--color-text-white-50); }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* FAQ Section */
.faq-section { margin-top: 48px; }
.faq-item { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--color-border-dark); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
  color: var(--color-text-dark); margin-bottom: 8px;
}
.faq-answer { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; }

/* CTA Section */
.cta-section {
  background: var(--color-bg-dark); padding: 80px 0; text-align: center;
}
.cta-section .section-eyebrow { color: var(--color-gold); }
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: var(--color-text-white-60); max-width: 600px; margin: 0 auto 32px; }

/* More Resources */
.more-resources { padding: 60px 0; background: var(--color-bg-cream); }
.more-resources h3 {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: 24px;
}

/* Forms */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text-white-60); margin-bottom: 8px;
}
.form-label-dark { color: var(--color-text-muted); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05); color: white;
  font-family: var(--font-body); font-size: 14px;
  transition: border-color 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--color-gold);
}
.form-input::placeholder { color: var(--color-text-white-50); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--color-bg-dark); color: white; }

/* Newsletter Form */
.newsletter-form {
  display: flex; gap: 12px; max-width: 400px;
}
.newsletter-form .form-input {
  flex: 1; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
}
.newsletter-form .btn { white-space: nowrap; }
@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
}

/* Form Messages */
.form-success {
  display: none; padding: 16px; border-radius: 4px;
  background: rgba(72,187,120,0.1); border: 1px solid rgba(72,187,120,0.3);
  color: #48BB78; font-size: 14px; margin-top: 16px;
}
.form-error {
  display: none; padding: 16px; border-radius: 4px;
  background: rgba(245,101,101,0.1); border: 1px solid rgba(245,101,101,0.3);
  color: #F56565; font-size: 14px; margin-top: 16px;
}

/* Footer */
.footer {
  background: var(--color-bg-dark); padding: 60px 0 30px;
  border-top: 1px solid var(--color-border-light);
}
.footer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  margin-bottom: 40px;
}
.footer-heading {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--color-text-white-60); margin-bottom: 16px;
}
.footer-links a {
  display: block; font-size: 14px; color: var(--color-text-white-60);
  margin-bottom: 8px; transition: color 0.3s;
}
.footer-links a:hover { color: var(--color-gold); }
.footer-contact a {
  font-size: 14px; color: var(--color-text-white-60); transition: color 0.3s;
}
.footer-contact a:hover { color: var(--color-gold); }
.footer-social { display: flex; gap: 16px; margin-top: 12px; }
.footer-social a {
  color: var(--color-text-white-60); transition: color 0.3s;
}
.footer-social a:hover { color: var(--color-gold); }
.footer-disclaimer {
  border-top: 1px solid var(--color-border-light);
  padding-top: 30px; margin-top: 30px;
}
.footer-disclaimer p {
  font-size: 12px; color: var(--color-text-white-50);
  text-align: center; line-height: 1.7; margin-bottom: 12px;
}
.footer-copyright {
  text-align: center; font-size: 12px; color: var(--color-text-white-50);
  margin-top: 20px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* Investor Portal */
.portal-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 40px 0; }
.portal-feature { padding: 24px; }
.portal-feature h3 {
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  margin-bottom: 8px; color: var(--color-text-dark);
}
.portal-feature p { font-size: 14px; color: var(--color-text-muted); }
@media (max-width: 768px) { .portal-features { grid-template-columns: 1fr; } }

/* Disclaimers */
.disclaimers-body { background: var(--color-bg-section); padding: 60px 0; }
.disclaimers-body h2 {
  font-size: 1.75rem; margin: 48px 0 16px; color: var(--color-text-dark);
  padding-top: 24px; border-top: 1px solid var(--color-border-dark);
}
.disclaimers-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.disclaimers-body h3 {
  font-family: var(--font-heading); font-size: 1.25rem;
  margin: 24px 0 12px; color: var(--color-text-dark);
}
.disclaimers-body p {
  font-size: 15px; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 16px;
}

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.contact-sidebar h3 {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text-white-60); margin-bottom: 16px; margin-top: 32px;
}
.contact-sidebar h3:first-child { margin-top: 0; }
.contact-sidebar p { font-size: 14px; color: var(--color-text-white-60); }
.contact-sidebar a { color: var(--color-gold); }
.contact-steps { margin-top: 32px; }
.contact-step {
  display: flex; gap: 12px; margin-bottom: 16px;
}
.contact-step-number {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  color: var(--color-gold); min-width: 24px;
}
.contact-step p { font-size: 13px; color: var(--color-text-white-60); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* Founder Section (Homepage) */
.founder-section { display: flex; align-items: center; gap: 48px; }
.founder-photo {
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(201,169,110,0.1); border: 2px solid var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-info h3 { font-size: 1.5rem; margin-bottom: 8px; }
.founder-info .title {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--color-gold); letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 16px;
}
.founder-info p { font-size: 15px; color: var(--color-text-white-60); line-height: 1.7; margin-bottom: 16px; }
.founder-info a { color: var(--color-gold); font-size: 14px; font-weight: 600; }
.founder-info a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .founder-section { flex-direction: column; text-align: center; }
  .founder-photo { width: 150px; height: 150px; }
}

/* Latest Insights */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
@media (max-width: 1024px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .insights-grid { grid-template-columns: 1fr; } }

/* About Page */
.about-leadership { display: flex; gap: 48px; align-items: flex-start; margin-bottom: 60px; }
.about-photo {
  width: 280px; height: 340px; border-radius: 8px;
  background: rgba(201,169,110,0.1); border: 2px solid var(--color-gold);
  flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-bio h2 { font-size: 2.5rem; margin-bottom: 4px; }
.about-bio .title {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: 20px;
}
.about-bio p { font-size: 15px; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-links { display: flex; gap: 16px; margin-top: 16px; }
.about-links a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--color-gold);
}
.about-links a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .about-leadership { flex-direction: column; }
  .about-photo { width: 200px; height: 240px; }
}

/* Advisory Board */
.advisor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.advisor-card { padding: 24px; }
.advisor-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.advisor-card .advisor-title {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: 12px;
}
.advisor-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.7; }
@media (max-width: 768px) { .advisor-grid { grid-template-columns: 1fr; } }

/* Mission/Vision/Values */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 32px; }
.mvv-item h3 {
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--color-gold); margin-bottom: 12px;
}
.mvv-item p { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; }
@media (max-width: 768px) { .mvv-grid { grid-template-columns: 1fr; } }

/* 404 Page */
.page-404 {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px;
}
.page-404 h1 { font-size: 6rem; color: var(--color-gold); margin-bottom: 16px; }
.page-404 h2 { font-size: 1.5rem; color: white; margin-bottom: 16px; }
.page-404 p { color: var(--color-text-white-60); margin-bottom: 32px; }
.page-404-links { display: flex; gap: 16px; justify-content: center; }

/* Powered by */
.powered-by {
  font-size: 12px; color: var(--color-text-muted); margin-top: 12px;
  text-align: center;
}
