@font-face {
    font-family: "Montserrat Logo";
    src: url("/assets/fonts/montserrat-300-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

:root {
    --ink: #f5f2eb;
    --muted: #a9afb3;
    --dark: #05090c;
    --dark-soft: #091016;
    --panel: #0a1116;
    --gold: #f2a61c;
    --gold-soft: #b87916;
    --green: #67c83d;
    --red: #ed2626;
    --line: rgba(242, 166, 28, 0.36);
    --serif: Georgia, "Times New Roman", serif;
    --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
    --page: min(92vw, 1480px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--dark);
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 50% 28%, rgba(24, 40, 49, 0.18), transparent 32rem),
        var(--dark);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
}

svg {
    display: block;
}

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 1rem;
    left: 1rem;
    padding: 0.75rem 1rem;
    color: #05090c;
    background: var(--gold);
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-200%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 50%;
    display: flex;
    width: var(--page);
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    color: #fff;
    text-decoration: none;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: "Montserrat Logo", "Avenir Next", Avenir, "Segoe UI", sans-serif;
    font-size: clamp(2.2rem, 3.4vw, 3.75rem);
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1;
}

.brand-letter {
    display: block;
}

.brand-letter--g {
    position: relative;
    z-index: 1;
    width: 0.84em;
    height: 0.84em;
    flex: 0 0 0.84em;
    overflow: visible;
    shape-rendering: auto;
}

.brand-g-ring {
    fill: none;
    stroke: currentColor;
    stroke-width: 9;
}

.brand-equals {
    position: relative;
    z-index: 2;
    display: grid;
    width: 0.58em;
    height: 0.7em;
    margin: 0 0.11em 0 0.1em;
    align-content: space-between;
    transform: translateY(-0.015em);
}

.brand-equals i {
    display: block;
    height: 0.075em;
    min-height: 2px;
    background: #fff;
}

.brand-equals i:first-child {
    background: var(--green);
}

.brand-equals i:nth-child(2) {
    width: 1em;
    margin-left: -0.42em;
}

.brand-equals i:last-child {
    background: var(--red);
}

.brand-name {
    padding-left: 1.15rem;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.21em;
    line-height: 1.55;
    text-transform: uppercase;
}

nav {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3rem);
}

nav a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease;
}

nav a:hover,
nav a:focus-visible {
    color: #fff;
}

nav .nav-cta {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(242, 166, 28, 0.65);
    color: var(--gold);
}

.hero {
    position: relative;
    min-height: 900px;
    border-bottom: 1px solid var(--line);
    isolation: isolate;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image: url("/assets/images/generated/hero-toronto-1600.webp");
    background-position: center;
    background-size: cover;
    filter: saturate(0.86) contrast(1.04);
}

.hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, #030608 0%, rgba(3, 6, 8, 0.99) 20%, rgba(3, 6, 8, 0.92) 36%, rgba(3, 6, 8, 0.44) 63%, rgba(3, 6, 8, 0.08) 100%),
        linear-gradient(0deg, #030608 0%, transparent 25%);
}

.hero-content {
    width: var(--page);
    margin: 0 auto;
    padding-top: clamp(12.5rem, 19vh, 15rem);
    padding-bottom: 8rem;
}

.eyebrow,
.section-kicker {
    margin: 0 0 1rem;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 850px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(4rem, 6.6vw, 7rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.94;
    text-wrap: balance;
}

.hero h1 span {
    display: block;
    margin-top: 0.18em;
    color: var(--gold);
    font-size: 0.76em;
    letter-spacing: -0.03em;
}

.tricolor-rule {
    display: flex;
    width: 10.8rem;
    gap: 0.7rem;
    margin: 2rem 0;
}

.tricolor-rule i {
    display: block;
    width: 3rem;
    height: 3px;
    background: #fff;
}

.tricolor-rule i:first-child {
    background: var(--green);
}

.tricolor-rule i:last-child {
    background: var(--red);
}

.hero-copy {
    max-width: 570px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.22vw, 1.22rem);
    line-height: 1.72;
}

.hero-copy p {
    margin: 0;
}

.hero-copy p + p {
    margin-top: 1.3rem;
    color: rgba(255, 255, 255, 0.62);
}

.scroll-cue {
    position: absolute;
    right: 4vw;
    bottom: 3.5rem;
    display: grid;
    justify-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.18em;
    text-decoration: none;
    text-transform: uppercase;
}

.scroll-cue i {
    position: relative;
    display: block;
    width: 1px;
    height: 3rem;
    background: linear-gradient(var(--gold), transparent);
}

