:root {
    --black: #101010;
    --soft-black: #1b1b1b;
    --gold: #c9a24e;
    --dark-gold: #9b772f;
    --light-gold: #f2e5c2;
    --cream: #f8f5ee;
    --white: #ffffff;
    --gray: #696969;
    --light-gray: #eeeeee;
    --border: #ddd6c8;
    --green: #1f6b4f;
    --shadow: 0 18px 50px rgba(16, 16, 16, 0.10);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--black);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* HEADER */

.site-header {
    background: var(--black);
    color: var(--white);
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    min-height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 52px;
    height: 52px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    font-size: 20px;
}

.brand-copy strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

.brand-copy span {
    display: block;
    color: var(--light-gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--gold);
}

.nav-button {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 16px;
    border-radius: 6px;
}

.nav-button:hover {
    background: var(--light-gold);
}

/* HERO */

.hero {
    background:
        radial-gradient(
            circle at 85% 18%,
            rgba(201, 162, 78, 0.26),
            transparent 28%
        ),
        linear-gradient(135deg, #101010, #202020);
    color: var(--white);
    padding: 104px 0 92px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 55px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 17px;
}

.hero h1 {
    max-width: 850px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.06;
    margin-bottom: 23px;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    max-width: 760px;
    color: #e0e0e0;
    font-size: 19px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    min-height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
}

.button-primary:hover {
    background: var(--light-gold);
    border-color: var(--light-gold);
}

.button-secondary {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.button-secondary:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.hero-panel {
    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 78, 0.16),
            rgba(255, 255, 255, 0.04)
        );
    border: 1px solid rgba(201, 162, 78, 0.40);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.hero-panel-inner {
    min-height: 325px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px;
}

.hero-panel-inner span {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 17px;
}

.hero-panel-inner strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.3;
    margin: 4px 0;
}

/* GLOBAL SECTIONS */

.section {
    padding: 84px 0;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 38px;
}

.section-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-heading p {
    color: var(--gray);
    font-size: 17px;
}

/* CHOOSE YOUR PATH */

.path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.path-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
    min-height: 290px;
    padding: 31px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.path-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--gold);
}

.path-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 24px 55px rgba(16, 16, 16, 0.15);
}

.path-label {
    display: inline-block;
    align-self: flex-start;
    background: var(--light-gold);
    color: #5c471a;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.path-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 13px;
}

.path-card p {
    color: var(--gray);
    margin-bottom: 25px;
}

.card-link {
    margin-top: auto;
    color: var(--dark-gold);
    font-weight: 800;
    font-size: 14px;
}

/* FEATURED TOOL */

.featured-section {
    background: var(--white);
}

.featured-tool {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--gold);
    border-radius: 17px;
    padding: 43px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 42px;
    align-items: center;
    box-shadow: var(--shadow);
}

.live-badge {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    border-radius: 999px;
    padding: 6px 11px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 900;
    margin-bottom: 17px;
}

.featured-tool h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
    line-height: 1.16;
    margin-bottom: 18px;
}

.featured-tool ul {
    list-style: none;
    margin-bottom: 27px;
}

.featured-tool li {
    color: #eeeeee;
    position: relative;
    padding-left: 22px;
    margin: 9px 0;
}

.featured-tool li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 900;
}

.featured-result {
    min-height: 285px;
    border: 1px solid rgba(201, 162, 78, 0.40);
    border-radius: 14px;
    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 78, 0.16),
            rgba(255, 255, 255, 0.03)
        );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px;
}

.featured-result span {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
}

.featured-result strong {
    width: 110px;
    height: 110px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    margin: 18px 0;
}

.featured-result p {
    color: #cccccc;
}

/* WHY SECTION */

.dark-section {
    background: var(--black);
    color: var(--white);
}

.dark-section .section-heading p {
    color: #d0d0d0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.benefit-grid article {
    border: 1px solid rgba(201, 162, 78, 0.34);
    border-radius: 13px;
    padding: 29px;
    background: rgba(255, 255, 255, 0.03);
}

