:root {
    --white: #ffffff;
    --off-white: #f7f6f3;
    --green-deep: #0d1f3c;
    --green-mid: #1a3a6b;
    --green-light: #c9a84c;
    --green-pale: #f0e8d0;
    --green-mist: #faf8f4;
    --gold: #c9a84c;
    --text-dark: #0d1520;
    --text-mid: #3a4a5c;
    --text-light: #7a8899;
    --border: #e0dbd0;
    --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: 90px;
    background: rgba(250,248,244,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 32px rgba(13,31,60,0.10); }

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5525rem;
    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.9775rem;
    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.8625rem;
    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: linear-gradient(135deg, #faf8f4 0%, #f0ece4 50%, #faf8f4 100%);
    position: relative;
    overflow: hidden;
    padding: 118px 5% 60px;
}

/* Noise texture overlay */
#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.hero-bg-circle-1 { width: 800px; height: 800px; top: -250px; right: -180px; }
.hero-bg-circle-2 { width: 500px; height: 500px; bottom: -150px; left: -120px; background: radial-gradient(circle, rgba(13,31,60,0.06) 0%, transparent 70%); }

/* Gold decorative line across top of hero */
#hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #c9a84c 30%, #e8c97a 50%, #c9a84c 70%, transparent 100%);
    z-index: 2;
}

.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.8625rem;
    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(3.45rem, 5.75vw, 5.75rem);
    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.495rem;
    font-weight: 300;
    color: var(--text-mid);
    margin-bottom: 1.8rem;
    letter-spacing: 0.02em;
}

.hero-desc {
    font-size: 1.0925rem;
    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.897rem;
    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.9rem 2.2rem;
    background: var(--green-deep);
    color: white;
    border: none;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.9775rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(13,31,60,0.20);
}
.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,31,60,0.28);
}

.btn-outline {
    padding: 0.9rem 2.2rem;
    background: transparent;
    color: var(--green-deep);
    border: 1.5px solid rgba(13,31,60,0.35);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.9775rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
}
.btn-outline:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,31,60,0.20);
}

/* 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: 5.75rem;
    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: 2.07rem;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1;
}
.stat-card .label {
    font-size: 0.828rem;
    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.828rem;
    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(2.3rem, 4.025vw, 3.45rem);
    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: 5rem;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo {
    width: 100%;
    max-width: 420px;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    display: block;
}

.about-text p {
    font-size: 1.0925rem;
    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: 1.012rem;
}
.detail-label {
    min-width: 120px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.8625rem;
}
.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.265rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 0.4rem;
}
.qual-card p {
    font-size: 0.9775rem;
    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.943rem;
    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: 8px;
    padding: 2.2rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-deep), var(--green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(13,31,60,0.12);
    border-color: rgba(201,168,76,0.3);
}
.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-pale), #ede8d8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    font-size: 1.38rem;
    border: 1px solid rgba(201,168,76,0.2);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3225rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 0.6rem;
}
.service-card p {
    font-size: 1.0005rem;
    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.943rem;
    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.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    padding: 1.8rem 1.5rem;
    text-align: center;
}
.perf-card .year {
    font-size: 0.8625rem;
    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.53rem;
    font-weight: 300;
    color: var(--green-light);
    line-height: 1;
}
.perf-card .return.negative { color: #ff8a80; }
.perf-card .benchmark {
    font-size: 0.8625rem;
    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.897rem;
    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: var(--green-mist); }

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

.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.2rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(13,31,60,0.09);
}
.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--green-pale);
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.035rem;
    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: 1.035rem;
}
.author-info .name {
    font-size: 1.012rem;
    font-weight: 500;
    color: var(--green-deep);
}
.author-info .role {
    font-size: 0.897rem;
    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.725rem;
    font-weight: 300;
    color: var(--green-deep);
    margin-bottom: 1rem;
}
.contact-info p {
    font-size: 1.035rem;
    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: 1.012rem;
    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: 1.035rem;
}
.contact-item-text strong {
    display: block;
    font-size: 0.8625rem;
    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.8625rem;
    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: 1.035rem;
    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.8625rem;
    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.9775rem;
    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%;
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #c9a84c 30%, #e8c97a 50%, #c9a84c 70%, transparent 100%);
}
.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.61rem;
    font-weight: 600;
    color: white;
}
.footer-brand span { color: var(--green-light); }
.footer-brand p {
    font-family: var(--font-body);
    font-size: 0.92rem;
    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.9545rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--green-light); }

.footer-disclaimer {
    font-size: 0.8625rem;
    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.897rem;
    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.828rem;
    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.3225rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: 0.2rem;
}
.timeline-role {
    font-size: 0.9545rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 0.4rem;
}
.timeline-loc {
    font-size: 0.897rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.timeline-desc {
    font-size: 0.9775rem;
    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.782rem;
    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.8625rem;
    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.966rem;
}
.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.897rem;
    white-space: nowrap;
}
.exam-date {
    color: var(--text-light);
    font-size: 0.8625rem;
    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.897rem;
    font-weight: 500;
    border-radius: 999px;
    border: 1px solid rgba(201,168,76,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.8625rem;
    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.943rem;
    color: var(--text-mid);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.disclosure-clean .check { color: var(--green-light); font-size: 1.15rem; flex-shrink: 0; }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 90px; 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: 1.035rem;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── RESPONSIVE ── */
/* Mobile hero image (hidden on desktop) */
.hero-visual-mobile {
    display: none;
}

@media (max-width: 900px) {
    .hero-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { display: none; }

    /* Show mobile hero image */
    .hero-visual-mobile {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 2rem 0 0;
    }
    .hero-photo-frame-mobile {
        width: 100%;
        max-width: 380px;
        height: 420px;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid var(--border);
        position: relative;
        box-shadow: 0 8px 40px rgba(26,61,43,0.13);
    }
    .hero-photo-frame-mobile::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--green-light), var(--green-deep));
        z-index: 1;
    }

    /* About image: stack text first, image second, full-width on mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-image {
        order: -1; /* image above text on mobile */
        width: 100%;
    }
    .about-photo {
        width: 100%;
        max-width: 100%;
        height: 340px;
        object-fit: cover;
        object-position: center top;
        border-radius: 12px;
    }

    .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; }

    .hero-photo-frame-mobile {
        max-width: 100%;
        height: 370px;
    }
    .about-photo {
        height: 300px;
    }
}