.approach {
    position: relative;
    padding: clamp(6rem, 10vw, 10rem) max(4vw, calc((100vw - 1040px) / 2));
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(115deg, rgba(242, 166, 28, 0.04), transparent 32%),
        repeating-linear-gradient(125deg, transparent 0 90px, rgba(255, 255, 255, 0.015) 91px 92px),
        #070c10;
    text-align: center;
    overflow: hidden;
}

.approach::before,
.approach::after {
    position: absolute;
    width: 28rem;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(242, 166, 28, 0.26), transparent);
    transform: rotate(125deg);
}

.approach::before {
    top: 10rem;
    left: -8rem;
}

.approach::after {
    right: -8rem;
    bottom: 10rem;
}

.section-mark {
    display: grid;
    width: 3.6rem;
    height: 3.6rem;
    margin: 0 auto 1.2rem;
    place-items: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    transform: rotate(45deg);
}

.section-mark svg {
    width: 2rem;
    height: 2rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    transform: rotate(-45deg);
}

.approach h2,
.section-heading h2,
.contact h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
}

.approach h2 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.green {
    color: var(--green);
}

.red {
    color: var(--red);
}

.section-intro {
    max-width: 900px;
    margin: 2rem auto 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.areas {
    padding: clamp(5rem, 8vw, 8rem) 0 clamp(4rem, 7vw, 7rem);
    background:
        radial-gradient(circle at 50% 0%, rgba(36, 57, 68, 0.18), transparent 32rem),
        #05090c;
}

.section-heading {
    width: var(--page);
    margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2.8rem, 5vw, 5.3rem);
    letter-spacing: -0.04em;
}

.tricolor-rule--center {
    justify-content: center;
    margin: 1.4rem auto 0;
}

.area-grid {
    display: grid;
    width: var(--page);
    margin: 0 auto;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 1.75rem;
}

.area-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid rgba(242, 166, 28, 0.32);
    background: linear-gradient(145deg, rgba(15, 25, 32, 0.96), rgba(5, 9, 12, 0.98));
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.16);
    overflow: hidden;
    transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.area-card:hover {
    border-color: rgba(242, 166, 28, 0.72);
    box-shadow: 0 1.7rem 4.4rem rgba(0, 0, 0, 0.28);
    transform: translateY(-8px);
}

.area-card--quarter {
    grid-column: span 3;
}

.area-card--third {
    grid-column: span 4;
}

.area-media {
    position: relative;
    height: clamp(13rem, 17vw, 17rem);
    border-bottom: 1px solid rgba(242, 166, 28, 0.28);
    overflow: hidden;
}