.benefit-grid article span {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
}

.benefit-grid article h3 {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    margin: 9px 0;
}

.benefit-grid article p {
    color: #d4d4d4;
}

/* DISCLAIMER */

.disclaimer-box {
    background: #fffaf0;
    border: 1px solid #dccc9f;
    border-left: 6px solid var(--gold);
    border-radius: 11px;
    padding: 30px;
}

.disclaimer-box h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    margin-bottom: 11px;
}

.disclaimer-box p {
    color: #5d574b;
    margin-bottom: 13px;
}

.disclaimer-box a {
    color: var(--dark-gold);
    font-weight: 800;
}

/* FOOTER */

.site-footer {
    background: var(--soft-black);
    color: var(--white);
    padding: 44px 0 26px;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 42px;
    margin-bottom: 29px;
}

.footer-grid h2 {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    margin-bottom: 8px;
}

.footer-grid p,
.footer-links a {
    color: #cccccc;
    font-size: 14px;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    border-top: 1px solid #3b3b3b;
    padding-top: 21px;
    color: #999999;
    font-size: 12px;
}

/* RESPONSIVE */

@media (max-width: 950px) {
    .main-nav {
        display: none;
    }

    .hero-grid,
    .featured-tool,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .path-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 650px;
    }
}

@media (max-width: 640px) {
    .header-inner {
        min-height: 72px;
    }

    .brand-mark {
        width: 45px;
        height: 45px;
        font-size: 17px;
    }

    .brand-copy strong {
        font-size: 17px;
    }

    .brand-copy span {
        font-size: 9px;
    }

    .hero {
        padding: 75px 0 64px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .section {
        padding: 67px 0;
    }

    .hero-panel-inner {
        min-height: 265px;
        padding: 28px;
    }

    .hero-panel-inner strong {
        font-size: 25px;
    }

    .featured-tool {
        padding: 28px;
    }

    .path-card {
        padding: 27px;
    }
}
/* PAGE HERO */

.page-hero {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(201, 162, 78, 0.24),
            transparent 30%
        ),
        linear-gradient(135deg, #101010, #202020);
    color: var(--white);
    padding: 88px 0 78px;
}

.page-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6vw, 72px);
    line-height: 1.08;
    margin-bottom: 19px;
}

.page-hero p {
    max-width: 790px;
    color: #dfdfdf;
    font-size: 18px;
    margin-bottom: 30px;
}

/* CLIENT TOOLS */

.client-tools-alt {
    background: var(--white);
}

.client-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px;
}

.client-tool-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 30px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.client-tools-alt .client-tool-card {
    background: var(--cream);
}

.client-tool-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gold);
}

.client-tool-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 24px 55px rgba(16, 16, 16, 0.15);
}

.live-tool-card {
    border-color: var(--gold);
}

.tool-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.tool-category,
.tool-status {
    display: inline-block;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tool-category {
    background: var(--light-gold);
    color: #5c471a;
}

.tool-status {
    background: #e7e7e7;
    color: #666666;
}

.tool-status-live {
    background: var(--green);
    color: var(--white);
}

.client-tool-icon {
    width: 62px;
    height: 62px;
    background: var(--black);
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    margin-bottom: 21px;
}

.client-tool-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 13px;
}

.client-tool-card > p {
    color: var(--gray);
}

.tool-feature-list {
    list-style: none;
    margin: 20px 0;
}

.tool-feature-list li {
    position: relative;
    padding-left: 22px;
    color: #444444;
    margin: 8px 0;
    font-size: 14px;
}

.tool-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--dark-gold);
    font-weight: 900;
}

.estimate-note {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--light-gray);
    font-size: 12px;
    color: #777777 !important;
}

.tool-button {
    margin-top: 19px;
    width: 100%;
}

.coming-soon-button {
    margin-top: 19px;
    width: 100%;
    min-height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e4e4e4;
    color: #707070;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    cursor: not-allowed;
}

