:root {
    --navy-950: #071827;
    --navy-900: #0b2742;
    --navy-800: #123a5b;
    --blue-700: #1b547d;
    --red-700: #a72a32;
    --red-600: #bd3440;
    --gold-500: #d4aa55;
    --cream-100: #fbfaf6;
    --gray-100: #f2f4f6;
    --gray-200: #e1e6ea;
    --gray-500: #64717d;
    --ink: #15212c;
    --white: #ffffff;

    --page-width: 1180px;
    --radius: 0.25rem;

    --shadow:
        0 18px 45px rgba(7, 24, 39, 0.13);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--ink);
    background: var(--cream-100);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
}

a {
    color: inherit;
    text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--gold-500);
    outline-offset: 4px;
}

address {
    font-style: normal;
}

.site-container {
    width: min(
        calc(100% - 2.5rem),
        var(--page-width)
    );

    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1000;

    padding: 0.65rem 0.9rem;

    color: var(--navy-950);
    background: var(--white);
    border: 2px solid var(--navy-950);

    transform: translateY(-180%);
}

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

/* Official-office utility bar */

.utility-bar {
    color: var(--white);
    background: var(--navy-950);
    font-size: 0.86rem;
}

.utility-bar__inner {
    min-height: 2.7rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.utility-bar p {
    margin: 0;
}

.utility-bar a:hover {
    color: #f1d79f;
}

.utility-bar__link {
    flex: 0 0 auto;
    font-weight: 700;
}

/* Main campaign header */

.site-header {
    color: var(--navy-950);
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.site-header__inner {
    min-height: 6.75rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.wordmark {
    display: inline-flex;
    flex-direction: column;

    color: var(--navy-950);
    text-decoration: none;
}

.wordmark__name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.035em;
}

.wordmark__office {
    margin-top: 0.25rem;

    color: var(--red-700);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);

    font-size: 0.9rem;
    font-weight: 700;
}

.site-nav a {
    text-decoration: none;
}

.site-nav > a:not(.site-nav__button):hover {
    color: var(--red-700);
}

.site-nav__button {
    padding: 0.75rem 1rem;

    color: var(--white);
    background: var(--red-700);
    border: 2px solid var(--red-700);
}

.site-nav__button:hover {
    background: var(--red-600);
    border-color: var(--red-600);
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;

    color: var(--white);

    background:
        linear-gradient(
            105deg,
            rgba(7, 24, 39, 0.98) 0%,
            rgba(11, 39, 66, 0.95) 62%,
            rgba(18, 58, 91, 0.92) 100%
        ),
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.025) 0,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px,
            transparent 16px
        );
}

.hero::after {
    position: absolute;
    top: -10rem;
    right: -8rem;

    width: 34rem;
    height: 34rem;

    content: "";

    border: 5rem solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.hero__inner {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(290px, 0.65fr);

    gap: clamp(3rem, 8vw, 7rem);
    align-items: center;

    padding-block: clamp(5rem, 10vw, 8.5rem);
}

.eyebrow {
    margin-bottom: 1rem;

    color: #f1d79f;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow--dark {
    color: var(--red-700);
}

.hero h1 {
    max-width: 780px;
    margin-bottom: 1.5rem;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.25rem, 8vw, 6.7rem);
    letter-spacing: -0.055em;
}

.hero__lead {
    max-width: 720px;
    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;

    margin-top: 2rem;
}

.button {
    min-height: 3.15rem;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.75rem 1.15rem;

    border: 2px solid transparent;
    border-radius: var(--radius);

    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;

    transition:
        color 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        transform 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    color: var(--white);
    background: var(--red-700);
    border-color: var(--red-700);
}

.button--primary:hover {
    background: var(--red-600);
    border-color: var(--red-600);
}

.button--secondary {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
}

.button--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--white);
}

.button--light {
    color: var(--navy-950);
    background: var(--white);
    border-color: var(--white);
}

.button--light:hover {
    color: var(--white);
    background: transparent;
}

.hero__status {
    padding: clamp(1.6rem, 4vw, 2.4rem);

    color: var(--ink);
    background: var(--white);
    border-top: 0.4rem solid var(--gold-500);

    box-shadow: var(--shadow);
}

