:root {
    --navy: #002366;
    --gold: #d4af37;
    --ink: #1a1a1a;
    --muted: #5f6672;
    --surface: #f5f7fa;
    --white: #ffffff;
    --border: #e3e7ed;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Montserrat, Arial, sans-serif;
    line-height: 1.7;
}

a {
    color: var(--navy);
}

.site-header {
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
}

.site-nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1120px;
    padding: 1rem 1.25rem;
}

.brand {
    color: var(--navy);
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

.nav-links a {
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
}

.profile-main {
    margin: 0 auto;
    max-width: 1120px;
    padding: 4rem 1.25rem 5rem;
}

.breadcrumbs {
    color: var(--muted);
    font-size: 0.82rem;
    margin-bottom: 2rem;
}

.breadcrumbs a {
    color: var(--muted);
}

.eyebrow {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    color: var(--navy);
    font-family: Georgia, serif;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    margin: 0.35rem 0 1rem;
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin: 0 0 1rem;
}

h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
}

.lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin: 0;
    max-width: 760px;
}

.answer-card {
    background: var(--surface);
    border-left: 4px solid var(--gold);
    margin: 2rem 0 3.5rem;
    padding: 1.4rem 1.6rem;
}

.answer-card p {
    margin: 0;
}

.facts,
.content-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 1.5rem 0 3.5rem;
}

.fact,
.content-card {
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1.25rem;
}

