:root {
    --ink: #101820;
    --navy: #12263a;
    --navy-light: #1d3b56;
    --gold: #b99a56;
    --gold-light: #d8c18b;
    --paper: #f8f6f1;
    --white: #ffffff;
    --muted: #65717d;
    --line: rgba(16, 24, 32, 0.14);
    --shadow: 0 22px 60px rgba(12, 25, 38, 0.12);
    --radius: 4px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.container.narrow {
    width: min(calc(100% - 40px), 840px);
}

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-header.compact {
    position: relative;
    color: var(--ink);
    border-bottom-color: var(--line);
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand img {
    display: block;
    width: auto;
    max-width: 210px;
    max-height: 60px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav > a:not(.button) {
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 650;
}

.menu-toggle {
    display: none;
    border: 1px solid currentColor;
    color: inherit;
    background: transparent;
    padding: 9px 13px;
    font: inherit;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 24px;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    background: var(--gold);
    color: #101820;
    text-decoration: none;
    font-weight: 750;
    cursor: pointer;
}

.button:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.button-small {
    min-height: 42px;
    padding: 9px 17px;
    font-size: 0.88rem;
}

.hero {
    position: relative;
    min-height: 790px;
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(10, 25, 39, 0.98), rgba(18, 50, 74, 0.82)),
        url("/assets/wisor1.png") center right / contain no-repeat,
        var(--navy);
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -45%;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(185, 154, 86, 0.26);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.65fr);
    align-items: center;
    gap: 80px;
    min-height: 790px;
    padding-top: 125px;
    padding-bottom: 70px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1,
.section h2,
.page-hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
    font-weight: 500;
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(3rem, 6.5vw, 5.7rem);
}

.hero-lead {
    max-width: 690px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 38px;
}

.text-link {
    color: var(--white);
    font-weight: 700;
    text-underline-offset: 5px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
    margin-top: 42px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.hero-points span::before {
    content: "◆";
    margin-right: 9px;
    color: var(--gold);
    font-size: 0.6rem;
}

.hero-panel {
    padding: 34px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.panel-label {
    margin: 0;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-panel h2 {
    margin: 12px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1.18;
}

.panel-contact {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid var(--line);
    text-decoration: none;
}

.panel-contact strong {
    color: var(--muted);
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.trust-strip {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
    padding: 30px 38px;
    border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
    padding-left: 0;
}

.trust-grid > div:last-child {
    border-right: 0;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
}

.trust-grid span {
    color: var(--muted);
    font-size: 0.9rem;
}

.section {
    padding: 105px 0;
}

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

.two-column {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
}

.section h2 {
    font-size: clamp(2.35rem, 4vw, 4rem);
}

.legal-content p:first-child {
    margin-top: 0;
}

.legal-content h2,
.legal-content h3 {
    margin-top: 1.8em;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.2;
}

.legal-content a {
    color: var(--navy-light);
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 48px;
}

.section-heading > p {
    margin: 0;
    color: var(--muted);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.practice-card {
    display: flex;
    flex-direction: column;
    min-height: 315px;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 8px 26px rgba(12, 25, 38, 0.04);
}

.practice-icon {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.4rem;
}

.practice-card h3 {
    margin: 18px 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    line-height: 1.2;
}

.practice-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.practice-card a {
    margin-top: auto;
    color: var(--navy);
    font-weight: 800;
    text-decoration: none;
}

.approach-section {
    background: var(--navy);
    color: var(--white);
}

.section-heading.light p {
    color: rgba(255, 255, 255, 0.72);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.steps article {
    padding: 35px 28px;
    background: var(--navy);
}

.steps span {
    color: var(--gold);
    font-weight: 800;
}

.steps h3 {
    margin: 40px 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
}

.steps p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.93rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
}

.contact-details {
    display: grid;
    gap: 22px;
    margin-top: 38px;
}

.contact-details div {
    display: flex;
    flex-direction: column;
}

.contact-details strong {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.contact-form {
    padding: 38px;
    background: var(--paper);
    border: 1px solid var(--line);
}

.contact-form label {
    display: grid;
    gap: 7px;
    margin-bottom: 18px;
    font-size: 0.88rem;
    font-weight: 750;
}

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

input,
textarea {
    width: 100%;
    border: 1px solid rgba(16, 24, 32, 0.24);
    border-radius: 2px;
    background: var(--white);
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: 2px solid var(--gold-light);
    border-color: var(--gold);
}

.consent {
    grid-template-columns: auto 1fr !important;
    align-items: start;
    font-weight: 500 !important;
}

.consent input {
    width: auto;
    margin-top: 6px;
}

.honeypot {
    position: absolute !important;
    left: -99999px !important;
}

.notice {
    padding: 13px 15px;
    margin-bottom: 20px;
}

.notice.success {
    background: #e8f5eb;
    border: 1px solid #86b58f;
}

.notice.error {
    background: #fbecec;
    border: 1px solid #cc8a8a;
}

.page-hero {
    padding: 100px 0;
    color: var(--white);
    background: var(--navy);
}

.page-hero h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.page-cta {
    margin-top: 65px;
    padding: 34px;
    background: var(--paper);
    border-left: 4px solid var(--gold);
}

.page-cta h2 {
    font-size: 2rem;
}

.site-footer {
    padding: 65px 0 28px;
    background: #09131d;
    color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-grid strong {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}

.footer-grid > div:last-child {
    display: flex;
    gap: 24px;
}

.footer-grid a {
    color: var(--white);
}

.footer-bottom {
    padding-top: 35px;
    margin-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.disclaimer {
    max-width: 950px;
    font-size: 0.78rem;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 92px;
        left: 20px;
        right: 20px;
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
        color: var(--ink);
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .hero-grid,
    .two-column,
    .section-heading,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 45px;
    }

    .two-column,
    .contact-grid {
        gap: 45px;
    }

    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    body {
        font-size: 16px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand span {
        font-size: 1rem;
    }

    .brand img {
        max-width: 145px;
        max-height: 50px;
    }

    .hero,
    .hero-grid {
        min-height: auto;
    }

    .hero-grid {
        padding-top: 145px;
        padding-bottom: 65px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-panel {
        padding: 25px;
    }

    .trust-grid,
    .practice-grid,
    .steps,
    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-grid > div {
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 76px 0;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .footer-grid,
    .footer-grid > div:last-child {
        flex-direction: column;
    }

    .footer-grid > div:last-child {
        gap: 10px;
    }
}
