:root {
    --navy: #0f172a;
    --charcoal: #1e293b;
    --off-white: #f8fafc;
    --grey: #64748b;
    --gold: #b59a5b;
    --line: #d8dee7;
    --white: #ffffff;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--off-white);
    color: var(--charcoal);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -5rem;
    z-index: 20;
    background: var(--gold);
    color: var(--navy);
    padding: .65rem .9rem;
    font-weight: 700;
}

.skip-link:focus {
    top: 1rem;
}

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

.narrow {
    max-width: 860px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: white;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

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

.brand-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    padding: .7rem .85rem;
    background: var(--white);
    text-decoration: none;
}

.brand-logo img {
    display: block;
    width: 176px;
    height: auto;
}

.footer-logo img {
    display: block;
    width: 184px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: .35rem 1.1rem;
    color: var(--charcoal);
    font-size: .93rem;
    font-weight: 600;
}

.site-nav a {
    text-decoration: none;
    padding: .4rem 0;
    border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--navy);
    border-color: var(--gold);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: .65rem;
    min-height: 44px;
    padding: .55rem .7rem;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle-lines {
    position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-toggle-lines::before {
    transform: translateY(-7px);
}

.menu-toggle-lines::after {
    transform: translateY(7px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
    transform: rotate(-45deg);
}

.hero,
.page-hero {
    background: var(--navy);
    color: var(--white);
}

.hero {
    min-height: 620px;
    display: flex;
    align-items: flex-start;
    padding: 4.25rem 0 7rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
    gap: 5.5rem;
    align-items: start;
}

.hero-copy {
    max-width: 790px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 1.1rem;
    color: var(--gold);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--navy);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    line-height: 1.05;
}

.hero h1,
.page-hero h1,
.section-dark h2,
.section-dark h3,
.cta-section h2 {
    color: var(--white);
}

h1 {
    font-size: clamp(3.3rem, 8vw, 4.9rem);
    max-width: 850px;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4.1rem);
}

h3 {
    font-size: 1.65rem;
}

.hero-lede,
.page-hero p,
.cta-section p {
    color: #dbe3ee;
    font-size: 1.22rem;
    line-height: 1.65;
}

.hero-lede {
    max-width: 720px;
    margin: 1.6rem 0 0;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 2.4rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .78rem 1.15rem;
    border: 1px solid var(--gold);
    border-radius: 3px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.button-primary {
    background: var(--gold);
    color: var(--navy);
}

.button-primary:hover {
    background: #c5aa6d;
}

.button-secondary {
    color: var(--white);
}

.button-secondary:hover {
    background: rgba(181, 154, 91, .12);
}

.hero-panel,
.contact-card {
    border: 1px solid rgba(181, 154, 91, .38);
    background: rgba(255, 255, 255, .045);
    padding: 2rem;
}

.hero-panel {
    margin-top: 5.75rem;
}

.hero-panel p {
    margin: 1.5rem 0 0;
    color: #e7edf5;
    font-size: 1.05rem;
}

.hero-logo-mark {
    display: block;
    width: 72px;
    height: 72px;
    margin-bottom: 1.5rem;
}

.panel-rule {
    width: 72px;
    height: 2px;
    background: var(--gold);
}

.image-placeholder {
    position: relative;
    display: grid;
    min-height: 320px;
    place-items: center;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(181, 154, 91, .45);
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .08) 25%, transparent 25%) 0 0 / 24px 24px,
        linear-gradient(135deg, transparent 75%, rgba(15, 23, 42, .08) 75%) 0 0 / 24px 24px,
        #e9edf3;
}

.image-placeholder::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(15, 23, 42, .12);
}

.image-placeholder span {
    position: relative;
    max-width: 280px;
    padding: 1rem;
    color: var(--charcoal);
    background: rgba(248, 250, 252, .92);
    border-left: 3px solid var(--gold);
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.45;
}

.image-placeholder-dark {
    background:
        linear-gradient(135deg, rgba(248, 250, 252, .09) 25%, transparent 25%) 0 0 / 24px 24px,
        linear-gradient(135deg, transparent 75%, rgba(248, 250, 252, .09) 75%) 0 0 / 24px 24px,
        #172033;
}

.image-placeholder-dark::before {
    border-color: rgba(248, 250, 252, .14);
}

.image-placeholder-dark span {
    color: var(--white);
    background: rgba(15, 23, 42, .86);
}

.image-media {
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    background: #e9edf3;
    aspect-ratio: 16 / 10;
}

.image-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-copy {
    margin-top: 1.4rem;
}

.portrait-media {
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    background: var(--navy);
    aspect-ratio: 16 / 10;
}

.portrait-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 42%;
}

.page-hero {
    padding: 6.8rem 0 5.2rem;
}

.page-hero p:last-child {
    max-width: 780px;
    margin: 1.5rem 0 0;
}

.section {
    padding: 6.5rem 0;
}

.section-muted {
    background: #eef2f7;
}

.section-dark {
    background: var(--charcoal);
    color: #dbe3ee;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 2rem;
}

.section-heading > p:not(.section-kicker) {
    margin: 1rem 0 0;
    color: var(--grey);
}

.section-dark .section-heading > p:not(.section-kicker) {
    color: #cbd5e1;
}

.two-column,
.split-band,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 4rem;
    align-items: start;
}

.prose p,
.card p,
.contact-card p,
.process-list p {
    color: var(--grey);
    margin: 0;
}

.prose p + p {
    margin-top: 1.1rem;
}

.section-dark .prose p,
.section-dark .process-list p {
    color: #cbd5e1;
}