.fact strong {
    color: var(--navy);
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.section {
    margin-top: 3.5rem;
}

.section p {
    max-width: 820px;
}

.values {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: 1.2rem 0 0;
    padding: 0;
}

.values li {
    background: var(--surface);
    padding: 0.9rem 1rem;
}

.faq {
    border-top: 1px solid var(--border);
    padding: 1rem 0;
}

.faq + .faq {
    border-top: 0;
    padding-top: 0;
}

.small-note {
    color: var(--muted);
    font-size: 0.9rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.button {
    background: var(--navy);
    border-radius: 0.3rem;
    color: var(--white);
    display: inline-block;
    font-weight: 700;
    padding: 0.75rem 1.15rem;
    text-decoration: none;
}

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

.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 2rem 1.25rem;
    text-align: center;
}

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

@media (max-width: 760px) {
    .site-nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-links {
        gap: 0.65rem 1rem;
        justify-content: flex-start;
    }

    .profile-main {
        padding-top: 2.5rem;
    }

    .facts,
    .content-grid,
    .values {
        grid-template-columns: 1fr;
    }
}

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

/* A Point of View: profile storytelling layer. */
.profile-hero-signature {
    margin: 1.4rem 0 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.profile-section > .section-kicker {
    margin-bottom: 0.8rem;
}

.profile-section > .section-lead {
    max-width: 680px;
    margin: -0.75rem 0 2.1rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.profile-viewpoint {
    max-width: 1080px;
    padding: clamp(2.2rem, 5vw, 4.2rem);
    border-radius: 1.5rem;
    background: var(--nav-ink);
    box-shadow: 0 24px 56px rgba(3, 22, 56, 0.16);
    color: var(--white);
}

.profile-viewpoint h2 {
    max-width: 720px;
    color: var(--white);
}

.profile-viewpoint h2::after {
    background: var(--nav-gold);
}

.profile-viewpoint > .section-kicker {
    color: var(--nav-gold);
}

.profile-viewpoint > .section-lead {
    color: rgba(255, 255, 255, 0.68);
}

.viewpoint-list {
    display: grid;
    gap: 0;
    margin-top: 2.2rem;
}

.viewpoint-list article {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
    padding: 1.15rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.viewpoint-list article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.viewpoint-list .principle-mark {
    color: var(--nav-gold);
}

.viewpoint-list h3 {
    margin: 0 0 0.3rem;
    color: #fff;
    font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.viewpoint-list p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.75;
}

@media (max-width: 760px) {
    .profile-viewpoint {
        padding: 1.7rem 1.25rem;
        border-radius: 1.15rem;
    }

    .profile-hero-signature {
        line-height: 1.6;
    }
}

/* Shared premium treatment for the profile pages. */
body {
    background: #f8f9fc;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 30px rgba(6, 36, 91, 0.08);
    backdrop-filter: blur(18px);
}

.site-nav {
    max-width: 1260px;
    min-height: 78px;
}

.brand {
    letter-spacing: 0.11em;
}

.nav-links a {
    position: relative;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: -0.45rem;
    left: 0;
    height: 2px;
    background: var(--gold);
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.profile-main {
    max-width: 1260px;
    padding-top: clamp(3.5rem, 8vw, 7rem);
}

.profile-main::before {
    display: block;
    width: 100%;
    height: 8px;
    margin-bottom: 3.5rem;
    border-radius: 99px;
    background: var(--gold);
    content: '';
}

h1 {
    max-width: 850px;
    font-size: clamp(3rem, 7vw, 6.5rem);
    letter-spacing: -0.055em;
}

.lead {
    max-width: 850px;
    color: #495365;
    line-height: 1.8;
}

.answer-card {
    max-width: 920px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-left: 4px solid var(--gold);
    border-radius: 0 18px 18px 0;
    background: #fffdf7;
    box-shadow: 0 15px 34px rgba(10, 23, 50, 0.06);
}

.fact,
.content-card {
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(10, 23, 50, 0.06);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.fact:hover,
.content-card:hover {
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 18px 42px rgba(10, 23, 50, 0.1);
    transform: translateY(-5px);
}

.section {
    max-width: 980px;
    margin-top: 5rem;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.035em;
}

.values li {
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    background: #fff;
}

.faq {
    border-color: var(--border);
}

.button {
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-footer {
    padding: 3.5rem 1.25rem;
}

/* Profile signature redesign: a more editorial, personal-brand presentation. */
.brand-favicon {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 1rem;
    display: block;
    height: 54px;
    object-fit: cover;
    width: 54px;
}

.brand-copy {
    gap: 0;
}

.brand-copy small {
    display: none;
}

.profile-main {
    width: min(100%, 1440px);
    max-width: none;
    padding: clamp(2rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 3.5rem) 5.5rem;
}

.profile-main::before {
    display: none;
}

.profile-hero {
    align-items: center;
    background:
        linear-gradient(112deg, rgba(4, 17, 43, 0.98) 0%, rgba(7, 29, 68, 0.96) 56%, rgba(0, 35, 102, 0.88) 100%),
        url('../images/world_map_premium.webp') center / cover;
    border-radius: 2rem;
    box-shadow: 0 28px 70px rgba(3, 22, 56, 0.22);
    color: var(--white);
    display: grid;
    gap: clamp(2.5rem, 7vw, 7rem);
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    min-height: 570px;
    overflow: hidden;
    padding: clamp(2.5rem, 7vw, 6rem);
    position: relative;
}

.profile-hero::before {
    background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.22), transparent 32%);
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.profile-hero-copy,
.profile-hero-visual {
    position: relative;
    z-index: 1;
}

.profile-hero .breadcrumbs {
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 2.5rem;
}

.profile-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.78);
}

.profile-hero .eyebrow {
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.profile-hero h1 {
    color: var(--white);
    font-size: clamp(3.7rem, 8vw, 7.4rem);
    letter-spacing: -0.065em;
    line-height: 0.98;
    margin: 0 0 1.5rem;
    max-width: none;
}

.profile-hero .lead {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 1.65vw, 1.3rem);
    line-height: 1.8;
    max-width: 650px;
}

.profile-hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.profile-hero .button {
    background: var(--gold);
    color: #071d44;
    padding: 0.9rem 1.35rem;
}

.profile-hero .button:hover,
.profile-hero .button:focus-visible {
    background: #f0cf5c;
    color: #04112b;
    transform: translateY(-2px);
}

.profile-hero .button.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: var(--white);
}

.profile-hero .button.secondary:hover,
.profile-hero .button.secondary:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
}

.profile-hero-visual {
    justify-self: end;
    max-width: 390px;
    width: 100%;
}

.profile-hero-visual img {
    aspect-ratio: 4 / 5;
    border-radius: 1.5rem;
    box-shadow: 1.2rem 1.2rem 0 rgba(212, 175, 55, 0.28);
    display: block;
    object-fit: cover;
    width: 100%;
}

.profile-main > .answer-card {
    margin: -2.35rem auto 0;
    max-width: 1080px;
    padding: 1.35rem 1.6rem;
    position: relative;
    width: calc(100% - 2rem);
    z-index: 2;
}

.profile-main > .facts {
    margin: 2.5rem auto 0;
    max-width: 1080px;
}

.fact,
.content-card {
    min-height: 132px;
    padding: 1.45rem;
}

.fact a {
    font-weight: 700;
}

.content-card {
    overflow: hidden;
    position: relative;
}

.content-card::before {
    background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0));
    content: '';
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.profile-section {
    margin: clamp(4.5rem, 8vw, 7rem) auto 0;
    max-width: 1080px;
}

.profile-about {
    max-width: 930px;
}

.profile-about p:first-of-type {
    color: #273247;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.profile-section h2 {
    margin-bottom: 1.75rem;
    padding-bottom: 1.1rem;
    position: relative;
}

.profile-section h2::after {
    background: var(--gold);
    bottom: 0;
    content: '';
    height: 3px;
    left: 0;
    position: absolute;
    width: 3.8rem;
}

.profile-values {
    max-width: 1080px;
}

.profile-values .values {
    gap: 1rem;
}

.profile-values .values li {
    min-height: 80px;
    padding: 1.1rem 1.25rem;
}

.profile-faq .faq {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: 0 12px 30px rgba(10, 23, 50, 0.05);
    margin-top: 1rem;
    padding: 1.25rem 1.4rem;
}

.profile-faq .faq + .faq {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.profile-faq .faq h3 {
    font-size: 1.15rem;
    margin-bottom: 0.45rem;
}

.profile-faq .faq p {
    margin-bottom: 0;
}

.small-note {
    display: block;
    margin: 4rem auto 0;
    max-width: 1080px;
}

.cta-row {
    background: linear-gradient(120deg, #04112b, #06245b);
    border-radius: 1.35rem;
    box-shadow: 0 22px 50px rgba(3, 22, 56, 0.18);
    margin: 1.5rem auto 0;
    max-width: 1080px;
    padding: 1.6rem;
}

.cta-row .button {
    background: var(--gold);
    color: #071d44;
}

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

.cta-row .button:hover,
.cta-row .button:focus-visible {
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .profile-hero {
        gap: 2.5rem;
        grid-template-columns: minmax(0, 1fr) minmax(250px, 0.72fr);
        padding: 3rem;
    }

    .profile-hero h1 {
        font-size: clamp(3.4rem, 8vw, 5.5rem);
    }

}

@media (max-width: 760px) {
    .profile-main {
        padding: 1.25rem 0.75rem 4rem;
    }

    .profile-hero {
        border-radius: 1.35rem;
        gap: 2.5rem;
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 2.1rem 1.35rem 2.7rem;
    }

    .profile-hero .breadcrumbs {
        margin-bottom: 1.8rem;
    }

    .profile-hero h1 {
        font-size: clamp(3.2rem, 15vw, 5rem);
    }

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

    .profile-hero-actions .button {
        text-align: center;
        width: 100%;
    }

    .profile-hero-visual {
        justify-self: center;
        max-width: 340px;
    }

    .profile-main > .answer-card {
        margin: -1rem 0 0;
        width: 100%;
    }

    .profile-main > .facts,
    .profile-section,
    .small-note,
    .cta-row {
        width: 100%;
    }

    .profile-section {
        margin-top: 4.5rem;
    }

    .profile-faq .faq {
        padding: 1.1rem 1rem;
    }

    .cta-row {
        align-items: stretch;
        flex-direction: column;
    }

    .cta-row .button {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .profile-hero .button:hover,
    .profile-hero .button:focus-visible,
    .cta-row .button:hover,
    .cta-row .button:focus-visible {
        transform: none;
    }
}

/* Floating navigation: a distinctive personal-brand header for the profile. */
.site-header {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    padding: 0.8rem 1rem 0;
    position: sticky;
    top: 0.65rem;
}

.site-nav {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 35, 102, 0.12);
    border-radius: 999px;
    box-shadow: 0 16px 42px rgba(3, 22, 56, 0.12);
    gap: 1rem;
    max-width: 1320px;
    min-height: 74px;
    padding: 0.55rem 0.65rem 0.55rem 0.85rem;
}

.brand {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 0.85rem;
    letter-spacing: 0;
}

.brand-mark {
    align-items: center;
    background: var(--navy);
    border: 2px solid var(--gold);
    border-radius: 0.8rem;
    color: var(--gold);
    display: inline-flex;
    font-family: Georgia, serif;
    font-size: 0.84rem;
    height: 42px;
    justify-content: center;
    letter-spacing: -0.08em;
    line-height: 1;
    position: relative;
    width: 42px;
}

.brand-mark::after {
    background: var(--gold);
    content: '';
    height: 1px;
    opacity: 0.7;
    position: absolute;
    right: -0.18rem;
    top: 0.45rem;
    transform: rotate(-45deg);
    width: 0.8rem;
}

.brand-copy {
    display: grid;
    gap: 0.16rem;
    line-height: 1;
}

.brand-copy strong {
    color: var(--navy);
    font-family: Georgia, serif;
    font-size: clamp(1.35rem, 1.9vw, 1.6rem);
    letter-spacing: 0.055em;
}

.brand-copy small {
    color: var(--muted);
    font-family: Montserrat, Arial, sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    align-items: center;
    gap: 0.2rem;
    margin-left: auto;
}

.nav-links a {
    align-items: center;
    border: 1px solid transparent;
    display: inline-flex;
    font-size: 0.76rem;
    gap: 0.25rem;
    letter-spacing: 0.03em;
    line-height: 1;
    padding: 0.72rem 0.78rem;
    text-transform: none;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a::after {
    display: none;
}

.nav-link {
    border-radius: 999px;
    color: #3d485a;
}

.nav-link:hover,
.nav-link:focus-visible {
    background: #f0f3f8;
    border-color: #e0e6ef;
    color: var(--navy);
    transform: translateY(-1px);
}

.nav-link.is-active {
    background: var(--navy);
    box-shadow: 0 7px 18px rgba(0, 35, 102, 0.2);
    color: var(--white);
}

.nav-link.is-active:hover,
.nav-link.is-active:focus-visible {
    background: #07357f;
    border-color: transparent;
    color: var(--white);
}

.nav-language {
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--navy);
    font-weight: 800;
    min-width: 2.5rem;
    justify-content: center;
}

.nav-external span,
.nav-contact span {
    font-size: 0.95em;
    line-height: 1;
}

.nav-contact {
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: #071d44;
    font-weight: 800;
    margin-left: 0.25rem;
    white-space: nowrap;
}

.nav-contact:hover,
.nav-contact:focus-visible {
    background: #f0cf5c;
    border-color: #f0cf5c;
    color: #04112b;
    transform: translateY(-1px);
}

.nav-toggle {
    align-items: center;
    background: #f4f6fa;
    border: 1px solid #dce3ee;
    border-radius: 999px;
    color: var(--navy);
    cursor: pointer;
    display: none;
    flex: 0 0 auto;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    gap: 0.55rem;
    letter-spacing: 0.04em;
    padding: 0.62rem 0.82rem;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    background: #e9eef6;
    border-color: #cbd6e6;
    transform: translateY(-1px);
}

.nav-toggle[aria-expanded="true"] {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.nav-toggle-icon {
    display: grid;
    gap: 3px;
    width: 1rem;
}

.nav-toggle-icon span {
    background: currentColor;
    border-radius: 999px;
    display: block;
    height: 2px;
    transition: transform 180ms ease, opacity 180ms ease;
    width: 1rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

@media (max-width: 1040px) {
    .site-header {
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .site-nav {
        align-items: center;
        border-radius: 1.5rem;
        flex-direction: row;
        gap: 0.75rem;
        padding: 0.7rem;
        position: relative;
    }

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

    .brand-favicon {
        height: 50px;
        width: 50px;
    }

    .brand-copy strong {
        font-size: 1.32rem;
    }

    .nav-links {
        align-content: start;
        background: var(--white);
        border: 1px solid rgba(0, 35, 102, 0.12);
        border-radius: 1.25rem;
        box-shadow: 0 18px 42px rgba(3, 22, 56, 0.16);
        display: grid;
        gap: 0.32rem;
        grid-template-columns: minmax(0, 1fr);
        justify-content: stretch;
        left: 0.7rem;
        margin: 0;
        opacity: 0;
        padding: 0.55rem;
        pointer-events: none;
        position: absolute;
        right: 0.7rem;
        top: calc(100% + 0.55rem);
        transform: translateY(-0.45rem);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
        visibility: hidden;
        width: auto;
        z-index: 20;
        backdrop-filter: none;
    }

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

    .nav-links a {
        justify-content: flex-start;
        padding: 0.78rem 0.9rem;
        width: 100%;
    }

    .nav-contact {
        justify-content: center;
        margin: 0.2rem 0 0;
    }
}

@media (max-width: 760px) {
    .site-header {
        padding: 0.55rem 0.55rem 0;
        top: 0.35rem;
    }

    .site-nav {
        border-radius: 1.25rem;
        gap: 0.5rem;
        padding: 0.65rem;
    }

    .nav-toggle {
        font-size: 0.68rem;
        gap: 0.45rem;
        padding: 0.58rem 0.7rem;
    }

    .brand-favicon {
        height: 44px;
        width: 44px;
    }

    .nav-links {
        left: 0.65rem;
        right: 0.65rem;
    }

    .nav-links a {
        font-size: 0.74rem;
        padding: 0.72rem 0.8rem;
    }

    .brand-copy strong {
        font-size: 1.12rem;
    }
}

@media (max-width: 360px) {
    .brand {
        gap: 0.5rem;
    }

    .brand-favicon {
        height: 40px;
        width: 40px;
    }

    .brand-copy strong {
        font-size: 1rem;
        letter-spacing: 0.045em;
    }

    .nav-toggle-label {
        display: none;
    }

    .nav-toggle {
        padding: 0.7rem;
    }
}
