:root {
    --white: #ffffff;
    --off-white: #f8faf8;
    --green-deep: #1a3d2b;
    --green-mid: #2d6a4f;
    --green-light: #52b788;
    --green-pale: #d8f3dc;
    --green-mist: #f0faf2;
    --gold: #c9a84c;
    --text-dark: #0f1f16;
    --text-mid: #3a5243;
    --text-light: #7a9485;
    --border: #ddeee3;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(26,61,43,0.08); }

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--green-deep);
    letter-spacing: 0.02em;
    text-decoration: none;
}
.nav-logo span { color: var(--green-light); }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-light); }

.nav-crd {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
}
.nav-crd strong { color: var(--green-mid); }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-deep);
    transition: all 0.3s;
}

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--green-mist);
    position: relative;
    overflow: hidden;
    padding: 100px 5% 60px;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(82,183,136,0.12) 0%, transparent 70%);
}
.hero-bg-circle-1 { width: 700px; height: 700px; top: -200px; right: -150px; }
.hero-bg-circle-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--green-light);
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--green-deep);
    margin-bottom: 1rem;
}
.hero-name em {
    font-style: italic;
    font-weight: 300;
    color: var(--green-mid);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-mid);
    margin-bottom: 1.8rem;
    letter-spacing: 0.02em;
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    max-width: 460px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.78rem;
    color: var(--text-mid);
    background: white;
    font-weight: 500;
}
.badge .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green-light);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    padding: 0.85rem 2rem;
    background: var(--green-deep);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }

.btn-outline {
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--green-deep);
    border: 1.5px solid var(--green-deep);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-outline:hover {
    background: var(--green-deep);
    color: white;
    transform: translateY(-1px);
}

/* Hero visual side */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-photo-frame {
    width: 320px;
    height: 380px;
    background: linear-gradient(145deg, var(--green-pale), var(--green-mist));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.hero-photo-frame::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-light), var(--green-deep));
}
.hero-photo-initials {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
    color: var(--green-mid);
    opacity: 0.4;
    letter-spacing: 0.1em;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
}
.stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    text-align: center;
}
.stat-card .number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1;
}
.stat-card .label {
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

/* ── SECTIONS ── */
section { padding: 100px 5%; }

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-light);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--green-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--green-deep);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--green-mid); }

/* ── ABOUT ── */
#about { background: white; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.about-text p {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-bottom: 1.2rem;
    line-height: 1.85;
}

.about-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.detail-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.88rem;
}
.detail-label {
    min-width: 120px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.75rem;
}
.detail-value { color: var(--text-dark); }
.detail-value a {
    color: var(--green-mid);
    text-decoration: none;
}
.detail-value a:hover { text-decoration: underline; }

.qual-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.qual-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 0.4rem;
}
.qual-card p {
    font-size: 0.85rem;
    color: var(--text-mid);
}

.compliance-note {
    margin-top: 2rem;
    padding: 1.2rem 1.5rem;
    background: var(--green-mist);
    border-left: 3px solid var(--green-light);
    border-radius: 0 6px 6px 0;
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.7;
}
.compliance-note strong { color: var(--green-deep); }

/* ── SERVICES ── */
#services { background: var(--off-white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26,61,43,0.1);
}