/* CLIENT GUIDANCE */

.client-guidance-panel {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--gold);
    border-radius: 17px;
    padding: 43px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 45px;
    align-items: center;
    box-shadow: var(--shadow);
}

.client-guidance-panel h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 15px;
}

.client-guidance-panel p {
    color: #d8d8d8;
    margin-bottom: 13px;
}

.guidance-actions {
    display: grid;
    gap: 13px;
}

.button-dark-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
}

.button-dark-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.client-disclaimer-section {
    padding-top: 0;
}

/* CLIENT TOOLS RESPONSIVE */

@media (max-width: 950px) {
    .client-tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .client-guidance-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 70px 0 62px;
    }

    .client-tools-grid {
        grid-template-columns: 1fr;
    }

    .client-tool-card {
        min-height: auto;
        padding: 27px;
    }

    .client-guidance-panel {
        padding: 28px;
    }

    .tool-card-top {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* AGENT PRO PAGE */

.agent-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px;
}

.agent-tool-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 30px;
    min-height: 535px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.agent-tool-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--gold);
}

.agent-tool-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 24px 55px rgba(16, 16, 16, 0.15);
}

.agent-tool-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 13px;
}

.agent-tool-card > p {
    color: var(--gray);
}

.agent-benefits-section {
    background: var(--black);
    color: var(--white);
}

.agent-benefits-section .section-heading p {
    color: #d0d0d0;
}

@media (max-width: 950px) {
    .agent-tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .agent-tools-grid {
        grid-template-columns: 1fr;
    }

    .agent-tool-card {
        min-height: auto;
        padding: 27px;
    }
}
/* RESOURCES PAGE */

.resources-alt {
    background: var(--white);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px;
}

.resource-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 30px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.resources-alt .resource-card {
    background: var(--cream);
}

.resource-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--gold);
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 24px 55px rgba(16, 16, 16, 0.15);
}

.resource-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.resource-icon {
    width: 62px;
    height: 62px;
    border: 1px solid var(--gold);
    border-radius: 13px;
    background: var(--black);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    margin-bottom: 21px;
}

.resource-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 13px;
}

.resource-card > p {
    color: var(--gray);
}

.resource-card .coming-soon-button {
    margin-top: auto;
}

@media (max-width: 950px) {
    .resource-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .resource-card {
        min-height: auto;
        padding: 27px;
    }

    .resource-card-top {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* ABOUT PAGE */

.about-page-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 46px;
    align-items: start;
}

.about-main-copy h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.15;
    margin-bottom: 18px;
}

.about-main-copy p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 17px;
}

.about-credentials-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 6px solid var(--gold);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 31px;
}

.about-card-label {
    display: inline-block;
    color: var(--dark-gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.about-credentials-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.2;
    margin-bottom: 7px;
}

.about-credentials-card > p {
    color: var(--gray);
    margin-bottom: 20px;
}

.credential-list {
    display: grid;
    gap: 9px;
    padding: 20px 0;
    margin-bottom: 18px;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.credential-list span {
    color: #444444;
}

.about-credentials-card a {
    display: block;
    color: var(--dark-gold);
    font-weight: 700;
    margin: 8px 0;
}

.about-credentials-card a:hover {
    text-decoration: underline;
}

.about-approach-section {
    background: var(--black);
    color: var(--white);
}

.about-approach-section .section-heading p {
    color: #d1d1d1;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 21px;
}

.approach-card {
    border: 1px solid rgba(201, 162, 78, 0.34);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.03);
    padding: 27px;
}

.approach-card span {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 35px;
}

.approach-card h3 {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    margin: 8px 0;
}

.approach-card p {
    color: #d4d4d4;
}

.service-area-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 17px;
    box-shadow: var(--shadow);
    padding: 43px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 42px;
    align-items: center;
}

.service-area-panel h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(33px, 4vw, 47px);
    line-height: 1.15;
    margin-bottom: 15px;
}

.service-area-panel p {
    color: var(--gray);
    margin-bottom: 13px;
}

