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

:root {
    --lfc-deep-forest: #0e2b23;
    --lfc-moss-green: #1e4e3f;
    --lfc-forest-panel: #153a31;
    --lfc-gold: #c5a76d;
    --lfc-soft-gold: #e3c77d;
    --lfc-paper: #f4f0e7;
    --lfc-cream: #fbf8ef;
    --lfc-ink: #102a24;
    --lfc-muted: #435d54;
    --lfc-line: rgba(16, 42, 36, 0.14);
    --lfc-gold-line: rgba(227, 199, 125, 0.24);
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: var(--lfc-paper);
    color: var(--lfc-ink);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    top: -44px;
    left: 0;
    z-index: 1001;
    padding: 8px 16px;
    background: var(--lfc-gold);
    color: var(--lfc-deep-forest);
    font-weight: 800;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 167, 109, 0.2);
    background: rgba(14, 43, 35, 0.95);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    max-width: 1400px;
    min-height: 86px;
    margin: 0 auto;
    padding: 18px 40px;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-img {
    width: auto;
    height: 46px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: #e8ece9;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0;
    text-decoration: none;
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--lfc-gold);
}

.nav-links .lfc-nav-cta {
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid var(--lfc-gold);
    background: var(--lfc-gold);
    color: #0c241f;
}

.nav-links .lfc-nav-cta:hover,
.nav-links .lfc-nav-cta:focus-visible {
    border-color: var(--lfc-soft-gold);
    background: var(--lfc-soft-gold);
    color: #0c241f;
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    color: var(--lfc-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

.leaf-family-capital-page main {
    overflow: hidden;
}

.section-label {
    color: #9e7735;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.lfc-hero {
    min-height: 690px;
    display: grid;
    align-items: center;
    padding: 142px 40px 68px;
    background: linear-gradient(135deg, #0b271f 0%, #113f34 58%, #1d5143 100%);
    color: var(--lfc-cream);
}

.lfc-hero--compact {
    min-height: 610px;
}

.lfc-shell,
.lfc-hero__inner,
.lfc-proof-strip__inner,
.lfc-section__header,
.lfc-card-grid,
.lfc-table-shell,
.lfc-process-grid,
.lfc-final-cta__inner,
.lfc-split,
.lfc-wide-list,
.lfc-review-grid,
.lfc-topic-grid,
.lfc-statement,
.lfc-intro-steps,
.lfc-faq-list {
    width: min(1160px, 100%);
    margin: 0 auto;
}

.lfc-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(270px, 0.28fr);
    gap: 64px;
    align-items: center;
}

.lfc-hero__copy {
    max-width: 790px;
    animation: lfcFadeUp 500ms ease both;
}

.lfc-hero h1,
.lfc-section h2,
.lfc-final-cta h2,
.lfc-statement h2,
.lfc-panel h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: 0;
}

.lfc-hero h1 {
    max-width: 820px;
    color: #fff;
    font-size: 5.4rem;
    line-height: 0.98;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.lfc-hero__text {
    display: grid;
    gap: 9px;
    max-width: 720px;
    margin-top: 22px;
}

.lfc-hero__text p,
.lfc-final-cta p,
.lfc-statement p {
    margin: 0;
    color: rgba(251, 248, 239, 0.9);
    font-size: 1.08rem;
    line-height: 1.5;
}

.lfc-hero__actions,
.lfc-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lfc-hero__actions {
    margin-top: 26px;
}

.lfc-primary-button,
.lfc-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border: 1px solid var(--lfc-gold);
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.lfc-primary-button {
    background: var(--lfc-gold);
    color: #0c241f;
}

.lfc-secondary-button {
    border-color: rgba(251, 248, 239, 0.46);
    background: transparent;
    color: var(--lfc-cream);
}

.lfc-primary-button:hover,
.lfc-primary-button:focus-visible {
    border-color: var(--lfc-soft-gold);
    background: var(--lfc-soft-gold);
    color: #0c241f;
    transform: translateY(-1px);
}

.lfc-secondary-button:hover,
.lfc-secondary-button:focus-visible {
    border-color: var(--lfc-soft-gold);
    background: rgba(251, 248, 239, 0.08);
    color: #fff;
    transform: translateY(-1px);
}

.lfc-primary-button:focus-visible,
.lfc-secondary-button:focus-visible,
.nav-links a:focus-visible,
.menu-toggle:focus-visible {
    outline: 3px solid rgba(227, 199, 125, 0.72);
    outline-offset: 3px;
}

.lfc-confidential-note {
    margin-top: 18px;
    color: rgba(251, 248, 239, 0.8);
    font-size: 0.94rem;
    font-weight: 700;
}

.lfc-hero__portrait {
    display: grid;
    gap: 14px;
    align-self: end;
    max-width: 280px;
    justify-self: end;
    animation: lfcFadeUp 560ms ease 80ms both;
}

.lfc-hero__portrait img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(251, 248, 239, 0.28);
    object-fit: cover;
    object-position: 50% 30%;
}

.lfc-hero__portrait div {
    display: grid;
    gap: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(227, 199, 125, 0.42);
}

.lfc-hero__portrait span {
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.85rem;
    line-height: 1.05;
}

.lfc-hero__portrait strong {
    color: rgba(251, 248, 239, 0.78);
    font-size: 0.92rem;
    line-height: 1.35;
}

.lfc-proof-strip {
    padding: 0 40px;
    background: var(--lfc-ink);
    color: var(--lfc-cream);
}

.lfc-proof-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-left: 1px solid rgba(227, 199, 125, 0.18);
}