.area-photo {
    background-color: #0b1115;
    background-image:
        linear-gradient(0deg, rgba(2, 6, 8, 0.72), transparent 58%),
        var(--area-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: saturate(0.82) contrast(1.04);
    transition: filter 200ms ease;
}

.area-card:hover .area-photo {
    filter: saturate(1) contrast(1.03);
}

.area-photo--real-estate {
    --area-image: url("/assets/images/generated/real-estate-1600.webp");
}

.area-photo--distribution {
    --area-image: url("/assets/images/generated/distribution-1600.webp");
}

.area-photo--minerals {
    --area-image: url("/assets/images/generated/critical-minerals-1600.webp");
}

.area-photo--energy {
    --area-image: url("/assets/images/generated/energy-transition-1600.webp");
}

.area-photo--angel {
    --area-image: url("/assets/images/generated/angel-investing-1600.webp");
}

.area-photo--sports {
    --area-image: url("/assets/images/generated/professional-sports-1600.webp");
}

.product-lineup {
    background: #000;
}

.product-lineup::after {
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    content: "";
    background: linear-gradient(transparent, rgba(2, 6, 8, 0.56));
    pointer-events: none;
}

.product-lineup img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.area-body {
    position: relative;
    display: flex;
    min-height: 20rem;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 3.2rem clamp(1.25rem, 2vw, 2rem) 2.1rem;
    text-align: center;
}

.area-icon {
    position: absolute;
    top: -2rem;
    width: 4rem;
    height: 4rem;
    padding: 0.75rem;
    border: 1px solid rgba(242, 166, 28, 0.75);
    border-radius: 50%;
    color: var(--gold);
    background: #071016;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.area-number {
    margin: 0 0 0.6rem;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.area-body h3 {
    margin: 0;
    font-size: clamp(1.05rem, 1.35vw, 1.38rem);
    font-weight: 750;
    letter-spacing: 0.035em;
    line-height: 1.25;
    text-transform: uppercase;
}

.area-body > p:last-child {
    max-width: 25rem;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.72;
}

.conviction-statement {
    width: var(--page);
    margin: clamp(4rem, 7vw, 7rem) auto 0;
    font-family: var(--serif);
    font-size: clamp(2.25rem, 4.5vw, 4.6rem);
    letter-spacing: -0.035em;
    line-height: 1.08;
    text-align: center;
}

.conviction-statement span {
    color: var(--gold);
}

.contact {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(110deg, rgba(242, 166, 28, 0.04), transparent 40%),
        #070d11;
}

.contact-inner {
    display: grid;
    width: var(--page);
    margin: 0 auto;
    padding: clamp(4.5rem, 8vw, 8rem) 0;
    grid-template-columns: minmax(0, 1.1fr) minmax(26rem, 0.9fr);
    gap: clamp(4rem, 9vw, 10rem);
}

.contact h2 {
    color: var(--gold);
    font-size: clamp(2.8rem, 5vw, 5.1rem);
    letter-spacing: -0.04em;
    line-height: 1;
}

.contact-copy > p:not(.section-kicker) {
    max-width: 650px;
    margin: 1.5rem 0 0.5rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.contact-copy > strong {
    color: var(--gold);
    font-size: 0.95rem;
}

.contact-actions {
    display: grid;
    margin-top: 2.2rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.contact-actions a {
    display: flex;
    min-height: 5.2rem;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem;
    border: 1px solid rgba(242, 166, 28, 0.46);
    color: var(--ink);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
    border-color: var(--gold);
    background: rgba(242, 166, 28, 0.07);
}

.contact-actions svg {
    width: 2.1rem;
    height: 2.1rem;
    flex: 0 0 auto;
    color: var(--gold);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.contact-details {
    display: grid;
    align-content: center;
    gap: 2.5rem;
    margin: 0;
    padding-left: clamp(2rem, 5vw, 5rem);
    border-left: 1px solid var(--line);
    font-style: normal;
}

.contact-details > div {
    display: grid;
    grid-template-columns: 3.8rem 1fr;
    gap: 1.25rem;
}

.contact-details svg {
    width: 3.8rem;
    height: 3.8rem;
    padding: 0.8rem;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.contact-details p {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    letter-spacing: 0.04em;
}

.contact-details span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.contact-details a {
    text-decoration-color: rgba(242, 166, 28, 0.5);
    text-underline-offset: 0.25em;
}

.contact-details i {
    margin: 0 0.75rem;
    color: var(--gold);
    font-style: normal;
}

body.modal-open {
    overflow: hidden;
}

.contact-modal {
    width: min(92vw, 46rem);
    max-height: 90dvh;
    margin: auto;
    padding: 0;
    overflow: auto;
    border: 1px solid rgba(242, 166, 28, 0.7);
    color: var(--ink);
    background:
        radial-gradient(circle at 85% 0%, rgba(242, 166, 28, 0.11), transparent 18rem),
        #080e12;
    box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.78);
}

.contact-modal::backdrop {
    background: rgba(1, 4, 6, 0.82);
    backdrop-filter: blur(7px);
}

.contact-modal[open] {
    animation: contact-modal-enter 180ms ease-out;
}

@keyframes contact-modal-enter {
    from {
        opacity: 0;
        transform: translateY(0.75rem);
    }
}

.contact-modal__panel {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.contact-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--line);
}

.contact-modal__header h2 {
    margin: 0.2rem 0 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1;
}

.contact-modal__brand-label {
    margin-right: 0.28em;
}

.contact-modal__close {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid rgba(242, 166, 28, 0.5);
    border-radius: 50%;
    color: var(--gold);
    background: transparent;
    cursor: pointer;
}

.contact-modal__close::before,
.contact-modal__close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.contact-modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.contact-modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-modal__close:hover,
.contact-modal__close:focus-visible {
    border-color: var(--gold);
    background: rgba(242, 166, 28, 0.08);
}

.contact-form {
    position: relative;
    display: grid;
    margin-top: 1.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-form__field {
    display: grid;
    gap: 0.45rem;
}

.contact-form__field--wide {
    grid-column: 1 / -1;
}

.contact-form__field > span {
    color: var(--gold);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-form__field i {
    color: var(--muted);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: lowercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 3.15rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    outline: 0;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.035);
    font: inherit;
}

.contact-form textarea {
    min-height: 9rem;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(242, 166, 28, 0.12);
}

.contact-form select option {
    color: var(--ink);
    background: var(--dark-soft);
}

.contact-form__footer {
    display: flex;
    min-height: 3.4rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.4rem;
}

.contact-form__status {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.4;
}

.contact-form__status[data-state="success"] {
    color: var(--green);
}

.contact-form__status[data-state="error"] {
    color: #ff7272;
}

.contact-form__submit {
    min-width: 10.5rem;
    min-height: 3.25rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--gold);
    color: #080e12;
    background: var(--gold);
    font: inherit;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    cursor: pointer;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
    background: #ffc14b;
}

.contact-form__submit:disabled {
    cursor: wait;
    opacity: 0.58;
}

.contact-form__honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
}

footer {
    display: grid;
    width: var(--page);
    min-height: 9rem;
    margin: 0 auto;
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.68rem;
}

.brand--footer .brand-mark {
    font-size: 2.15rem;
}

.brand--footer .brand-name {
    font-size: 0.52rem;
}

footer > p:nth-child(2) {
    text-align: center;
}

.footer-values {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.7rem;
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-values i {
    display: block;
    width: 2px;
    height: 0.8rem;
    background: var(--gold-soft);
}

@media (max-width: 1180px) {
    nav a:not(.nav-cta) {
        display: none;
    }

    .area-card--quarter,
    .area-card--third {
        grid-column: span 6;
    }

    .area-card:last-child {
        grid-column: 4 / span 6;
    }

    .area-media {
        height: clamp(15rem, 32vw, 20rem);
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-details {
        grid-template-columns: 1fr 1fr;
        padding: 3rem 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    footer {
        grid-template-columns: 1fr 1fr;
    }

    footer > p:nth-child(2) {
        order: 3;
        grid-column: 1 / -1;
        margin-top: -1.5rem;
    }
}

@media (max-width: 720px) {
    :root {
        --page: min(90vw, 42rem);
    }

    .site-header {
        padding: 1rem 0;
    }

    .brand {
        gap: 0.75rem;
    }

    .brand-mark {
        font-size: 2.3rem;
    }

    .brand-name {
        padding-left: 0.75rem;
        font-size: 0.52rem;
        letter-spacing: 0.13em;
    }

    nav {
        display: none;
    }

    .hero {
        min-height: 860px;
    }

    .hero-backdrop {
        background-position: 57% center;
    }

    .hero::before {
        background:
            linear-gradient(90deg, #030608 0%, rgba(3, 6, 8, 0.96) 40%, rgba(3, 6, 8, 0.48) 82%, rgba(3, 6, 8, 0.25) 100%),
            linear-gradient(0deg, #030608 0%, rgba(3, 6, 8, 0.25) 38%, transparent 70%);
    }

    .hero-content {
        padding-top: 10.5rem;
        padding-bottom: 5rem;
    }

    .eyebrow {
        max-width: 15rem;
    }

    .hero h1 {
        max-width: 33rem;
        font-size: clamp(3.1rem, 14.5vw, 5.1rem);
        line-height: 0.98;
    }

    .hero h1 span {
        margin-top: 0.22em;
        font-size: 0.67em;
    }

    .hero-copy {
        max-width: 31rem;
        font-size: 0.96rem;
    }

    .scroll-cue {
        right: 5vw;
        bottom: 1.5rem;
    }

    .approach {
        padding-inline: 5vw;
    }

    .approach h2 br {
        display: none;
    }

    .area-grid {
        gap: 1.25rem;
    }

    .area-card--quarter,
    .area-card--third,
    .area-card:last-child {
        grid-column: 1 / -1;
    }

    .area-media {
        height: clamp(15rem, 67vw, 22rem);
    }

    .area-body {
        min-height: auto;
        padding-bottom: 2.6rem;
    }

    .area-body > p:last-child {
        font-size: 0.94rem;
    }

    .conviction-statement br {
        display: none;
    }

    .contact-actions {
        grid-template-columns: 1fr;
    }

    .contact-actions a {
        justify-content: flex-start;
        padding-left: 1.5rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-details > div {
        grid-template-columns: 3.2rem 1fr;
        gap: 1rem;
    }

    .contact-details svg {
        width: 3.2rem;
        height: 3.2rem;
    }

    .contact-details a {
        font-size: 0.9rem;
        overflow-wrap: anywhere;
    }

    .contact-modal__panel {
        padding: 1.25rem;
    }

    .contact-modal__header {
        gap: 0.625rem;
    }

    .contact-modal__header .brand-mark {
        min-width: 0;
        font-size: clamp(1.7rem, 8.4vw, 2.15rem);
    }

    .contact-modal__close {
        width: 2.5rem;
        height: 2.5rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form__field--wide {
        grid-column: auto;
    }

    .contact-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form__submit {
        width: 100%;
    }

    footer {
        padding: 2.5rem 0;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-values {
        justify-content: center;
    }

    footer > p:nth-child(2) {
        order: initial;
        grid-column: auto;
        margin-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