.hero__status-label {
    margin-bottom: 0.65rem;

    color: var(--red-700);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero__status h2 {
    margin-bottom: 1rem;

    color: var(--navy-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 4vw, 2.45rem);
}

.hero__status p {
    color: var(--gray-500);
}

.hero__status p:last-child {
    margin-bottom: 0;
}

.hero__status a {
    color: var(--blue-700);
    font-weight: 700;
}

/* Official office */

.official-section {
    padding-block: clamp(5rem, 9vw, 7.5rem);
    background: var(--cream-100);
}

.section-heading {
    max-width: 800px;
    margin-bottom: 2.75rem;
}

.section-heading h2,
.campaign-section h2 {
    margin-bottom: 1.15rem;

    color: var(--navy-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 6vw, 4.35rem);
    letter-spacing: -0.045em;
}

.section-heading > p:last-child {
    margin-bottom: 0;

    color: var(--gray-500);
    font-size: 1.08rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    background: var(--white);

    border-top: 1px solid var(--gray-200);
    border-left: 1px solid var(--gray-200);

    box-shadow:
        0 10px 32px rgba(7, 24, 39, 0.07);
}

.contact-card {
    min-width: 0;

    padding: clamp(1.6rem, 4vw, 2.5rem);

    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.contact-card__label {
    margin-bottom: 0.55rem;

    color: var(--red-700);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-card h3 {
    margin-bottom: 0.75rem;

    color: var(--navy-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 4vw, 2.25rem);
}

.contact-card h3 a {
    color: inherit;
}

.contact-card__email {
    overflow-wrap: anywhere;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size:
        clamp(1.1rem, 2.5vw, 1.55rem) !important;
}

.contact-card p,
.contact-card address {
    margin-bottom: 0;
    color: var(--gray-500);
}

.office-note {
    display: grid;
    grid-template-columns:
        minmax(230px, 0.65fr)
        minmax(0, 1.35fr);

    gap: 2rem;

    margin-top: 1.5rem;
    padding: clamp(1.4rem, 3vw, 2rem);

    color: var(--white);
    background: var(--navy-900);
}

.office-note p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.office-note__title {
    margin-bottom: 0.4rem !important;

    color: #f1d79f !important;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.office-note address {
    color: var(--white);
    font-weight: 700;
}

/* Campaign contact */

.campaign-section {
    padding-block: clamp(4rem, 8vw, 6rem);

    color: var(--white);
    background: var(--red-700);
}

.campaign-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    gap: 2rem;
    align-items: center;
}

.campaign-section h2 {
    margin-bottom: 0.75rem;
    color: var(--white);
}

.campaign-section p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
}

/* Footer */

.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: var(--navy-950);
}

.site-footer__inner {
    min-height: 8.5rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

    padding-block: 2rem;
}

.site-footer p {
    margin-bottom: 0.2rem;
}

.site-footer__name {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.site-footer__legal {
    text-align: right;
}

/* Tablet layout */

@media (max-width: 850px) {
    .utility-bar__inner,
    .site-header__inner,
    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .utility-bar__inner {
        gap: 0.35rem;
        padding-block: 0.65rem;
    }

    .site-header__inner {
        gap: 1.25rem;
        padding-block: 1.25rem;
    }

    .site-nav {
        width: 100%;
        flex-wrap: wrap;
    }

    .hero__inner,
    .office-note,
    .campaign-section__inner {
        grid-template-columns: 1fr;
    }

    .hero__inner {
        gap: 3rem;
    }

    .campaign-section__inner .button {
        justify-self: start;
    }

    .site-footer__inner {
        padding-block: 2rem;
    }

    .site-footer__legal {
        text-align: left;
    }
}

/* Phone layout */

@media (max-width: 620px) {
    .site-container {
        width: min(
            calc(100% - 1.5rem),
            var(--page-width)
        );
    }

    .utility-bar__contact {
        display: grid;
        gap: 0.2rem;
    }

    .utility-bar__contact span {
        display: none;
    }

    .site-nav {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .site-nav__button {
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .hero__actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

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

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}