.lfc-proof-strip__inner div {
    display: grid;
    align-content: center;
    min-height: 136px;
    padding: 24px;
    border-right: 1px solid rgba(227, 199, 125, 0.18);
}

.lfc-proof-strip__inner strong {
    color: var(--lfc-soft-gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.05rem;
    line-height: 1.05;
}

.lfc-proof-strip__inner span {
    margin-top: 8px;
    color: rgba(251, 248, 239, 0.76);
    font-size: 0.92rem;
    line-height: 1.35;
}

.lfc-section {
    padding: 104px 40px;
}

.lfc-section--light {
    background: var(--lfc-paper);
}

.lfc-section--cream {
    background: var(--lfc-cream);
}

.lfc-section--table,
.lfc-section--advisor {
    background: #e7dfd0;
}

.lfc-section--process {
    background: var(--lfc-forest-panel);
    color: var(--lfc-cream);
}

.lfc-section__header {
    display: grid;
    gap: 12px;
    margin-bottom: 44px;
}

.lfc-section__header--center {
    justify-items: center;
    text-align: center;
}

.lfc-section__header h2,
.lfc-final-cta h2,
.lfc-statement h2,
.lfc-panel h2 {
    max-width: 850px;
    color: inherit;
    font-size: 4.15rem;
    line-height: 1.02;
}

.lfc-panel h2 {
    margin-bottom: 24px;
}

.lfc-section__header p,
.lfc-panel p,
.lfc-wide-list p,
.lfc-intro-steps p {
    max-width: 760px;
    color: var(--lfc-muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

.lfc-card-grid,
.lfc-question-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.lfc-question-grid {
    width: min(980px, 100%);
    margin: 0 auto;
}

.lfc-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(1120px, 100%);
    margin: 0 auto;
}

.lfc-values-grid article {
    position: relative;
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 22px;
    min-height: 204px;
    min-width: 0;
    padding: 46px 28px;
    text-align: center;
    transition: background-color 180ms ease;
}

.lfc-values-grid article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: var(--lfc-gold);
    opacity: 0.38;
}

.lfc-values-grid article:hover {
    background-color: rgba(227, 199, 125, 0.1);
}

.lfc-leaf-flourish {
    width: 42px;
    height: 42px;
}

.lfc-leaf-flourish svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #9e7735;
    stroke-width: 1.5;
    opacity: 0.85;
}

.lfc-value-text {
    margin: 0;
    color: var(--lfc-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.18;
}

.lfc-card-grid article,
.lfc-question-grid article,
.lfc-process-grid article,
.lfc-wide-list article,
.lfc-intro-steps article {
    display: grid;
    gap: 12px;
    min-width: 0;
    border: 1px solid var(--lfc-line);
    background: #fffaf0;
}

.lfc-card-grid article,
.lfc-question-grid article {
    min-height: 188px;
    padding: 24px;
}

.lfc-card-grid article span,
.lfc-process-grid article span,
.lfc-intro-steps article span,
.lfc-question-grid article span {
    color: #9e7735;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    line-height: 1;
}

.lfc-card-grid h3,
.lfc-process-grid h3,
.lfc-intro-steps h3,
.lfc-question-grid h3 {
    margin: 0;
    color: var(--lfc-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.75rem;
    line-height: 1.12;
}

.lfc-card-copy,
.lfc-process-copy,
.lfc-question-grid p,
.lfc-intro-steps p {
    margin: 0;
    color: var(--lfc-muted);
    font-size: 0.98rem;
    line-height: 1.5;
}

.lfc-question-grid p {
    color: var(--lfc-ink);
    font-weight: 800;
}

.lfc-table-shell {
    width: min(980px, 100%);
    overflow-x: auto;
    border: 1px solid var(--lfc-line);
    background: #fffaf0;
}

.lfc-simple-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    font-size: 1rem;
}

.lfc-simple-table th,
.lfc-simple-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--lfc-line);
    text-align: left;
    vertical-align: top;
}

