/* OC Equity Advisors — Forest Green Luxury Design System
   Ported from Next.js/TSX reference design to static HTML.
   
   Typography: Cormorant Garamond (display serif) + DM Sans (body sans)
   Colors: Forest green #082d27, gold #c89d62, paper white #fffdf9
   Aesthetic: Wealth management / luxury advisory feel
   
   CSS variables:
   --ink: #17362f        (body text — dark forest)
   --forest: #123f35     (primary green)
   --forest-dark: #082d27 (header, hero, footer backgrounds)
   --cream: #f6f0e6      (tinted sections)
   --paper: #fffdf9      (page background — warm white)
   --sand: #e8ddcc      (borders, subtle dividers)
   --gold: #c89d62      (accent, buttons, highlights)
   --gold-light: #e2bd85 (light gold for dark backgrounds)
   --muted: #68736e     (secondary text)
   --line: rgba(23,54,47,.15) (borders)
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --ink: #17362f;
  --forest: #123f35;
  --forest-dark: #082d27;
  --cream: #f6f0e6;
  --paper: #fffdf9;
  --sand: #e8ddcc;
  --gold: #c89d62;
  --gold-light: #e2bd85;
  --muted: #68736e;
  --line: rgba(23, 54, 47, .15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--paper); color: var(--ink); font-family: var(--font-sans); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Container */
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { max-width: 800px; }
.section { padding-block: 112px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #947044; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--gold-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--font-display); font-weight: 600; line-height: .98; letter-spacing: -.035em; }
h1 { font-size: clamp(54px, 7vw, 92px); }
h2 { font-size: clamp(42px, 5vw, 64px); }
h3 { font-size: 22px; line-height: 1.25; }
p { color: var(--muted); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 20; background: var(--forest-dark); color: white; border-bottom: 1px solid rgba(255,255,255,.12); }
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; line-height: 1; }
.brand-mark { width: 40px; height: 40px; border: 1px solid rgba(226,189,133,.65); border-radius: 50%; display: grid; place-items: center; color: var(--gold-light); font-family: var(--font-display); font-size: 17px; }
.brand strong, .brand em { display: block; font-style: normal; }
.brand strong { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.brand em { margin-top: 5px; color: rgba(255,255,255,.62); font-size: 9px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; }
.desktop-nav a { color: rgba(255,255,255,.76); transition: color .2s; }
.desktop-nav a:hover { color: white; }
.header-phone { color: var(--gold-light); font-size: 14px; font-weight: 700; text-align: right; }
.header-phone span { display: block; color: rgba(255,255,255,.55); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { cursor: pointer; list-style: none; border: 1px solid rgba(255,255,255,.25); padding: 8px 12px; border-radius: 4px; font-size: 12px; color: white; }
.mobile-menu nav { position: absolute; right: 0; top: 44px; min-width: 230px; padding: 16px; background: var(--paper); color: var(--ink); box-shadow: 0 18px 48px rgba(0,0,0,.25); z-index: 30; }
.mobile-menu nav a { display: block; padding: 10px; border-bottom: 1px solid var(--line); }

/* Hero */
.hero { position: relative; overflow: hidden; min-height: 720px; padding-block: 88px 72px; color: white; background: radial-gradient(circle at 5% 40%, #23574a 0, transparent 33%), linear-gradient(115deg, #0a3029, #12493d); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: repeating-linear-gradient(115deg, transparent 0 68px, rgba(255,255,255,.12) 69px 70px); pointer-events: none; }
.hero-orb { position: absolute; border: 1px solid rgba(226,189,133,.22); border-radius: 50%; pointer-events: none; }
.hero-orb.one { width: 560px; height: 560px; right: -180px; top: -210px; }
.hero-orb.two { width: 300px; height: 300px; right: 22%; bottom: -210px; }
.hero-grid { position: relative; z-index: 5; display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(400px, .84fr); gap: 80px; align-items: center; }
.hero-copy h1 { max-width: 720px; margin: 25px 0 28px; position: relative; }
.hero-copy h1 em { color: var(--gold-light); font-style: italic; font-weight: 500; }
.hero-copy h1::after { content: ""; display: block; width: 80px; height: 2px; background: var(--gold); margin-top: 30px; }
.hero-copy > p { max-width: 610px; color: rgba(255,255,255,.72); font-size: 19px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 54px; padding: 0 24px; border: 0; border-radius: 3px; font-size: 13px; font-weight: 700; letter-spacing: .015em; cursor: pointer; transition: transform .2s, background .2s; text-decoration: none; }
.button:hover { transform: translateY(-2px); }
.button.gold { background: var(--gold-light); color: var(--forest-dark); }
.button.primary { background: var(--forest); color: white; }
.button.dark { background: var(--forest-dark); color: white; }
.button.outline-light { color: white; border: 1px solid rgba(255,255,255,.45); background: transparent; }
.button.full { width: 100%; }
.text-link { color: var(--gold-light); font-size: 13px; font-weight: 700; border-bottom: 1px solid rgba(226,189,133,.45); padding-bottom: 4px; display: inline-flex; align-items: center; }
.text-link span { margin-left: 8px; }
.micro-proof { display: flex; gap: 22px; margin-top: 36px; color: rgba(255,255,255,.55); font-size: 11px; }

/* Lead form */
.lead-form { background: var(--cream); color: var(--ink); padding: 34px; border-top: 3px solid var(--gold); box-shadow: 0 30px 80px rgba(0,0,0,.24); }
.form-heading span { color: #98764c; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.form-heading h2 { margin: 8px 0 6px; font-size: 34px; line-height: 1; }
.form-heading p { margin-bottom: 22px; font-size: 13px; }
.lead-form label { display: block; margin-top: 14px; color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .035em; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; height: 50px; margin-top: 6px; padding: 0 14px; border: 1px solid rgba(23,54,47,.2); border-radius: 2px; outline: none; background: white; color: var(--ink); font-size: 14px; font-family: var(--font-sans); }
.lead-form textarea { height: auto; padding: 12px 14px; resize: vertical; }
.lead-form input:focus, .lead-form select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,157,98,.14); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lead-form .consent { display: flex; align-items: flex-start; gap: 8px; margin-block: 17px; color: #68736e; font-size: 9px; font-weight: 500; line-height: 1.5; letter-spacing: 0; }
.lead-form .consent input { width: 14px; height: 14px; margin: 2px 0 0; flex: 0 0 auto; }
.lead-form small { display: block; margin-top: 10px; text-align: center; color: #7c827f; font-size: 9px; }
.lead-form.compact { padding: 28px; }
.lead-form.compact .form-heading h2 { font-size: 28px; }

/* Proof strip */
.proof-strip { position: relative; z-index: 2; max-width: 1080px; margin: -24px auto 0; padding: 28px 34px; display: grid; grid-template-columns: repeat(4, 1fr); background: white; box-shadow: 0 18px 48px rgba(30,50,44,.12); }
.proof-strip div { padding-inline: 20px; border-right: 1px solid var(--line); }
.proof-strip div:last-child { border: 0; }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { font-family: var(--font-display); font-size: 20px; }
.proof-strip span { margin-top: 3px; color: var(--muted); font-size: 10px; }

/* Intro section */
.intro-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: start; }
.intro-section h2 { margin-top: 22px; }
.intro-section > div:last-child { padding-top: 42px; }
.intro-section p { font-size: 17px; line-height: 1.8; }

/* Tinted section */
.tinted { background: var(--cream); }

/* Section head */
.section-head { max-width: 710px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { margin: 20px 0 14px; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head.left .eyebrow { justify-content: flex-start; }

/* Service cards */
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.service-card { grid-column: span 2; min-height: 300px; padding: 30px; display: flex; flex-direction: column; background: var(--paper); border: 1px solid transparent; transition: transform .25s, border-color .25s; }
.service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 3; }
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.service-card > span { color: var(--gold); font-size: 11px; font-weight: 800; }
.service-card h3 { margin: 54px 0 12px; font-family: var(--font-display); font-size: 30px; font-weight: 600; }
.service-card p { font-size: 13px; }
.service-card b { margin-top: auto; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.service-card i { float: right; color: var(--gold); font-style: normal; }

/* Process section */
.process { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.process-copy h2 { margin: 22px 0; }
.process-copy .button { margin-top: 20px; }
.path-list > div { display: flex; align-items: center; gap: 24px; padding: 28px 8px; border-bottom: 1px solid var(--line); }
.path-list b { color: var(--gold); font-size: 11px; }
.path-list span { display: flex; flex-direction: column; }
.path-list strong { font-family: var(--font-display); font-size: 25px; font-weight: 600; }
.path-list small { color: var(--muted); }

/* Market section */
.market-section { color: white; background: var(--forest-dark); }
.market-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.market-grid a { min-height: 230px; padding: 30px 24px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.18); transition: background .2s; }
.market-grid a:hover { background: rgba(255,255,255,.06); }
.market-grid a:last-child { border-right: 0; }
.market-grid span { font-family: var(--font-display); font-size: 27px; }
.market-grid small { margin-top: 18px; color: rgba(255,255,255,.52); line-height: 1.55; }
.market-grid b { margin-top: auto; color: var(--gold-light); }

/* Trust section */
.trust-title { max-width: 700px; }
.trust-title h2 { margin-top: 20px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.trust-grid article { padding: 34px; border: 1px solid var(--line); }
.trust-grid article > span { color: var(--gold); font-size: 11px; }
.trust-grid h3 { margin: 46px 0 12px; font-family: var(--font-display); font-size: 27px; }
.trust-grid p { font-size: 13px; }

/* Final CTA */
.final-cta { color: white; background: linear-gradient(110deg, var(--forest), var(--forest-dark)); }
.cta-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: center; }
.cta-grid h2 { max-width: 650px; margin: 22px 0 34px; }

/* Content page hero */
.page-hero { padding-block: 100px 88px; color: white; background: radial-gradient(circle at 78% 20%, #24584b, transparent 26%), var(--forest-dark); }
.page-hero-grid { display: grid; grid-template-columns: 1.45fr .55fr; gap: 90px; align-items: end; }
.page-hero h1 { max-width: 860px; margin: 24px 0 28px; font-size: clamp(50px, 6.2vw, 80px); }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.68); font-size: 18px; }
.page-hero aside { padding: 28px; border: 1px solid rgba(255,255,255,.16); border-top-color: var(--gold); }
.page-hero aside span { color: var(--gold-light); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.page-hero aside p { margin: 16px 0 0; font-size: 13px; }
.page-hero.simple { text-align: center; }
.page-hero.simple p { margin-inline: auto; }

/* Feature band */
.feature-band { padding-block: 28px; display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.feature-band div { padding-inline: 24px; border-right: 1px solid var(--line); font-size: 12px; font-weight: 700; }
.feature-band div:last-child { border: 0; }
.feature-band span { margin-right: 12px; color: var(--gold); font-size: 10px; }

/* Content layout */
.content-layout { display: grid; grid-template-columns: 1fr 400px; gap: 110px; align-items: start; }
.article-content > section { position: relative; padding: 0 0 72px 58px; border-left: 1px solid var(--line); }
.section-number { position: absolute; left: -14px; top: 0; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); border: 1px solid var(--gold); color: #8d693e; font-size: 9px; }
.article-content h2 { margin-bottom: 22px; font-size: 45px; }
.article-content p, .article-content li { font-size: 16px; line-height: 1.8; color: var(--muted); }
.article-content ul { margin: 26px 0 0; padding: 0; list-style: none; }
.article-content li { padding: 11px 0; border-bottom: 1px solid var(--line); }
.article-content li::before { content: "✓"; margin-right: 12px; color: var(--gold); }
.sticky-form { position: sticky; top: 24px; }

/* FAQ section */
.faq-section { background: var(--cream); }
.faq-section h2 { margin: 20px 0 48px; }
.faq-section details { border-top: 1px solid var(--line); }
.faq-section details:last-child { border-bottom: 1px solid var(--line); }
.faq-section summary { padding: 24px 0; cursor: pointer; font-family: var(--font-display); font-size: 25px; font-weight: 600; list-style: none; }
.faq-section summary::-webkit-details-marker { display: none; }
.faq-section details p { padding: 0 30px 24px 0; }

/* Page CTA */
.page-cta { color: white; text-align: center; background: var(--forest-dark); }
.page-cta h2 { max-width: 850px; margin: 22px auto 34px; }
.page-cta .button { margin: 5px; }

/* Prose / legal pages */
.prose h2, .legal-page h2 { margin: 52px 0 16px; font-size: 42px; }
.prose p, .legal-page p { font-size: 17px; line-height: 1.85; }
.prose .button { margin-top: 28px; }
.prose a { color: var(--forest); text-decoration: underline; }
.prose strong { color: var(--ink); }
.prose ul { padding-left: 20px; margin: 12px 0; }
.prose li { font-size: 17px; line-height: 1.85; color: var(--muted); margin-bottom: 8px; }

/* Contact page */
.contact-page { padding-block: 100px; color: white; background: var(--forest-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 480px; gap: 100px; align-items: center; }
.contact-grid h1 { margin: 24px 0; }
.contact-grid > div > p { color: rgba(255,255,255,.62); font-size: 18px; }
.contact-details { display: flex; gap: 40px; margin-top: 44px; }
.contact-details a { color: var(--gold-light); font-weight: 700; }
.contact-details span { display: block; color: rgba(255,255,255,.46); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }

/* Legal pages */
.legal-page { padding-block: 100px; }
.legal-page h1 { margin: 24px 0 50px; color: var(--ink); font-size: 68px; }

/* Stats bar (reused from original) */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); margin: 40px 0; }
.stat-item { padding: 24px; text-align: center; border-right: 1px solid var(--line); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 32px; color: var(--forest); display: block; }
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }

/* Tables */
table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
th, td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; }
th { background: var(--forest); color: white; font-family: var(--font-display); font-weight: 600; }
tbody tr:nth-child(even) { background: var(--cream); }

/* Footer */
.site-footer { padding-top: 72px; color: white; background: #061f1b; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 70px; padding-bottom: 60px; }
.footer-brand { font-family: var(--font-display); font-size: 32px; }
.footer-grid p { max-width: 320px; color: rgba(255,255,255,.45); font-size: 12px; }
.footer-grid h3 { margin-bottom: 18px; color: var(--gold-light); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.footer-grid a { display: block; margin-block: 9px; color: rgba(255,255,255,.62); font-size: 12px; }
.footer-grid a:hover { color: white; }
.legal { padding-block: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.34); font-size: 9px; }

/* Mobile actions */
.mobile-actions { display: none; }

/* Responsive */
@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .hero-grid, .page-hero-grid, .content-layout, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .micro-proof { justify-content: center; }
  .hero-grid #valuation { max-width: 560px; margin: auto; width: 100%; }
  .proof-strip { width: calc(100% - 40px); grid-template-columns: 1fr 1fr; }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .proof-strip div:nth-child(-n+2) { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
  .intro-section, .process, .cta-grid { grid-template-columns: 1fr; gap: 50px; }
  .service-card { grid-column: span 3; }
  .market-grid { grid-template-columns: 1fr 1fr; }
  .market-grid a { min-height: 170px; border-bottom: 1px solid rgba(255,255,255,.18); }
  .market-grid a:nth-child(2n) { border-right: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .sticky-form { position: static; max-width: 520px; margin: auto; }
  .page-hero aside { max-width: 520px; }
  .header-phone { display: none; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding-block: 78px; }
  .header-inner { min-height: 72px; }
  .brand-mark { width: 36px; height: 36px; }
  .hero { padding-block: 62px; min-height: auto; }
  h1 { font-size: 50px; }
  h2 { font-size: 40px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { gap: 18px; }
  .hero-actions .button { width: 100%; }
  .micro-proof { display: grid; gap: 8px; }
  .lead-form { padding: 25px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .proof-strip { padding: 22px 14px; }
  .proof-strip div { padding-inline: 10px; }
  .proof-strip strong { font-size: 16px; }
  .intro-section { gap: 18px; }
  .intro-section > div:last-child { padding-top: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; min-height: 260px; }
  .market-grid { grid-template-columns: 1fr; }
  .market-grid a { border-right: 0; }
  .page-hero { padding-block: 70px; }
  .page-hero h1 { font-size: 48px; }
  .feature-band { grid-template-columns: 1fr 1fr; }
  .feature-band div { padding: 12px; border-bottom: 1px solid var(--line); }
  .feature-band div:nth-child(2n) { border-right: 0; }
  .article-content > section { padding-left: 40px; }
  .article-content h2 { font-size: 38px; }
  .contact-details { flex-direction: column; gap: 18px; }
  .legal-page h1 { font-size: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--line); }
  .mobile-actions { display: grid; grid-template-columns: 0.8fr 1.2fr; min-height: 56px; position: fixed; bottom: 0; left: 0; right: 0; z-index: 30; box-shadow: 0 -5px 20px rgba(0,0,0,.12); }
  .mobile-actions a { display: grid; place-items: center; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; border-top: 1px solid var(--ink); background: var(--paper); }
  .mobile-actions a:last-child { background: var(--forest-dark); color: white; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}