/* ===================================
   Vartanian Capital Management, LLC
   Premium RIA Website Stylesheet
   =================================== */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
    --navy: #1a2744;
    --navy-deep: #0f1a2e;
    --navy-medium: #263a5c;
    --blue-accent: #3d5a80;
    --gold: #b8953e;
    --gold-light: #d4b263;
    --gold-muted: #c9a961;
    --text-primary: #1a2744;
    --text-body: #3a4a5c;
    --text-light: #6b7d93;
    --text-faint: #94a3b8;
    --bg-white: #ffffff;
    --bg-warm: #faf9f7;
    --bg-light: #f4f2ef;
    --bg-subtle: #edeae5;
    --border-light: #e8e4de;
    --border-faint: #f0ede8;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --max-width: 1140px;
    --section-pad: 6rem;
    --section-pad-mobile: 3.5rem;
}

/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-body);
    background-color: var(--bg-white);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 400;
}

h1 {
    font-size: 3.2rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy);
}

h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--blue-accent);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--gold);
}

/* === LAYOUT === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section {
    padding: var(--section-pad) 0;
}

.section--warm {
    background-color: var(--bg-warm);
}

.section--light {
    background-color: var(--bg-light);
}

.section--navy {
    background-color: var(--navy);
    color: rgba(255,255,255,0.85);
}

.section--navy h2,
.section--navy h3 {
    color: var(--bg-white);
}

.section--navy h4 {
    color: var(--gold-light);
}

/* === NAVIGATION === */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--navy-deep);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
}

.nav__logo img {
    height: 56px;
    width: auto;
    display: block;
}

.nav__links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav__links a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: color 0.25s ease;
    text-decoration: none;
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--gold-light);
}

/* Hamburger */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: rgba(255,255,255,0.8);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* === HERO === */
.hero {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-medium) 100%);
    color: var(--bg-white);
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(61,90,128,0.3) 0%, transparent 60%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    max-width: var(--max-width);
}

.hero__content > img {
    display: block;
    margin: 0 auto 2rem;
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 1.5rem;
    display: block;
}

.hero h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: 1.75rem;
    font-weight: 300;
    line-height: 1.15;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 100%;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.95rem 2.2rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

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

.btn--gold:hover {
    background-color: var(--gold-light);
    color: var(--bg-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(184,149,62,0.3);
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn--outline:hover {
    background-color: var(--navy);
    color: var(--bg-white);
}

.btn--outline-light {
    background: transparent;
    color: rgba(255,255,255,0.9);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn--outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: var(--bg-white);
}

/* === METRICS BAR === */
.metrics {
    display: flex;
    justify-content: space-between;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.metric {
    text-align: center;
}

.metric__value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold-light);
    display: block;
    line-height: 1.2;
}

.metric__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 0.25rem;
}

/* === CONTENT GRID === */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

/* === CARD === */
.card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 3px;
    border: 1px solid var(--border-faint);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 32px rgba(26,39,68,0.06);
}

.card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* === LEAD TEXT === */
.lead {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 680px;
    line-height: 1.85;
}

/* === ABOUT LAYOUT === */
.about-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-photo {
    width: 100%;
    border-radius: 3px;
    filter: grayscale(5%);
}

.about-sidebar {
    position: sticky;
    top: 100px;
}

.credential-block {
    background: var(--bg-warm);
    padding: 1.75rem;
    border-left: 3px solid var(--gold);
    margin-top: 1.75rem;
}

.credential-block h4 {
    margin-bottom: 0.6rem;
}

.credential-block p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* === TIMELINE === */
.timeline {
    max-width: 720px;
    margin: 2.5rem auto 0;
}

.timeline__item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border-light);
    align-items: baseline;
}

.timeline__item:last-child {
    border-bottom: none;
}

.timeline__years {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--navy);
    white-space: nowrap;
}

.timeline__firm {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.timeline__role {
    font-size: 0.9rem;
    color: var(--text-light);
}

.timeline__item--current .timeline__years {
    color: var(--gold);
}

/* === APPROACH CARDS === */
.approach-block {
    padding: 2.5rem;
    border-left: 3px solid var(--gold);
    background: var(--bg-white);
    margin-bottom: 1.5rem;
}

.approach-block h3 {
    margin-bottom: 0.75rem;
}

.approach-block p {
    color: var(--text-body);
    font-size: 0.95rem;
}

/* === PULLQUOTE === */
.pullquote {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    font-style: italic;
    color: var(--navy);
    line-height: 1.45;
    padding: 2.5rem 0;
    margin: 2rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    max-width: 640px;
}

/* === FEE TABLE === */
.fee-table {
    max-width: 560px;
    margin: 2rem 0;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-light);
}

.fee-row:last-of-type {
    border-bottom: none;
}

.fee-range {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.fee-rate {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy);
}

.fee-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-faint);
}

/* === CAPACITY INDICATOR === */
.capacity {
    background: var(--bg-warm);
    border: 1px solid var(--border-light);
    padding: 2rem 2.5rem;
    border-radius: 3px;
    max-width: 480px;
}

.capacity__bar-outer {
    height: 6px;
    background: var(--border-light);
    border-radius: 3px;
    margin: 1rem 0 0.75rem;
    overflow: hidden;
}

.capacity__bar-inner {
    height: 100%;
    width: 72%;
    background: var(--gold);
    border-radius: 3px;
}

.capacity__text {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-warm);
    border-radius: 3px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* === DISCLOSURE BOX === */
.disclosure {
    background: var(--bg-warm);
    border-left: 3px solid var(--gold);
    padding: 1.75rem 2rem;
    margin: 1.5rem 0;
}

.disclosure h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.disclosure p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* === FOOTER === */
.footer {
    background-color: var(--navy-deep);
    color: rgba(255,255,255,0.6);
    padding: 3.5rem 0 2rem;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer h4 {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.footer p, .footer li {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer a {
    color: rgba(255,255,255,0.6);
}

.footer a:hover {
    color: var(--gold-light);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.4rem;
}

.footer__disclaimer {
    background: rgba(0,0,0,0.2);
    padding: 1.25rem 1.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.25rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* === DIVIDER === */
.divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem 0 2rem;
}

/* === UTILITY === */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.max-w-narrow { max-width: 680px; }
.max-w-medium { max-width: 800px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
    .grid-3 { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-layout { grid-template-columns: 1fr; gap: 2rem; }
    .about-sidebar { position: static; }
    .about-photo { max-width: 260px; }
    .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
    .metrics { flex-wrap: wrap; gap: 2rem; }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 4rem;
    }

    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.9rem; }

    .hero { padding: 5rem 0 4rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero__subtitle { font-size: 1.05rem; }

    .container { padding: 0 1.5rem; }

    .nav__links { display: none; }
    .nav__links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-deep);
        padding: 1.5rem 2rem 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav__toggle { display: block; }

    .pullquote { font-size: 1.4rem; }

    .timeline__item {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .hero { padding: 4rem 0 3rem; }
    .hero h1 { font-size: 2rem; }
    .metrics { flex-direction: column; gap: 1.25rem; }
    .grid-3 { grid-template-columns: 1fr; }
}
