:root {
    /* Dark neutral burgundy instead of navy blue */
    --navy: #3d0b14;
    --navy-dark: #1f0509;

    /* Primary red brand colors */
    --orange: #d21f32;
    --orange-dark: #8f0d20;
    --red: #d21f32;
    --red-dark: #780014;
    --red-bright: #ff6b76;

    --cream: #f8f1f1;
    --white: #ffffff;
    --gray: #695b5d;
    --border: #e5d5d7;
    --shadow: 0 18px 45px rgba(75, 0, 14, 0.16);
}
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--navy-dark);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Navigation */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 800;
}

.logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--navy);
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--orange);
}

.header-button {
    padding: 10px 18px;
    color: var(--white);
    background: var(--orange);
    border-radius: 8px;
    font-weight: 700;
}

.header-button:hover {
    background: var(--orange-dark);
}
.site-logo {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    width: auto;
    max-width: 190px;
    height: 58px;
    display: block;
    object-fit: contain;
}

/* Buttons */

.button {
    display: inline-block;
    padding: 13px 22px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.2s ease;
}

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

.button-primary {
    color: var(--white);
    background: var(--orange);
}

.button-primary:hover {
    background: var(--orange-dark);
}

.button-secondary {
    color: var(--navy);
    background: transparent;
    border-color: var(--navy);
}

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

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

/* Hero */

.hero {
    padding: 105px 0;
    color: var(--white);
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 107, 118, 0.24),
            transparent 30%
        ),
        linear-gradient(
            115deg,
            #4d0010 0%,
            #8f0d20 55%,
            #b11226 100%
        );
}

.hero-content {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 750px;
    margin: 0;
    font-size: clamp(2.7rem, 6vw, 5rem);
    line-height: 1.05;
}

.hero-description {
    max-width: 650px;
    margin: 24px 0 32px;
    color: #dbe5ed;
    font-size: 1.15rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero .button-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.75);
}

.hero-card {
    padding: 32px;
    color: var(--navy-dark);
    background: var(--white);
    border-top: 5px solid var(--orange);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.hero-card-label {
    margin: 0;
    color: var(--orange-dark);
    font-weight: 800;
    text-transform: uppercase;
}

.hero-card h2 {
    margin: 5px 0 18px;
    font-size: 2rem;
}

.hero-card ul {
    margin: 0;
    padding-left: 20px;
}

.hero-card li {
    margin-bottom: 10px;
}

/* Services */

.services-preview {
    padding: 90px 0;
    background: var(--cream);
}

.section-heading {
    max-width: 650px;
    margin-bottom: 42px;
}

.section-heading h2,
.cta-content h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.section-heading > p:last-child {
    color: var(--gray);
}

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

.service-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 42, 67, 0.06);
}

.service-card:hover {
    border-color: var(--orange);
}

.service-number {
    color: var(--orange);
    font-weight: 800;
}

.service-card h3 {
    margin: 12px 0 8px;
    font-size: 1.35rem;
}

.service-card p {
    margin: 0;
    color: var(--gray);
}

/* Call to action */

.cta-section {
    padding: 70px 0;
    color: var(--white);
    background: var(--orange-dark);
}

.cta-section .eyebrow {
    color: var(--white);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

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

/* Footer */

.site-footer {
    padding: 55px 0 20px;
    color: #eadde0;
    background: #1f0509;
}

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

.footer-logo {
    margin: 0;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
}

.site-footer a:hover {
    color: var(--orange);
}

.copyright {
    margin: 35px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9eb0be;
    text-align: center;
}

/* Mobile layout */

@media (max-width: 850px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 75px 0;
    }

    .hero-content,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        gap: 45px;
    }

    .cta-content,
    .footer-content {
        align-items: flex-start;
        flex-direction: column;
    }
    .site-logo img {
    max-width: 155px;
    height: 50px;
}
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .header-button {
        display: none;
    }

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

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        text-align: center;
    }
}

/* Interior pages */

.page-hero {
    padding: 85px 0;
    color: var(--white);
    background:
        linear-gradient(
            120deg,
            #4d0010,
            #8f0d20 60%,
            #b11226
        );
}

.narrow-container {
    max-width: 850px;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    line-height: 1.08;
}

.page-hero p:last-child {
    max-width: 700px;
    margin: 20px 0 0;
    color: #dbe5ed;
    font-size: 1.1rem;
}

.content-section {
    padding: 90px 0;
}

.content-section h2 {
    margin-top: 0;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.2;
}

.text-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--orange-dark);
    font-weight: 800;
}

.two-column,
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: start;
    gap: 70px;
}

.information-card {
    padding: 35px;
    background: var(--cream);
    border-top: 5px solid var(--orange);
    border-radius: 12px;
}

.information-card h3 {
    margin-top: 0;
    font-size: 1.7rem;
}

.check-list {
    margin-bottom: 0;
    padding-left: 22px;
}

.check-list li {
    margin: 12px 0;
}

/* Projects */

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

.project-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 42, 67, 0.08);
}