.state-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.state-grid article {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--gold);
    border-radius: 12px;
    min-height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.state-grid strong {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
}

.state-grid span {
    font-size: 12px;
    margin-top: 5px;
}

.about-toolkit-section {
    background: var(--white);
}

.about-toolkit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-toolkit-grid article {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 29px;
    box-shadow: var(--shadow);
}

.about-toolkit-grid h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    margin-bottom: 10px;
}

.about-toolkit-grid p {
    color: var(--gray);
    margin-bottom: 18px;
}

.about-toolkit-grid a {
    color: var(--dark-gold);
    font-weight: 800;
}

.about-toolkit-grid a:hover {
    text-decoration: underline;
}

@media (max-width: 950px) {
    .about-page-grid,
    .service-area-panel {
        grid-template-columns: 1fr;
    }

    .approach-grid,
    .about-toolkit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .approach-grid,
    .about-toolkit-grid,
    .state-grid {
        grid-template-columns: 1fr;
    }

    .about-credentials-card,
    .service-area-panel {
        padding: 28px;
    }
}
/* LEGAL PAGES */

.legal-hero {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(201, 162, 78, 0.22),
            transparent 30%
        ),
        linear-gradient(135deg, #101010, #202020);
    color: var(--white);
    padding: 82px 0 72px;
}

.legal-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(45px, 6vw, 70px);
    line-height: 1.08;
    margin-bottom: 18px;
}

.legal-hero p {
    max-width: 800px;
    color: #dddddd;
    font-size: 18px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 0.3fr 0.7fr;
    gap: 45px;
    align-items: start;
}

.legal-navigation {
    position: sticky;
    top: 110px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 5px solid var(--gold);
    border-radius: 13px;
    box-shadow: var(--shadow);
    padding: 25px;
    display: grid;
    gap: 10px;
}

.legal-navigation strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    margin-bottom: 7px;
}

.legal-navigation a {
    color: var(--gray);
    font-size: 14px;
    padding: 7px 0;
    border-bottom: 1px solid var(--light-gray);
}

.legal-navigation a:hover {
    color: var(--dark-gold);
}

.legal-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 42px;
}

.legal-content section {
    scroll-margin-top: 115px;
    padding: 28px 0;
    border-bottom: 1px solid var(--light-gray);
}

.legal-content section:last-of-type {
    border-bottom: none;
}

.legal-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.legal-content p {
    color: var(--gray);
    margin-bottom: 14px;
}

.legal-introduction {
    background: #fffaf0;
    border: 1px solid #dccc9f;
    border-left: 6px solid var(--gold);
    border-radius: 11px;
    padding: 25px;
    margin-bottom: 10px;
}

.legal-introduction h2 {
    margin-bottom: 10px;
}

.legal-introduction p:last-child {
    margin-bottom: 0;
}

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 23px;
}

.legal-review-notice {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 11px;
    padding: 23px;
    margin-top: 28px;
}

.legal-review-notice strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    margin-bottom: 8px;
}

.legal-review-notice p {
    margin-bottom: 0;
}

@media (max-width: 950px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-navigation {
        position: static;
    }
}

@media (max-width: 640px) {
    .legal-hero {
        padding: 68px 0 58px;
    }

    .legal-content {
        padding: 27px;
    }

    .legal-actions {
        flex-direction: column;
    }
}
/* PRIVACY POLICY */

.legal-effective-date {
    margin-top: 15px;
    color: var(--light-gold) !important;
    font-size: 14px !important;
    font-weight: 700;
}

.legal-list {
    margin: 15px 0 15px 22px;
    color: var(--gray);
}

.legal-list li {
    margin: 8px 0;
    padding-left: 5px;
}

.privacy-contact-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-left: 5px solid var(--gold);
    border-radius: 10px;
    padding: 21px;
    margin: 20px 0;
    display: grid;
    gap: 6px;
}

.privacy-contact-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

.privacy-contact-card span {
    color: var(--gray);
}