.service-icon {
    width: 44px;
    height: 44px;
    background: var(--green-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 0.6rem;
}
.service-card p {
    font-size: 0.87rem;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ── PERFORMANCE ── */
#performance { background: var(--green-deep); color: white; }

#performance .section-label { color: var(--green-light); }
#performance .section-label::before { background: var(--green-light); }
#performance .section-title { color: white; }
#performance .section-title em { color: var(--green-light); }

.perf-disclaimer {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
    margin-bottom: 3rem;
    max-width: 640px;
}

.perf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.perf-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 1.8rem 1.5rem;
    text-align: center;
}
.perf-card .year {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
}
.perf-card .return {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--green-light);
    line-height: 1;
}
.perf-card .return.negative { color: #ff8a80; }
.perf-card .benchmark {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.4rem;
}
.perf-card .benchmark span { color: rgba(255,255,255,0.65); }

.perf-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

/* ── TESTIMONIALS ── */
#testimonials { background: white; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--green-pale);
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--green-mid);
    font-size: 0.9rem;
}
.author-info .name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--green-deep);
}
.author-info .role {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ── CONTACT ── */
#contact { background: var(--off-white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
    margin-top: 3rem;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--green-deep);
    margin-bottom: 1rem;
}
.contact-info p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    color: var(--text-mid);
}
.contact-item-icon {
    width: 32px;
    height: 32px;
    background: var(--green-pale);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}
.contact-item-text strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.contact-form {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-light);
    background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-legal {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

#form-success, #form-error {
    display: none;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-top: 1rem;
}
#form-success { background: var(--green-pale); color: var(--green-deep); }
#form-error { background: #fce8e8; color: #8b1a1a; }

/* ── FOOTER ── */
footer {
    background: var(--green-deep);
    color: rgba(255,255,255,0.6);
    padding: 3rem 5%;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
}
.footer-brand span { color: var(--green-light); }
.footer-brand p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.3rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.83rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--green-light); }

.footer-disclaimer {
    font-size: 0.75rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.35);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    font-size: 0.78rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── EXPERIENCE & HISTORY ── */
#experience { background: white; }

.exp-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
    align-items: start;
}

/* Timeline */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
    content: '';
    position: absolute;
    left: 0; top: 8px; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--green-light), var(--green-pale));
}

.timeline-item {
    position: relative;
    margin-bottom: 2.4rem;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -2.45rem;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green-light);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--green-light);
}
.timeline-dot.current {
    background: var(--green-deep);
    box-shadow: 0 0 0 2px var(--green-deep);
}

.timeline-period {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 0.3rem;
}
.timeline-firm {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 0.2rem;
}
.timeline-role {
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 0.4rem;
}
.timeline-loc {
    font-size: 0.78rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.timeline-desc {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-top: 0.5rem;
}
.timeline-current-badge {
    display: inline-block;
    margin-left: 0.6rem;
    padding: 0.15rem 0.6rem;
    background: var(--green-pale);
    color: var(--green-deep);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    vertical-align: middle;
}

/* Exams / Qualifications panel */
.exams-panel { display: flex; flex-direction: column; gap: 1.5rem; }

.exam-group {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.exam-group-header {
    background: var(--green-deep);
    color: white;
    padding: 0.8rem 1.3rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.exam-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 1.3rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.84rem;
}
.exam-row:last-child { border-bottom: none; }
.exam-name { color: var(--text-dark); font-weight: 400; flex: 1; }
.exam-series {
    font-weight: 600;
    color: var(--green-mid);
    font-size: 0.78rem;
    white-space: nowrap;
}
.exam-date {
    color: var(--text-light);
    font-size: 0.75rem;
    white-space: nowrap;
}

.license-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}
.license-chip {
    padding: 0.35rem 0.9rem;
    background: var(--green-pale);
    color: var(--green-deep);
    font-size: 0.78rem;
    font-weight: 500;
    border-radius: 999px;
    border: 1px solid rgba(82,183,136,0.3);
}

.states-box {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.2rem 1.3rem;
}
.states-box h4 {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}
.disclosure-clean {
    margin-top: 1rem;
    padding: 1rem 1.3rem;
    background: var(--green-mist);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.82rem;
    color: var(--text-mid);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.disclosure-clean .check { color: var(--green-light); font-size: 1rem; flex-shrink: 0; }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 5%;
    z-index: 99;
    flex-direction: column;
    gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .perf-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .nav-links, .nav-crd { display: none; }
    .nav-hamburger { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .exp-layout { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .perf-grid { grid-template-columns: 1fr 1fr; }
}
