/* ============================================================
   LEGACY GROWTH ADVISORS LLC — Main Stylesheet
   Colors : Navy #0B132B | Slate #334155 | Gold #C89D4B
   Fonts  : Montserrat (headings) | Inter (body)
   ============================================================ */

/* --- Variables & Reset ------------------------------------ */
:root {
    --navy:       #0B132B;
    --navy-mid:   #1a2744;
    --slate:      #334155;
    --gold:       #C89D4B;
    --gold-light: #d4ae6a;
    --gray-light: #E5E7EB;
    --gray-bg:    #f7f8fa;
    --white:      #FFFFFF;
    --font-head:  'Montserrat', sans-serif;
    --font-body:  'Inter', sans-serif;
    --max-w:      1200px;
    --pad-sec:    88px 0;
    --radius:     8px;
    --trans:      0.28s ease;
    --shadow:     0 4px 24px rgba(11,19,43,0.10);
    --shadow-lg:  0 10px 48px rgba(11,19,43,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); color: var(--slate); background: var(--white); line-height: 1.72; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

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

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--navy);
    line-height: 1.18;
    font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw,  2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw,  1.4rem); }
h4 { font-size: 1rem; }

.label {
    display: block;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.divider {
    width: 52px;
    height: 3px;
    background: var(--gold);
    margin: 18px 0 36px;
}
.divider.center { margin: 18px auto 36px; }

/* --- Buttons ---------------------------------------------- */
.btn {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--trans);
}
.btn-gold          { background: var(--gold);  color: var(--white); border-color: var(--gold); }
.btn-gold:hover    { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-navy          { background: var(--navy);  color: var(--white); border-color: var(--navy); }
.btn-navy:hover    { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-outline-gold  { background: transparent; color: var(--gold);  border-color: var(--gold); }
.btn-outline-gold:hover  { background: var(--gold); color: var(--white); }

/* --- Navigation ------------------------------------------- */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navy);
    border-bottom: 1px solid rgba(200,157,75,0.25);
    transition: box-shadow var(--trans);
}
.site-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.35); }

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

.nav-logo img { height: 74px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.82);
    position: relative;
    transition: color var(--trans);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--trans);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links .btn { margin-left: 8px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); transition: all var(--trans); }

@media (max-width: 820px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 78px; left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 28px;
        gap: 22px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--trans);
        border-top: 1px solid rgba(200,157,75,0.25);
    }
    .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-links .btn { margin-left: 0; }
}

/* --- Hero ------------------------------------------------- */
.hero {
    min-height: 100vh;
    background: var(--navy);
    /* HERO IMAGE: save your city-skyline banner image as images/hero-bg.jpg
       then uncomment the two lines below: */
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center bottom;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 78px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,19,43,0.97) 45%, rgba(11,19,43,0.75) 100%);
    z-index: 1;
}