.lfc-simple-table th {
    color: var(--lfc-ink);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lfc-simple-table td:first-child {
    color: var(--lfc-ink);
    font-weight: 800;
}

.lfc-simple-table td:last-child {
    color: #9e7735;
    font-weight: 800;
}

.lfc-simple-table tr:last-child td {
    border-bottom: 0;
}

.lfc-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.lfc-panel {
    min-width: 0;
    padding: 34px;
    border: 1px solid var(--lfc-line);
    background: #fffaf0;
}

.lfc-panel--dark {
    border-color: rgba(227, 199, 125, 0.22);
    background: var(--lfc-forest-panel);
    color: var(--lfc-cream);
}

.lfc-panel--dark .section-label {
    color: var(--lfc-soft-gold);
}

.lfc-panel--dark p {
    color: rgba(251, 248, 239, 0.84);
}

.lfc-boundary-grid,
.lfc-review-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.lfc-boundary-grid span,
.lfc-review-items span {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--lfc-line);
    color: var(--lfc-ink);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.25;
}

.lfc-review-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 56px;
    align-items: start;
}

.lfc-review-grid .section-label {
    color: var(--lfc-soft-gold);
}

.lfc-review-grid h2 {
    color: var(--lfc-cream);
}

.lfc-review-grid p {
    margin-top: 18px;
    color: rgba(251, 248, 239, 0.84);
    font-size: 1.03rem;
    line-height: 1.68;
}

.lfc-review-grid .lfc-primary-button {
    margin-top: 28px;
}

.lfc-review-items {
    margin-top: 0;
}

.lfc-review-items span {
    border-color: rgba(227, 199, 125, 0.24);
    color: rgba(251, 248, 239, 0.92);
}

.lfc-wide-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.lfc-wide-list article {
    min-height: 132px;
    padding: 24px;
}

.lfc-wide-list h3 {
    margin: 0;
    color: var(--lfc-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.55rem;
    line-height: 1.15;
}

.lfc-wide-list p {
    margin: 0;
}

.lfc-statement {
    display: grid;
    gap: 18px;
    justify-items: start;
}

.lfc-statement p {
    color: rgba(251, 248, 239, 0.86);
}

.lfc-section--table .lfc-statement p {
    color: var(--lfc-muted);
}

.lfc-faq-list {
    width: min(920px, 100%);
}

.lfc-faq-item {
    padding: 34px 0;
    border-top: 1px solid var(--lfc-line);
    border-bottom: 1px solid var(--lfc-line);
}

.lfc-faq-item h3 {
    margin: 0 0 14px;
    color: var(--lfc-ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
    line-height: 1.12;
}

.lfc-faq-item p {
    max-width: 860px;
    margin: 0;
    color: var(--lfc-muted);
    font-size: 1.03rem;
    line-height: 1.75;
}

.lfc-topic-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.lfc-topic-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 12px;
    border: 1px solid rgba(227, 199, 125, 0.34);
    color: rgba(251, 248, 239, 0.9);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
}

.lfc-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.lfc-intro-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.lfc-process-grid article,
.lfc-intro-steps article {
    min-height: 190px;
    padding: 24px;
}

.lfc-process-grid article {
    border-color: rgba(227, 199, 125, 0.2);
    background: rgba(251, 248, 239, 0.94);
}

.lfc-rule-list {
    display: grid;
    gap: 1px;
    width: min(980px, 100%);
    margin: 0 auto;
    border-top: 1px solid rgba(16, 42, 36, 0.16);
}

.lfc-rule-list li {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(16, 42, 36, 0.16);
    background: rgba(255, 250, 240, 0.72);
    color: var(--lfc-ink);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.55;
    list-style: none;
}

.lfc-final-cta {
    padding: 104px 40px;
    background:
        linear-gradient(135deg, rgba(13, 52, 43, 0.96), rgba(16, 42, 36, 0.98)),
        var(--lfc-ink);
    color: var(--lfc-cream);
}

.lfc-final-cta__inner {
    display: grid;
    justify-items: start;
    gap: 22px;
}

.lfc-final-cta p {
    max-width: 760px;
}

footer {
    padding: 60px 40px;
    border-top: 1px solid rgba(197, 167, 109, 0.3);
    background: var(--lfc-moss-green);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-text {
    margin-bottom: 28px;
    color: #e8ece9;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.footer-links a {
    color: var(--lfc-gold);
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--lfc-soft-gold);
    text-decoration: underline;
}

@keyframes lfcFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .lfc-hero h1 {
        font-size: 4.25rem;
    }

    .lfc-section__header h2,
    .lfc-final-cta h2,
    .lfc-statement h2,
    .lfc-panel h2 {
        font-size: 3.35rem;
    }

    .lfc-hero__inner,
    .lfc-card-grid,
    .lfc-question-grid,
    .lfc-values-grid,
    .lfc-process-grid,
    .lfc-intro-steps,
    .lfc-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lfc-hero__copy,
    .lfc-review-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .lfc-hero__portrait {
        justify-self: start;
    }

    .lfc-proof-strip__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lfc-topic-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lfc-values-grid article::after {
        display: none;
    }

    .lfc-values-grid article:nth-child(odd)::after {
        display: block;
    }

    .lfc-values-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--lfc-line);
    }
}