.card-grid {
    display: grid;
    gap: 1rem;
}

.card-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 1.6rem;
}

.dark-card {
    background: rgba(255, 255, 255, .045);
    border-color: rgba(181, 154, 91, .26);
}

.dark-card p {
    color: #cbd5e1;
}

.card h2,
.card h3 {
    margin-bottom: .8rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.logo-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 210px;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.logo-card-logo {
    display: grid;
    min-height: 118px;
    place-items: center;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid var(--line);
}

.logo-card-logo img {
    display: block;
    max-width: min(100%, 260px);
    max-height: 110px;
    object-fit: contain;
}

.logo-card-placeholder-mark {
    gap: .35rem;
    color: var(--navy);
    text-align: center;
}

.logo-card-placeholder-mark span {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
}

.logo-card-placeholder-mark small {
    margin: 0;
    color: var(--grey);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.logo-card-copy {
    padding-top: 1.8rem;
    text-align: center;
}

.logo-card-copy h3 {
    margin-bottom: .55rem;
    font-size: 1.8rem;
}

.logo-card-copy p {
    max-width: 32rem;
    margin: 0;
    margin-inline: auto;
    color: var(--grey);
}

.check-list {
    display: grid;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list.media-copy {
    margin-top: 2.2rem;
}

.check-list li {
    position: relative;
    padding-left: 1.45rem;
    color: var(--charcoal);
    font-weight: 600;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72rem;
    width: .52rem;
    height: .52rem;
    background: var(--gold);
}

.text-link {
    display: inline-block;
    margin-top: 1.4rem;
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.cta-section {
    background: var(--navy);
    color: var(--white);
    padding: 5.5rem 0;
}

.cta-inner {
    max-width: 860px;
}

.cta-section p {
    margin: 1.2rem 0 2rem;
}

.process-list {
    display: grid;
    gap: 1rem;
}

.process-list article {
    display: grid;
    grid-template-columns: 72px minmax(0, .72fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
    padding: 1.4rem 0;
    border-top: 1px solid var(--line);
}

.process-list span {
    color: var(--gold);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.process-list h2 {
    font-size: 2rem;
}

.contact-card {
    background: var(--white);
    color: var(--charcoal);
}

.contact-card h2 {
    color: var(--navy);
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.contact-logo {
    display: block;
    width: min(100%, 300px);
    height: auto;
    margin-bottom: 2rem;
    padding: .8rem;
    border: 1px solid rgba(181, 154, 91, .35);
    background: var(--white);
}

.contact-card p {
    color: var(--grey);
}

.contact-card p + p {
    margin-top: 1.2rem;
}

.contact-form {
    display: grid;
    gap: .75rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 1.5rem;
}

.form-notice {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 3px;
    font-weight: 700;
}

.form-notice-success {
    background: #ecfdf3;
    color: #14532d;
    border: 1px solid #bbf7d0;
}

.form-notice-error {
    background: #fef2f2;
    color: #7f1d1d;
    border: 1px solid #fecaca;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.contact-form label {
    color: var(--navy);
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 3px;
    padding: .85rem .9rem;
    color: var(--charcoal);
    font: inherit;
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(181, 154, 91, .28);
    border-color: var(--gold);
}

.contact-form button {
    width: fit-content;
    margin-top: .4rem;
    cursor: pointer;
    font: inherit;
}

.recaptcha-wrap {
    max-width: 100%;
    overflow-x: auto;
    padding-top: .35rem;
}

.site-footer {
    background: white;
    color: var(--charcoal);
    padding: 3.5rem 0;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
}

.site-footer p {
    margin: .85rem 0 0;
}

.site-footer a {
    color: var(--navy);
    text-decoration-color: rgba(181, 154, 91, .75);
    text-underline-offset: .18em;
}

.legal-footer {
    background: var(--navy);
    color: #dbe3ee;
    padding: 1rem 0;
}

.legal-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .9rem;
}

.legal-footer p {
    margin: 0;
}

.legal-footer a {
    color: var(--white);
    text-decoration-color: var(--gold);
    text-underline-offset: .18em;
}

@media (max-width: 900px) {
    body.nav-open {
        overflow: hidden;
    }

    .site-header {
        z-index: 40;
    }

    .header-inner {
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0;
        position: relative;
        z-index: 42;
    }

    .menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 43;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 38;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100vw;
        min-height: 100vh;
        gap: 0;
        padding: 8.5rem 28px 3rem;
        background: var(--white);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transform: translateY(-.5rem);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

    .nav-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a {
        display: block;
        width: min(100%, 520px);
        padding: 1.1rem 0;
        border-bottom: 1px solid var(--line);
        color: var(--navy);
        font-size: 1.35rem;
        text-align: center;
    }

    .site-nav a:first-child {
        border-top: 1px solid var(--line);
    }

    .brand-logo img {
        width: 168px;
    }

    .hero,
    .page-hero {
        padding: 4.8rem 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid,
    .two-column,
    .split-band,
    .contact-layout,
    .logo-grid,
    .card-grid.four,
    .card-grid.two,
    .card-grid.three {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-list article {
        grid-template-columns: 1fr;
        gap: .75rem;
    }
}

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

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.15rem;
    }

    .button {
        width: 100%;
    }

    .brand-logo img,
    .footer-logo img {
        width: 152px;
    }

    .image-placeholder {
        min-height: 230px;
    }

    .section {
        padding: 4.2rem 0;
    }

    .footer-grid {
        flex-direction: column;
    }

    .legal-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