/* Geometric accent shapes */
.hero-geo {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-geo::before {
    content: '';
    position: absolute;
    right: -8%;
    top: 0;
    bottom: 0;
    width: 55%;
    background: linear-gradient(135deg, transparent 30%, rgba(200,157,75,0.055) 100%);
    transform: skewX(-12deg);
}
.hero-geo::after {
    content: '';
    position: absolute;
    right: 4%;
    top: 8%;
    width: 38%;
    height: 84%;
    border-left: 1px solid rgba(200,157,75,0.12);
    border-top:  1px solid rgba(200,157,75,0.12);
    transform: skewX(-4deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 72px 28px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.hero-eyebrow {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 .gold { color: var(--gold); }

.hero-sub {
    color: rgba(255,255,255,0.72);
    font-size: 1.08rem;
    max-width: 500px;
    margin-bottom: 38px;
    line-height: 1.78;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stat cards (right column) */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.stat-card {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(200,157,75,0.22);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: background var(--trans);
}
.stat-card:hover { background: rgba(255,255,255,0.09); }
.stat-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-lbl {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.45;
}

@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-stats   { display: none; }
}

/* --- Gold Stats Band -------------------------------------- */
.stats-band { background: var(--gold); padding: 56px 0; }
.stats-band-inner {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 24px;
    text-align: center;
}
.stats-band-inner > div { min-width: 0; }
.band-num {
    font-family: var(--font-head);
    font-size: clamp(1.15rem, 1vw + 0.85rem, 1.7rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 6px;
    overflow-wrap: break-word;
    hyphens: auto;
}
.band-lbl {
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.78;
}
@media (max-width: 640px) {
    .stats-band-inner { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
    .band-num { font-size: 1rem; }
    .band-lbl { font-size: 0.65rem; }
}

/* --- Intro / Purpose -------------------------------------- */
.intro-section { padding: var(--pad-sec); }
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.intro-text h2  { margin-bottom: 14px; }
.intro-text p   { color: var(--slate); margin-bottom: 18px; font-size: 1.02rem; }

.pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 24px;
    background: var(--gray-bg);
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
    transition: box-shadow var(--trans);
}
.pillar:hover { box-shadow: var(--shadow); }
.pillar-icon { flex-shrink: 0; width: 36px; }
.pillar-icon svg { stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; width: 28px; height: 28px; }
.pillar h4 { color: var(--navy); margin-bottom: 4px; font-family: var(--font-head); font-size: 0.95rem; }
.pillar p  { font-size: 0.875rem; color: var(--slate); margin: 0; line-height: 1.6; }

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

/* --- Problems --------------------------------------------- */
.problems-section { padding: var(--pad-sec); background: var(--navy); }
.problems-section .label { color: var(--gold); }

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 22px;
    margin-top: 48px;
}
.problem-card {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(200,157,75,0.18);
    border-radius: var(--radius);
    padding: 32px 26px;
    transition: all var(--trans);
}
.problem-card:hover {
    background: rgba(255,255,255,0.075);
    border-color: rgba(200,157,75,0.45);
    transform: translateY(-4px);
}
.problem-num  { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--gold); opacity: 0.55; margin-bottom: 14px; line-height: 1; }
.problem-ttl  { color: var(--white); font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; margin-bottom: 10px; }
.problem-qt   { font-style: italic; color: var(--gold); font-size: 0.875rem; margin-bottom: 14px; padding-left: 10px; border-left: 2px solid var(--gold); }
.problem-help { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* --- Services Overview ------------------------------------ */
.services-section { padding: var(--pad-sec); background: var(--gray-bg); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 26px;
    box-shadow: var(--shadow);
    border-top: 4px solid transparent;
    transition: all var(--trans);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--gold); }
.svc-icon {
    width: 50px; height: 50px;
    background: rgba(200,157,75,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.svc-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1rem; margin-bottom: 10px; }
.service-card p  { font-size: 0.875rem; color: var(--slate); margin-bottom: 14px; line-height: 1.65; }
.svc-list li {
    font-size: 0.835rem; color: var(--slate);
    padding-left: 14px; position: relative; margin-bottom: 5px; line-height: 1.5;
}
.svc-list li::before { content: '•'; color: var(--gold); position: absolute; left: 0; font-weight: 700; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* --- Packages --------------------------------------------- */
.packages-section { padding: var(--pad-sec); background: var(--white); }
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    align-items: stretch;
}
.pkg-card {
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 36px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--trans);
}
.pkg-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pkg-card.featured { border-color: var(--gold); background: var(--navy); }
.pkg-card.featured h3,
.pkg-card.featured .pkg-best { color: rgba(255,255,255,0.7) !important; }
.pkg-card.featured li { color: rgba(255,255,255,0.8); }

.pkg-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

.pkg-card h3    { font-size: 1.15rem; color: var(--navy); margin-bottom: 6px; }
.pkg-price      { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.pkg-best       { font-size: 0.82rem; color: var(--slate); font-style: italic; padding-bottom: 20px; border-bottom: 1px solid var(--gray-light); margin-bottom: 22px; }
.pkg-card.featured .pkg-best { border-bottom-color: rgba(255,255,255,0.12); }
.pkg-features   { flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.pkg-features li {
    font-size: 0.855rem; color: var(--slate);
    padding-left: 20px; position: relative; line-height: 1.5;
}
.pkg-features li::before { content: '✓'; color: var(--gold); position: absolute; left: 0; font-weight: 700; font-size: 0.78rem; }
.pkg-note { font-size: 0.78rem; color: var(--gold); font-style: italic; margin-bottom: 18px; }
.pkg-cta  { margin-top: auto; }

@media (max-width: 900px) { .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* --- Process ---------------------------------------------- */
.process-section { padding: var(--pad-sec); background: var(--gray-bg); }

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 56px;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 9%;
    right: 9%;
    height: 2px;
    background: var(--gold);
    z-index: 0;
}
.proc-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}
.proc-circle {
    width: 70px; height: 70px;
    background: var(--navy);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.proc-num { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--gold); }
.proc-ttl { font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.proc-desc { font-size: 0.8rem; color: var(--slate); line-height: 1.5; }

@media (max-width: 740px) {
    .process-steps { flex-direction: column; align-items: flex-start; gap: 28px; }
    .process-steps::before { top: 0; bottom: 0; left: 35px; right: auto; width: 2px; height: auto; }
    .proc-step { flex-direction: row; text-align: left; gap: 18px; align-items: flex-start; }
    .proc-circle { flex-shrink: 0; margin-bottom: 0; }
}

/* --- Testimonials ------------------------------------------ */
.testimonials-section { padding: var(--pad-sec); background: var(--white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px;
    margin-top: 8px;
}
.testimonial-card {
    background: var(--gray-bg);
    border-radius: var(--radius);
    padding: 36px 32px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow);
}
.testimonial-mark { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--gold); opacity: 0.35; line-height: 1; margin-bottom: 6px; }
.testimonial-text { font-size: 0.95rem; color: var(--slate); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.testimonial-attribution { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; }
.testimonial-disclosure { font-size: 0.78rem; color: var(--slate); opacity: 0.65; margin-top: 30px; max-width: 780px; line-height: 1.6; }

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

/* --- CTA Banner ------------------------------------------- */
.cta-banner {
    padding: 96px 0;
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(200,157,75,0.06) 0%, transparent 55%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2   { color: var(--white); margin-bottom: 14px; }
.cta-banner p    { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Footer ----------------------------------------------- */
.site-footer {
    background: var(--navy);
    border-top: 1px solid rgba(200,157,75,0.22);
    padding: 64px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 22px;
}
.footer-brand img { height: 42px; width: auto; margin-bottom: 14px; }
.footer-slogan { font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.footer-desc { font-size: 0.855rem; color: rgba(255,255,255,0.55); line-height: 1.72; max-width: 300px; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--trans); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); transition: border-color var(--trans), background var(--trans); }
.footer-social a:hover { border-color: var(--gold); background: rgba(255,255,255,0.06); }
.footer-social svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color var(--trans); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* --- Page Hero (inner pages) ------------------------------ */
.page-hero {
    background: var(--navy);
    padding-top: 78px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(200,157,75,0.07) 0%, transparent 65%);
}
.page-hero-inner {
    position: relative; z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 28px 56px;
}
.page-hero-inner .label { color: var(--gold); }
.page-hero-inner h1 { color: var(--white); margin-bottom: 14px; }
.page-hero-inner p  { color: rgba(255,255,255,0.68); font-size: 1.08rem; max-width: 560px; }

/* --- About Page ------------------------------------------- */
.about-section { padding: var(--pad-sec); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
}
.about-photo { position: sticky; top: 100px; }
.photo-frame {
    border-radius: 10px;
    overflow: hidden;
    background: var(--gray-bg);
    aspect-ratio: 3/4;
    border: 2px solid var(--gray-light);
    display: flex; align-items: center; justify-content: center;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder { color: var(--slate); font-size: 0.82rem; text-align: center; padding: 24px; opacity: 0.45; line-height: 1.6; }
.contact-aside {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 18px;
    text-align: center;
}
.contact-aside p { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.contact-aside a { color: var(--gold); font-size: 0.88rem; display: block; transition: opacity var(--trans); }
.contact-aside a:hover { opacity: 0.8; }
.contact-aside .btn-gold { color: var(--white); }

.about-bio .about-name { margin-bottom: 6px; }
.about-title-lbl {
    font-family: var(--font-head);
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 26px;
}
.about-bio p { color: var(--slate); margin-bottom: 18px; font-size: 1rem; line-height: 1.82; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.value-item { background: var(--gray-bg); border-radius: var(--radius); padding: 18px 20px; border-left: 3px solid var(--gold); }
.value-item h4 { color: var(--navy); margin-bottom: 4px; font-size: 0.9rem; }
.value-item p  { font-size: 0.82rem; color: var(--slate); margin: 0; }

@media (max-width: 820px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-photo { position: static; max-width: 300px; margin: 0 auto; }
    .values-grid { grid-template-columns: 1fr; }
}

/* --- Services Page ---------------------------------------- */
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.svc-detail-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
}
.svc-detail-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.svc-detail-card > p { font-size: 0.875rem; color: var(--slate); margin-bottom: 16px; line-height: 1.65; }
.svc-detail-card ul li {
    font-size: 0.855rem; color: var(--slate);
    padding-left: 20px; position: relative; margin-bottom: 7px;
}
.svc-detail-card ul li::before { content: '→'; color: var(--gold); position: absolute; left: 0; font-size: 0.75rem; top: 1px; }

@media (max-width: 720px) { .svc-detail-grid { grid-template-columns: 1fr; } }

/* Comparison table */
.cmp-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.cmp-table th { padding: 18px 22px; font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; text-align: center; }
.cmp-table th:first-child { text-align: left; color: var(--slate); font-size: 0.72rem; background: var(--gray-bg); }
.cmp-table th.h-ft { background: var(--navy);  color: var(--white); }
.cmp-table th.h-lg { background: var(--gold);  color: var(--white); }
.cmp-table td { padding: 16px 22px; font-size: 0.855rem; border-bottom: 1px solid var(--gray-light); vertical-align: top; }
.cmp-table td:first-child { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); white-space: nowrap; }
.cmp-table td:nth-child(2) { color: var(--slate); }
.cmp-table td:nth-child(3) { color: var(--navy); font-weight: 500; }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table tr:nth-child(even) td { background: var(--gray-bg); }
.cmp-note { text-align: center; font-family: var(--font-head); font-size: 0.92rem; font-weight: 700; font-style: italic; color: var(--gold); margin-top: 22px; }

@media (max-width: 600px) {
    .cmp-table th, .cmp-table td { padding: 12px 12px; font-size: 0.78rem; }
}

/* Investment table */
.invest-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.invest-table thead th { padding: 16px 22px; background: var(--navy); color: var(--white); font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-align: left; }
.invest-table td { padding: 16px 22px; font-size: 0.875rem; color: var(--slate); border-bottom: 1px solid var(--gray-light); }
.invest-table td:first-child { font-family: var(--font-head); font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.invest-table tr:last-child td { border-bottom: none; }
.invest-table tr:nth-child(even) td { background: var(--gray-bg); }

/* --- FAQ Page ----------------------------------------------- */
.faq-section { padding: var(--pad-sec); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--gray-light);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 26px 40px 26px 0;
    position: relative;
    font-family: var(--font-head);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--navy);
    transition: color var(--trans);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 4px; top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    transition: transform var(--trans);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-answer { padding: 0 40px 26px 0; color: var(--slate); font-size: 0.95rem; line-height: 1.75; }

/* --- Contact Page ----------------------------------------- */
.contact-section { padding: var(--pad-sec); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info h2 { margin-bottom: 10px; }
.contact-info > p { color: var(--slate); margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.c-detail { display: flex; align-items: flex-start; gap: 16px; }
.c-icon {
    width: 44px; height: 44px;
    background: rgba(200,157,75,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.c-icon svg { width: 19px; height: 19px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.c-text h4 { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.c-text a, .c-text p { font-size: 0.95rem; color: var(--slate); margin: 0; }
.c-text a:hover { color: var(--navy); }

/* Calendly embed / placeholder */
.calendly-wrap {
    background: var(--gray-bg);
    border: 2px dashed var(--gray-light);
    border-radius: var(--radius);
    padding: 52px 36px;
    text-align: center;
    margin-bottom: 28px;
}
.calendly-wrap h3 { margin-bottom: 10px; }
.calendly-wrap p  { color: var(--slate); font-size: 0.875rem; margin-bottom: 22px; }

/* Contact form */
.form-group  { margin-bottom: 18px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label        { display: block; font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-bottom: 7px; }
input, select, textarea {
    width: 100%;
    padding: 13px 15px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--slate);
    background: var(--white);
    transition: border-color var(--trans);
    -webkit-appearance: none;
    appearance: none;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--slate); opacity: 0.6; margin-top: 10px; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row     { grid-template-columns: 1fr; }
}

/* --- Utility --------------------------------------------- */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-36 { margin-top: 36px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-36 { margin-bottom: 36px; }