.project-placeholder {
    min-height: 230px;
    display: grid;
    place-items: center;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--navy),
            #274f6f
        );
    font-weight: 800;
}

.project-details {
    padding: 25px;
}

.project-details h2 {
    margin: 4px 0 10px;
    font-size: 1.5rem;
}

.project-details p:last-child {
    color: var(--gray);
}

.project-category {
    margin: 0;
    color: var(--orange-dark);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Contact page */

.contact-method {
    margin-top: 24px;
}

.contact-method strong,
.contact-method span,
.contact-method a {
    display: block;
}

.contact-method a {
    color: var(--orange-dark);
}

.contact-form {
    padding: 35px;
    background: var(--cream);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 13px;
    color: var(--navy-dark);
    background: var(--white);
    border: 1px solid #bdc9d2;
    border-radius: 7px;
    font: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--orange);
    outline: 3px solid rgba(233, 121, 36, 0.16);
}

.form-row textarea {
    resize: vertical;
}

.contact-form button {
    cursor: pointer;
    font: inherit;
}

@media (max-width: 850px) {
    .two-column,
    .contact-layout,
    .project-grid {
        grid-template-columns: 1fr;
    }

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

.form-success {
    margin-bottom: 24px;
    padding: 15px 18px;
    color: #155724;
    background: #d9f2df;
    border: 1px solid #a8d5b2;
    border-radius: 7px;
}

.form-errors,
.field-error {
    color: #a51d1d;
}

.field-error {
    margin: 6px 0 0;
    font-size: 0.9rem;
}

.form-row small {
    display: block;
    margin-top: 6px;
    color: var(--gray);
}
.empty-state {
    max-width: 650px;
    margin: 0 auto;
    padding: 55px 35px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}

.empty-state h2 {
    margin-bottom: 12px;
}

.empty-state p {
    margin-bottom: 25px;
    color: var(--gray);
}
/* Trust bar */

.trust-bar {
    color: var(--white);
    background: var(--navy-dark);
}

.trust-bar-content {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.trust-bar-content p {
    margin: 0;
}

.trust-bar-content a {
    color: var(--orange);
}

.trust-bar-content a:hover {
    color: var(--white);
}

/* Expanded footer */

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 45px;
}

.footer-logo span {
    color: var(--orange);
}

.footer-grid p {
    margin: 8px 0;
}

.footer-heading {
    margin: 0 0 15px;
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
}

.license-placeholder {
    margin-top: 20px !important;
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 700;
}

.footer-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--orange);
    font-weight: 700;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trust-bar-content {
        justify-content: center;
        min-height: 48px;
        text-align: center;
    }

    .trust-bar-content p {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* Mobile navigation */

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 9px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: var(--navy);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 7px;
    cursor: pointer;
}

.menu-toggle span {
    width: 23px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 10px;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 850px) {
    .navigation {
        flex-wrap: wrap;
        gap: 15px;
        padding: 14px 0;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        width: 100%;
        display: none;
        order: 4;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
        background: var(--white);
        border-top: 1px solid var(--border);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 13px 5px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links a:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 600px) {
    .header-button {
        display: none;
    }
}
/* Client-requested red accents */

.attention-text {
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: #ff9aa2;
    text-decoration-thickness: 5px;
    text-underline-offset: 8px;
}

.services-preview .service-number,
.content-section .service-number {
    color: var(--red);
}

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

.text-link:hover {
    color: var(--red-dark);
}

.page-hero .eyebrow {
    color: var(--red-bright);
}
.service-card {
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--red);
}

.service-card::after {
    position: absolute;
    right: -25px;
    bottom: -25px;
    width: 75px;
    height: 75px;
    content: "";
    background: rgba(214, 40, 40, 0.08);
    border-radius: 50%;
}

.service-card:hover {
    border-color: var(--red-dark);
    box-shadow: 0 15px 35px rgba(157, 2, 8, 0.14);
    transform: translateY(-4px);
}

.service-card {
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.button-primary,
.header-button {
    box-shadow: 0 8px 20px rgba(157, 2, 8, 0.22);
}

.button-primary:hover,
.header-button:hover {
    background: var(--red-dark);
    box-shadow: 0 10px 25px rgba(157, 2, 8, 0.32);
}
.hero-card,
.service-card,
.project-card,
.contact-form,
.information-card {
    border-color: rgba(120, 0, 20, 0.18);
}

.hero-card {
    border-top-color: #ff4f5e;
}

.hero-card-label,
.service-number,
.project-category,
.text-link {
    color: var(--red-dark);
}
/* Customer accounts */

.account-container {
    max-width: 720px;
}

.account-form {
    margin: 0 auto;
}

.account-switch {
    margin: 24px 0 0;
    text-align: center;
}

.account-switch a {
    color: var(--red);
    font-weight: 800;
}

.field-help {
    margin-top: 7px;
    color: var(--gray);
    font-size: 0.85rem;
}

.field-help ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

/* Dashboard */

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 28px;
}