@media (max-width: 760px) {
    nav {
        min-height: 69px;
        padding: 16px 24px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 69px;
        left: -100%;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 34px 24px;
        gap: 22px;
        border-bottom: 1px solid rgba(197, 167, 109, 0.2);
        background: rgba(14, 43, 35, 0.98);
        transition: left 180ms ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.08rem;
    }

    .nav-links .lfc-nav-cta {
        display: inline-flex;
        justify-content: center;
        width: 100%;
    }

    .logo-img {
        height: 36px;
    }

    .lfc-hero,
    .lfc-section,
    .lfc-final-cta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .lfc-hero {
        min-height: auto;
        padding-top: 112px;
        padding-bottom: 54px;
    }

    .lfc-hero__inner,
    .lfc-card-grid,
    .lfc-question-grid,
    .lfc-values-grid,
    .lfc-proof-strip__inner,
    .lfc-process-grid,
    .lfc-intro-steps,
    .lfc-split,
    .lfc-review-grid,
    .lfc-wide-list {
        grid-template-columns: 1fr;
    }

    .lfc-hero h1 {
        font-size: 3.2rem;
    }

    .lfc-section__header h2,
    .lfc-final-cta h2,
    .lfc-statement h2,
    .lfc-panel h2 {
        font-size: 2.65rem;
    }

    .lfc-hero__text p,
    .lfc-final-cta p,
    .lfc-statement p {
        font-size: 1rem;
    }

    .lfc-hero__portrait {
        max-width: 240px;
    }

    .lfc-proof-strip {
        padding: 0 24px;
    }

    .lfc-proof-strip__inner {
        border-left: 0;
    }

    .lfc-proof-strip__inner div {
        min-height: 112px;
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(227, 199, 125, 0.18);
    }

    .lfc-values-grid {
        border-left: 0;
    }

    .lfc-values-grid article {
        min-height: auto;
        padding: 32px 20px;
        border-bottom: 1px solid var(--lfc-line);
    }

    .lfc-values-grid article::after {
        display: none !important;
    }

    .lfc-values-grid article:last-child {
        border-bottom: 0;
    }

    .lfc-panel {
        padding: 26px;
    }

    .lfc-boundary-grid,
    .lfc-review-items,
    .lfc-topic-grid {
        grid-template-columns: 1fr;
    }

    .lfc-simple-table {
        min-width: 560px;
    }

    .lfc-primary-button,
    .lfc-secondary-button {
        width: 100%;
    }

    footer {
        padding: 50px 24px;
    }
}

@media (max-width: 420px) {
    .lfc-hero h1 {
        font-size: 2.72rem;
    }

    .lfc-section__header h2,
    .lfc-final-cta h2,
    .lfc-statement h2,
    .lfc-panel h2 {
        font-size: 2.25rem;
    }
}