.dashboard-panel {
    padding: 28px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-top: 5px solid var(--red);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.dashboard-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.dashboard-heading h2 {
    margin: 0;
    font-size: 1.6rem;
}

.dashboard-heading a {
    color: var(--red);
    font-weight: 800;
}

.dashboard-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.dashboard-item h3 {
    margin: 0 0 7px;
    font-size: 1.1rem;
}

.dashboard-item p {
    margin: 0 0 7px;
    color: var(--gray);
}

.status-badge {
    flex-shrink: 0;
    padding: 6px 10px;
    color: var(--white);
    background: var(--red-dark);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Navigation logout */

.nav-logout-form {
    display: flex;
    align-items: center;
}

.nav-logout-button {
    padding: 0;
    color: var(--navy);
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

.nav-logout-button:hover {
    color: var(--red);
}

@media (max-width: 850px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .nav-logout-form {
        width: 100%;
    }

    .nav-logout-button {
        width: 100%;
        padding: 13px 5px;
        text-align: left;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 550px) {
    .dashboard-item {
        flex-direction: column;
    }
}
/* Project gallery */

.gallery-content {
    padding: 90px 0;
    background: var(--cream);
}

.gallery-category {
    margin-bottom: 90px;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

.gallery-heading {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: end;
    gap: 50px;
    margin-bottom: 32px;
}

.gallery-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.gallery-heading > p {
    margin: 0;
    color: var(--gray);
}

/* Individual project card */

.project-card {
    max-width: 1100px;
    margin: 0 auto 42px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 5px solid var(--red);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.project-card:last-child {
    margin-bottom: 0;
}

.project-description {
    padding: 28px 30px 24px;
    border-bottom: 1px solid var(--border);
}

.project-number {
    margin: 0 0 8px;
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-description h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.project-description > p:last-child {
    max-width: 760px;
    margin: 0;
    color: var(--gray);
    line-height: 1.7;
}

/* Project image grid */

.project-image-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 20px;
}

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

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

.project-photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #eeeeee;
    border: 1px solid var(--border);
    border-radius: 9px;
}

.project-photo img {
    width: 100%;
    height: 260px;
    display: block;
    object-fit: contain;
    object-position: center;
    background: #f1eeee;
    transition: transform 0.3s ease;
}

.project-photo:hover img {
    transform: scale(1.025);
}

.project-photo figcaption {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 11px 15px;
    color: var(--white);
    background: var(--red);
    font-size: 0.88rem;
    font-weight: 700;
}

/* Tablet */

@media (max-width: 900px) {
    .project-image-grid,
    .project-image-grid-three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-photo img {
        height: 220px;
    }
}

/* Mobile */

@media (max-width: 650px) {
    .gallery-content {
        padding: 60px 0;
    }

    .gallery-category {
        margin-bottom: 65px;
    }

    .gallery-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .project-card {
        margin-bottom: 32px;
    }

    .project-description {
        padding: 23px 20px 20px;
    }

    .project-image-grid,
    .project-image-grid-two,
    .project-image-grid-three {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px;
    }

    .project-photo img {
    height: 280px;
}
}
/* Gallery full-size image viewer */

.lightbox-trigger {
    cursor: zoom-in;
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 70px;
    align-items: center;
    gap: 20px;
    padding: 75px 30px 30px;
    background: rgba(20, 3, 7, 0.94);
}

.lightbox-content {
    min-width: 0;
    max-width: 1200px;
    max-height: calc(100vh - 110px);
    margin: 0 auto;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 165px);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
    margin: 12px 0 0;
    color: var(--white);
    font-weight: 700;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 48px;
    height: 48px;
    color: var(--white);
    background: var(--red);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
}

.lightbox-arrow {
    width: 55px;
    height: 55px;
    color: var(--white);
    background: var(--red);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 800;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
    background: var(--red-dark);
}

.lightbox-close:focus-visible,
.lightbox-arrow:focus-visible,
.lightbox-trigger:focus-visible {
    outline: 3px solid var(--red-bright);
    outline-offset: 4px;
}

.lightbox-open {
    overflow: hidden;
}

@media (max-width: 650px) {
    .gallery-lightbox {
        grid-template-columns: 45px minmax(0, 1fr) 45px;
        gap: 8px;
        padding: 70px 10px 20px;
    }

    .lightbox-arrow {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .lightbox-close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
    }
}
/* Larger company logo */

.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo img {
    width: auto;
    max-width: 240px;
    height: 72px;
    display: block;
    object-fit: contain;
}

.navigation {
    min-height: 96px;
}

/* Centered mobile logo */

@media (max-width: 850px) {
    .navigation {
        position: relative;
        min-height: 88px;
        justify-content: center;
        padding: 10px 0;
    }

    .site-logo {
        margin: 0 auto;
    }

    .site-logo img {
        width: auto;
        max-width: min(220px, calc(100vw - 115px));
        height: 68px;
    }

    .menu-toggle {
        position: absolute;
        top: 23px;
        right: 0;
        margin: 0;
    }

    .nav-links {
        flex-basis: 100%;
    }
}