:root {
    --navy: #0d2d57;
    --navy-deep: #071d39;
    --navy-soft: #173d6d;
    --gold: #c3872b;
    --gold-dark: #9f6618;
    --cream: #f8f4eb;
    --cream-strong: #fffdf8;
    --ink: #15243b;
    --muted: #5e6774;
    --line: rgba(13, 45, 87, 0.16);
    --shadow: 0 18px 50px rgba(24, 35, 50, 0.12);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --content: min(1180px, calc(100% - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream-strong);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
    top: 32px;
}

a {
    color: inherit;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    z-index: 10000;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    margin: 0;
    clip: auto;
    color: #fff;
    background: var(--navy);
}

.site-shell {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

body.admin-bar .site-shell {
    min-height: calc(100svh - 32px);
}

#main-content {
    flex: 1 0 auto;
}

.home #main-content {
    display: flex;
    flex-direction: column;
}

/* Core header and navigation structure. */
.site-header {
    position: relative;
    z-index: 50;
    background: rgba(255, 253, 248, 0.97);
    border-bottom: 1px solid rgba(13, 45, 87, 0.08);
}

.header-inner {
    width: calc(100% - 56px);
    min-height: 104px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 410px;
    text-decoration: none;
}

.brand-mark {
    flex: 0 0 66px;
    color: var(--gold);
}

.brand-mark svg,
.footer-mark svg {
    width: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(2rem, 2.65vw, 3.25rem);
    line-height: 0.95;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.brand-tagline {
    margin-top: 7px;
    color: var(--gold-dark);
    font-family: var(--serif);
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-tagline b {
    color: var(--gold);
    font-weight: 400;
}

.primary-navigation {
    flex: 1 1 auto;
}

.primary-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 1.7vw, 32px);
    margin: 0;
    padding: 0;
}

.primary-menu li {
    margin: 0;
}

.primary-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--navy-deep);
    font-family: var(--serif);
    font-size: clamp(0.96rem, 1.1vw, 1.18rem);
    text-decoration: none;
    white-space: nowrap;
}

.primary-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--gold);
    transition: right 180ms ease;
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after,
.primary-menu .current-menu-item:not(.menu-item-highlight) > a::after,
.primary-menu .current_page_item:not(.menu-item-highlight) > a::after {
    right: 0;
}

.primary-menu .menu-item-highlight > a {
    min-height: 52px;
    padding: 0 20px;
    color: #fff;
    background: var(--navy);
    border: 1px solid var(--gold);
    border-radius: 3px;
    font-family: var(--sans);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

.primary-menu .menu-item-highlight > a::before {
    content: "✉";
    margin-right: 10px;
    color: var(--gold);
    font-size: 1rem;
}

.primary-menu .menu-item-highlight > a::after {
    display: none;
}

.primary-menu .menu-item-highlight > a:hover,
.primary-menu .menu-item-highlight > a:focus-visible,
.primary-menu .menu-item-highlight.current-menu-item > a,
.primary-menu .menu-item-highlight.current_page_item > a {
    background: var(--navy-soft);
}

.menu-toggle {
    display: none;
    border: 0;
    padding: 9px;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
}

.menu-toggle-lines {
    display: grid;
    gap: 5px;
}

.menu-toggle-lines i {
    display: block;
    width: 29px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

/* The homepage identity lives in the hero; interior pages retain the compact header brand. */
.home .site-header .brand {
    display: none;
}

.home .header-inner {
    min-height: 82px;
    justify-content: flex-end;
}

.home .primary-navigation {
    flex: 0 1 auto;
}

.hero-office {
    position: relative;
    min-height: clamp(540px, 35.47vw, 610px);
    overflow: hidden;
    background-image: url("../images/creator-office-production-final.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    isolation: isolate;
}

.hero-office::before {
    display: none;
}

.hero-inner {
    width: 100%;
    min-height: clamp(540px, 35.47vw, 610px);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
}

.hero-copy {
    width: min(690px, 43vw);
    margin: clamp(28px, 2.9vw, 50px) 0 0 clamp(48px, 7.8vw, 132px);
    padding: 0 22px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-brand {
    width: 100%;
    display: grid;
    grid-template-columns: clamp(70px, 6vw, 104px) minmax(0, 1fr);
    gap: clamp(14px, 1.6vw, 26px);
    align-items: center;
    color: var(--navy);
}

.hero-brand-mark {
    color: var(--gold-dark);
}

.hero-brand-mark svg {
    width: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
}

.hero-brand-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-brand-eyebrow {
    margin-bottom: 7px;
    color: var(--gold-dark);
    font-family: var(--serif);
    font-size: clamp(0.82rem, 1.03vw, 1.05rem);
    letter-spacing: 0.075em;
    line-height: 1.15;
    text-transform: uppercase;
}

.hero-brand-name {
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(2.55rem, 4.15vw, 4.45rem);
    line-height: 0.96;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-brand-tagline {
    margin-top: 11px;
    color: var(--gold-dark);
    font-family: var(--serif);
    font-size: clamp(0.83rem, 1.08vw, 1.1rem);
    letter-spacing: 0.095em;
    text-transform: uppercase;
}

.hero-brand-tagline b {
    color: var(--gold);
    font-weight: 400;
}

.hero-divider {
    width: min(310px, 72%);
    margin: clamp(12px, 1.4vw, 20px) auto clamp(12px, 1.4vw, 20px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 13px;
    align-items: center;
    color: var(--gold);
}

.hero-divider span {
    height: 1px;
    background: currentColor;
}

.hero-divider i {
    font-family: var(--serif);
    font-size: 1rem;
    font-style: normal;
}

.interior-banner h1 {
    margin: 0;
    color: var(--navy);
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hero-introduction {
    max-width: 640px;
    margin: 0 0 12px;
    color: var(--navy-deep);
    font-family: var(--serif);
    font-size: clamp(1.48rem, 1.78vw, 1.92rem);
    font-weight: 600;
    line-height: 1.35;
}

.hero-introduction-secondary {
    max-width: 585px;
    margin-bottom: 24px;
    color: #26384f;
    font-size: clamp(1.08rem, 1.22vw, 1.3rem);
    font-weight: 400;
    line-height: 1.42;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.035em;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--navy-soft);
}

.button-secondary {
    color: var(--navy);
    background: transparent;
    border-color: rgba(13, 45, 87, 0.32);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--gold);
    background: rgba(195, 135, 43, 0.08);
}

.home-destinations {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    background: var(--cream-strong);
    border-top: 1px solid rgba(13, 45, 87, 0.10);
    border-bottom: 1px solid rgba(13, 45, 87, 0.12);
}

.destination {
    position: relative;
    min-height: 145px;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 16px;
    align-items: start;
    padding: 23px 20px;
    color: var(--ink);
    text-decoration: none;
    border-right: 1px solid var(--line);
    transition: background-color 180ms ease;
}

.destination:last-child {
    border-right: 0;
}

.destination:hover,
.destination:focus-visible {
    background: rgba(195, 135, 43, 0.07);
}

.destination-featured {
    background: rgba(13, 45, 87, 0.035);
}

.destination-icon {
    color: var(--gold);
}

.destination-icon svg {
    width: 58px;
    height: 58px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.destination > span:last-child {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.destination strong {
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.destination small {
    display: block;
    margin-top: 6px;
    color: #2d3440;
    font-size: 0.84rem;
    line-height: 1.45;
}

.destination em {
    display: block;
    margin-top: auto;
    padding-top: 10px;
    color: var(--gold-dark);
    font-size: 0.76rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-footer {
    color: #fff;
    background: linear-gradient(90deg, var(--navy-deep), var(--navy));
    border-top: 1px solid var(--gold);
}

.footer-inner {
    width: calc(100% - 56px);
    min-height: 100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 95px 1fr 260px;
    gap: 25px;
    align-items: center;
}

.footer-mark {
    width: 64px;
    color: var(--gold);
}

.footer-statements {
    text-align: center;
}

.footer-statements p {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(0.9rem, 1.25vw, 1.18rem);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.footer-statements p + p {
    margin-top: 2px;
}

.footer-signature {
    color: var(--gold);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    text-align: center;
    transform: rotate(-4deg);
}

.content-width {
    width: var(--content);
    margin-inline: auto;
}

.interior-page {
    min-height: calc(100vh - 209px);
    background: #fbfaf6;
}

.interior-banner {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 10vw, 128px) 0 clamp(62px, 8vw, 100px);
    background:
        linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.88) 56%, rgba(255, 253, 248, 0.42)),
        url("../images/creator-office-background.webp") center 47% / cover no-repeat;
    border-bottom: 1px solid rgba(13, 45, 87, 0.12);
}

.interior-banner .content-width {
    position: relative;
    z-index: 1;
}

.interior-banner h1 {
    max-width: 900px;
    font-size: clamp(2.8rem, 6vw, 5.9rem);
    line-height: 1.02;
}

.banner-lede {
    max-width: 790px;
    margin: 24px 0 0;
    color: #293649;
    font-family: var(--serif);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.55;
}

.interior-banner .button {
    margin-top: 28px;
}

.content-section {
    padding: clamp(52px, 7vw, 90px) 0;
}

.prose {
    max-width: 840px;
}

.prose h2,
.lead-panel h2,
.status-panel h2,
.resource-grid h2,
.contact-card h2,
.inquiry-introduction h2 {
    margin: 0 0 17px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    font-weight: 400;
    line-height: 1.18;
}

.prose p,
.lead-panel p,
.status-panel p,
.resource-grid p,
.contact-card p,
.inquiry-introduction p {
    margin: 0 0 18px;
    color: #374151;
    font-size: 1.05rem;
}

.editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
    gap: clamp(34px, 6vw, 76px);
    align-items: start;
}

.lead-panel {
    max-width: 760px;
}

.status-panel,
.contact-card,
.inquiry-form-panel,
.resource-grid article {
    background: #fff;
    border: 1px solid rgba(13, 45, 87, 0.12);
    box-shadow: var(--shadow);
}

.status-panel {
    padding: clamp(28px, 4vw, 42px);
    border-top: 3px solid var(--gold);
}

.status-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.text-link,
.office-note a {
    color: var(--navy);
    font-weight: 700;
    text-decoration-color: var(--gold);
    text-underline-offset: 4px;
}

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

.resource-grid article {
    padding: 32px;
    border-top: 3px solid var(--gold);
}

.resource-grid article span {
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.office-note {
    margin: 35px 0 0;
    color: var(--muted);
}

.narrow-content {
    max-width: 880px;
}

.contact-card {
    padding: clamp(30px, 5vw, 58px);
    border-top: 4px solid var(--gold);
}

.contact-card h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    overflow-wrap: anywhere;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.inquiry-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.45fr);
    gap: clamp(34px, 6vw, 78px);
    align-items: start;
}

.inquiry-introduction {
    position: sticky;
    top: 36px;
}

.inquiry-introduction ul {
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.inquiry-introduction li {
    position: relative;
    padding: 12px 0 12px 26px;
    border-bottom: 1px solid var(--line);
}

.inquiry-introduction li::before {
    content: "✥";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.inquiry-form-panel {
    padding: clamp(24px, 4.5vw, 48px);
    border-top: 4px solid var(--gold);
}

.form-notice {
    margin-bottom: 24px;
    padding: 15px 17px;
    border-left: 4px solid;
    font-weight: 650;
}

.form-notice-success {
    color: #24532b;
    background: #eef8ef;
    border-color: #4c8b55;
}

.form-notice-error {
    color: #6d2a2a;
    background: #fff2f1;
    border-color: #b94b45;
}

.inquiry-form {
    display: grid;
    gap: 20px;
}

.form-grid {
    display: grid;
    gap: 18px;
}

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

.inquiry-form label {
    display: grid;
    gap: 7px;
    color: var(--navy);
    font-weight: 700;
}

.inquiry-form label > span {
    font-size: 0.9rem;
}

.inquiry-form label b {
    color: var(--gold-dark);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    border: 1px solid rgba(13, 45, 87, 0.28);
    border-radius: 2px;
    padding: 13px 14px;
    color: var(--ink);
    background: #fffefb;
    outline: none;
    transition: border-color 140ms ease, box-shadow 140ms ease;
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 180px;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(195, 135, 43, 0.14);
}

.form-submit-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.form-submit-row small {
    color: var(--muted);
}

.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
}

@media (max-width: 1180px) {
    .header-inner {
        width: min(100% - 28px, 1220px);
    }

    .brand {
        min-width: 330px;
    }

    .brand-mark {
        flex-basis: 54px;
    }

    .brand-tagline {
        font-size: 0.69rem;
    }

    .primary-menu {
        gap: 16px;
    }

    .primary-menu a {
        font-size: 0.95rem;
    }

    .primary-menu .menu-item-highlight > a {
        padding-inline: 14px;
        font-size: 0.82rem;
    }

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

    .destination:nth-child(3n) {
        border-right: 0;
    }

    .destination:nth-child(-n + 3) {
        border-bottom: 1px solid var(--line);
    }

    .destination:nth-child(4) {
        border-left: 0;
    }
}

@media (max-width: 1060px) {
    .header-inner {
        min-height: 88px;
    }

    .brand-name {
        font-size: 2rem;
    }

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

    .primary-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        padding: 18px 22px 25px;
        background: #fffdf8;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 35px rgba(15, 28, 45, 0.14);
    }

    .primary-navigation.is-open {
        display: block;
    }

    .primary-menu {
        display: grid;
        gap: 0;
    }

    .primary-menu li {
        border-bottom: 1px solid var(--line);
    }

    .primary-menu li:last-child {
        border-bottom: 0;
    }

    .primary-menu a {
        width: 100%;
        min-height: 48px;
        font-family: var(--sans);
        font-size: 1rem;
    }

    .primary-menu .menu-item-highlight > a {
        width: auto;
        margin-top: 12px;
        justify-content: center;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-copy {
        width: min(560px, 58vw);
        margin-left: 0;
        padding-inline: 10px 0;
    }

    .hero-office::before {
        background: linear-gradient(90deg, rgba(255,253,248,.98), rgba(255,253,248,.88) 42%, rgba(255,253,248,.22) 70%, transparent);
    }
}

@media (max-width: 780px) {
    :root {
        --content: min(100% - 32px, 680px);
    }

    body.admin-bar .site-header {
        top: 46px;
    }

    body.admin-bar .site-shell {
        min-height: calc(100svh - 46px);
    }

    .header-inner {
        width: calc(100% - 24px);
    }

    .brand {
        min-width: 0;
        gap: 8px;
    }

    .brand-mark {
        flex-basis: 42px;
    }

    .brand-name {
        font-size: 1.55rem;
    }

    .brand-tagline {
        font-size: 0.56rem;
        letter-spacing: 0.08em;
    }

    .brand-eyebrow {
        font-size: 0.58rem;
        letter-spacing: 0.09em;
    }

    .hero-office {
        min-height: 760px;
        background-size: auto 430px;
        background-position: 61% top;
        background-color: #fffdf8;
    }

    .hero-office::before {
        top: 270px;
        background: linear-gradient(180deg, rgba(255,253,248,0) 0%, rgba(255,253,248,.96) 24%, rgba(255,253,248,1) 49%);
    }

    .hero-inner {
        min-height: 760px;
        width: calc(100% - 32px);
        align-items: flex-end;
    }

    .hero-copy {
        width: 100%;
        margin-left: 0;
        padding: 340px 0 45px;
    }

    .hero-introduction {
        font-size: clamp(1.45rem, 6.6vw, 2rem);
    }

    .home-destinations {
        grid-template-columns: 1fr;
    }

    .destination,
    .destination:nth-child(3n) {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .destination:last-child {
        border-bottom: 0;
    }

    .footer-inner {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 26px 0 30px;
    }

    .footer-mark {
        width: 52px;
        margin: 0 auto;
    }

    .footer-statements p {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .footer-signature {
        font-size: 2.1rem;
    }

    .interior-banner {
        padding: 74px 0 64px;
        background-position: 68% center;
    }

    .interior-banner h1 {
        font-size: clamp(2.7rem, 12vw, 4.6rem);
    }

    .editorial-grid,
    .inquiry-layout,
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-introduction {
        position: static;
    }

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

    .button-row,
    .form-submit-row {
        align-items: stretch;
        flex-direction: column;
    }

    .button-row .button,
    .form-submit-row .button {
        width: 100%;
    }
}

@media (max-width: 460px) {
    .brand-tagline,
    .brand-eyebrow {
        display: none;
    }

    .brand-name {
        font-size: 1.35rem;
    }


    .button {
        width: 100%;
        padding-inline: 16px;
    }

    .destination {
        grid-template-columns: 50px 1fr;
        padding: 24px 17px;
    }

    .destination-icon svg {
        width: 48px;
        height: 48px;
    }
}

@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;
    }
}

/* Production-locked homepage refinements, v1.7. */
@media (max-width: 1180px) and (min-width: 1061px) {
    .home .header-inner {
        width: calc(100% - 32px);
    }

    .hero-copy {
        width: min(620px, 48vw);
        margin-left: 34px;
    }

    .hero-brand-name {
        font-size: clamp(2.45rem, 4vw, 3.8rem);
    }
}

@media (max-width: 1060px) {
    .home .site-header .brand {
        display: inline-flex;
    }

    .home .header-inner {
        min-height: 88px;
        justify-content: space-between;
    }

    .hero-office {
        min-height: 720px;
        background-size: auto 470px;
        background-position: 64% top;
        background-color: #fffdf8;
    }

    .hero-inner {
        min-height: 720px;
        align-items: flex-end;
    }

    .hero-copy {
        width: min(690px, calc(100% - 40px));
        margin: 0 auto;
        padding: 330px 18px 42px;
    }

    .hero-brand {
        display: none;
    }

    .hero-divider {
        display: none;
    }

    .hero-introduction {
        max-width: 650px;
    }
}

@media (max-width: 780px) {
    .hero-office {
        min-height: 760px;
        background-image: url("../images/creator-office-production-final.webp");
        background-size: auto 430px;
        background-position: 64% top;
    }

    .hero-office::before {
        content: "";
        position: absolute;
        display: block;
        inset: 260px 0 0;
        z-index: 0;
        background: linear-gradient(180deg, rgba(255,253,248,0), rgba(255,253,248,.97) 24%, #fffdf8 48%);
    }

    .hero-inner {
        position: relative;
        z-index: 1;
        min-height: 760px;
    }

    .hero-copy {
        padding-top: 340px;
    }
}

/* Production correction v1.9: restore the approved hero composition without the v1.8 crop/wash regression. */
@media (min-width: 1061px) {
    .hero-office {
        width: 100%;
        min-height: 0;
        aspect-ratio: 1672 / 597;
        background-image: url("../images/creator-office-production-v19.webp");
        background-size: 100% 100%;
        background-position: center center;
    }

    .hero-inner {
        position: absolute;
        inset: 0;
        width: 100%;
        min-height: 0;
        display: block;
    }

    .hero-copy {
        position: absolute;
        top: 5.2%;
        left: 7.1%;
        width: 34.5%;
        margin: 0;
        padding: 0;
    }

    .hero-brand {
        grid-template-columns: clamp(74px, 5.7vw, 100px) minmax(0, 1fr);
        gap: clamp(14px, 1.45vw, 24px);
    }

    .hero-brand-name {
        font-size: clamp(2.7rem, 3.9vw, 4.2rem);
    }

    .hero-divider {
        margin-top: clamp(11px, 1vw, 17px);
        margin-bottom: clamp(11px, 1vw, 17px);
    }

    .hero-introduction {
        max-width: 100%;
        font-size: clamp(1.42rem, 1.66vw, 1.86rem);
        line-height: 1.34;
    }

    .hero-introduction-secondary {
        max-width: 94%;
        margin-bottom: clamp(18px, 1.35vw, 24px);
        font-size: clamp(1.03rem, 1.12vw, 1.22rem);
    }
}

@media (max-width: 1060px) {
    .hero-office {
        background-image: url("../images/creator-office-production-v19.webp");
    }
}

/* Production lock v2.0: final desktop hero composition. */
@media (min-width: 1061px) {
    .hero-office {
        aspect-ratio: 1672 / 597;
        background-image: url("../images/creator-office-production-v20.webp");
        background-size: 100% 100%;
        background-position: center center;
    }

    .hero-copy {
        top: 7.6%;
        left: 7.1%;
        width: 35.5%;
        padding: 12px 18px 18px;
        isolation: isolate;
    }

    .hero-copy::before {
        content: "";
        position: absolute;
        z-index: -1;
        inset: -26px -36px -24px;
        border-radius: 44%;
        background: radial-gradient(
            ellipse at center,
            rgba(255, 253, 248, 0.96) 0%,
            rgba(255, 253, 248, 0.93) 56%,
            rgba(255, 253, 248, 0.76) 70%,
            rgba(255, 253, 248, 0.32) 84%,
            rgba(255, 253, 248, 0) 100%
        );
        pointer-events: none;
    }

    .hero-brand {
        width: 100%;
    }

    .hero-brand-copy {
        align-items: center;
        text-align: center;
    }

    .hero-divider {
        margin-top: clamp(13px, 1.15vw, 19px);
        margin-bottom: clamp(22px, 1.65vw, 29px);
    }

    .hero-introduction {
        width: 100%;
        max-width: none;
        margin-inline: auto;
        font-size: clamp(1.38rem, 1.54vw, 1.76rem);
        line-height: 1.34;
        text-align: center;
    }

    .hero-introduction > span {
        display: block;
        white-space: nowrap;
    }

    .hero-introduction-secondary {
        width: 92%;
        max-width: 560px;
        margin: 16px auto clamp(19px, 1.45vw, 25px);
        font-size: clamp(1.04rem, 1.13vw, 1.24rem);
        line-height: 1.42;
        text-align: center;
    }

    .hero-copy .button-primary {
        align-self: center;
    }
}

@media (max-width: 1280px) and (min-width: 1061px) {
    .hero-copy {
        left: 5.5%;
        width: 42%;
    }

    .hero-introduction > span {
        white-space: normal;
    }
}

@media (max-width: 1060px) {
    .hero-office {
        background-image: url("../images/creator-office-production-v20.webp");
    }

    .hero-introduction > span {
        display: inline;
    }

    .hero-introduction > span:not(:last-child)::after {
        content: " ";
    }
}

/* Final feather refinement: keep illumination close to the words, not across the artwork. */
@media (min-width: 1061px) {
    .hero-copy::before {
        display: none;
    }

    .hero-brand,
    .hero-message {
        position: relative;
        z-index: 0;
    }

    .hero-brand::before,
    .hero-message::before {
        content: "";
        position: absolute;
        z-index: -1;
        pointer-events: none;
        background: rgba(255, 253, 248, 0.76);
        box-shadow: 0 0 28px 20px rgba(255, 253, 248, 0.52);
    }

    .hero-brand::before {
        inset: -10px -18px;
        border-radius: 42px;
    }

    .hero-message {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: clamp(15px, 1.15vw, 21px);
    }

    .hero-message::before {
        inset: -10px -20px -14px;
        border-radius: 34px;
    }

    .hero-divider {
        width: min(310px, 72%);
        margin-top: 0;
        margin-bottom: clamp(22px, 1.65vw, 29px);
    }
}

/* Softer final feather: no visible panel edge. */
@media (min-width: 1061px) {
    .hero-brand::before,
    .hero-message::before {
        box-shadow: none;
        background: radial-gradient(
            ellipse at center,
            rgba(255, 253, 248, 0.94) 0%,
            rgba(255, 253, 248, 0.82) 48%,
            rgba(255, 253, 248, 0.56) 64%,
            rgba(255, 253, 248, 0.20) 79%,
            rgba(255, 253, 248, 0) 100%
        );
        border-radius: 50%;
    }

    .hero-brand::before {
        inset: -24px -42px;
    }

    .hero-message::before {
        inset: -30px -42px -32px;
    }
}

/* Production correction v2.1: lift the message and CTA clear of the coffee cup. */
@media (min-width: 1061px) {
    .hero-message {
        margin-top: 6px;
    }

    .hero-divider {
        margin-bottom: 14px;
    }

    .hero-introduction-secondary {
        margin-top: 10px;
        margin-bottom: 12px;
    }

    .hero-message::before {
        inset: -22px -40px -12px;
    }
}

/* Production correction v2.3: clean hero artwork, contained feathering, and full desktop composition in the viewport. */
@media (min-width: 1061px) {
    body.home .site-shell {
        height: 100svh;
        min-height: 0;
        overflow: hidden;
    }

    body.admin-bar.home .site-shell {
        height: calc(100svh - 32px);
    }

    .home .site-header {
        flex: 0 0 auto;
    }

    .home .header-inner {
        min-height: 72px;
    }

    .home #main-content {
        min-height: 0;
        flex: 1 1 auto;
        overflow: hidden;
    }

    .hero-office {
        flex: 1 1 auto;
        min-height: 0;
        height: auto;
        aspect-ratio: auto;
        background-image: url("../images/creator-office-production-v23.webp");
        background-size: 100% 100%;
        background-position: center center;
    }

    .hero-copy {
        top: 5.8%;
        left: 7.1%;
        width: 35.5%;
        padding: 8px 18px 14px;
        isolation: isolate;
    }

    .hero-copy::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        inset: -18px -34px -14px;
        border-radius: 48%;
        background: radial-gradient(
            ellipse at center,
            rgba(255, 253, 248, 0.95) 0%,
            rgba(255, 253, 248, 0.88) 50%,
            rgba(255, 253, 248, 0.62) 67%,
            rgba(255, 253, 248, 0.24) 82%,
            rgba(255, 253, 248, 0) 100%
        );
        pointer-events: none;
    }

    .hero-brand::before,
    .hero-message::before {
        content: none;
        display: none;
    }

    .hero-message {
        margin-top: 6px;
    }

    .hero-divider {
        margin-bottom: 14px;
    }

    .hero-introduction-secondary {
        margin-top: 10px;
        margin-bottom: 12px;
    }

    .home-destinations {
        flex: 0 0 112px;
    }

    .destination {
        min-height: 112px;
        grid-template-columns: 50px 1fr;
        gap: 12px;
        padding: 14px 16px 12px;
    }

    .destination-icon svg {
        width: 48px;
        height: 48px;
    }

    .destination strong {
        font-size: 0.92rem;
    }

    .destination small {
        margin-top: 3px;
        font-size: 0.75rem;
        line-height: 1.35;
    }

    .destination em {
        padding-top: 5px;
        font-size: 0.68rem;
    }

    .site-footer {
        flex: 0 0 76px;
    }

    .footer-inner {
        min-height: 76px;
    }

    .footer-mark {
        width: 52px;
    }

    .footer-statements p {
        font-size: clamp(0.78rem, 1vw, 1rem);
    }

    .footer-signature {
        font-size: clamp(1.65rem, 2.3vw, 2.55rem);
    }
}

/* Production correction v2.4: clean artwork, tightly contained feathering, and full desktop page within the viewport. */
@media (min-width: 1061px) {
    body.home {
        overflow: hidden;
    }

    body.home .site-shell {
        height: 100dvh;
        min-height: 0;
        overflow: hidden;
    }

    body.admin-bar.home .site-shell {
        height: calc(100dvh - 32px);
    }

    .home .site-header {
        flex: 0 0 68px;
    }

    .home .header-inner {
        width: calc(100% - 48px);
        min-height: 68px;
    }

    .home .primary-menu {
        gap: clamp(12px, 1.55vw, 28px);
    }

    .home .primary-menu a {
        min-height: 40px;
        font-size: clamp(0.88rem, 1vw, 1.08rem);
    }

    .home .primary-menu .menu-item-highlight > a {
        min-height: 46px;
        padding-inline: 18px;
        font-size: 0.84rem;
    }

    .home #main-content {
        flex: 1 1 auto;
        min-height: 0;
        overflow: hidden;
    }

    .hero-office {
        flex: 1 1 auto;
        min-height: 0;
        height: auto;
        aspect-ratio: auto;
        background-image: url("../images/creator-office-production-v23.webp");
        background-size: 100% 100%;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .hero-inner {
        position: absolute;
        inset: 0;
        width: 100%;
        min-height: 0;
    }

    .hero-copy {
        position: absolute;
        top: clamp(20px, 4.4%, 34px);
        left: clamp(74px, 7.2vw, 124px);
        width: clamp(510px, 35.5vw, 610px);
        margin: 0;
        padding: 0;
        isolation: isolate;
    }

    .hero-copy::before {
        content: none;
        display: none;
    }

    .hero-brand,
    .hero-message {
        position: relative;
        z-index: 0;
    }

    .hero-brand::before,
    .hero-message::before {
        content: "";
        position: absolute;
        z-index: -1;
        pointer-events: none;
        border-radius: 50%;
        background: radial-gradient(
            ellipse at center,
            rgba(255, 253, 248, 0.94) 0%,
            rgba(255, 253, 248, 0.86) 46%,
            rgba(255, 253, 248, 0.54) 66%,
            rgba(255, 253, 248, 0.16) 82%,
            rgba(255, 253, 248, 0) 100%
        );
    }

    .hero-brand::before {
        inset: -12px -24px -14px;
    }

    .hero-message::before {
        inset: -10px -25px -12px;
    }

    .hero-brand {
        grid-template-columns: clamp(68px, 5.4vw, 92px) minmax(0, 1fr);
        gap: clamp(13px, 1.25vw, 21px);
    }

    .hero-brand-eyebrow {
        margin-bottom: 4px;
        font-size: clamp(0.72rem, 0.88vw, 0.94rem);
    }

    .hero-brand-name {
        font-size: clamp(2.35rem, 3.55vw, 3.85rem);
    }

    .hero-brand-tagline {
        margin-top: 7px;
        font-size: clamp(0.72rem, 0.92vw, 0.98rem);
    }

    .hero-message {
        width: 100%;
        margin-top: clamp(12px, 1.6vh, 18px);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-divider {
        width: min(285px, 66%);
        margin: 0 auto clamp(11px, 1.45vh, 16px);
    }

    .hero-introduction {
        width: 100%;
        max-width: none;
        margin: 0;
        font-size: clamp(1.28rem, min(1.52vw, 2.7vh), 1.72rem);
        line-height: 1.32;
        text-align: center;
    }

    .hero-introduction > span {
        display: block;
        white-space: nowrap;
    }

    .hero-introduction-secondary {
        width: 90%;
        max-width: 520px;
        margin: clamp(9px, 1.25vh, 13px) auto clamp(10px, 1.4vh, 15px);
        font-size: clamp(0.94rem, min(1.05vw, 2vh), 1.14rem);
        line-height: 1.36;
    }

    .hero-copy .button-primary {
        min-height: 46px;
        padding-inline: 22px;
        font-size: 0.9rem;
    }

    .home-destinations {
        flex: 0 0 104px;
        min-height: 104px;
    }

    .destination {
        min-height: 104px;
        grid-template-columns: 45px 1fr;
        gap: 11px;
        padding: 12px 15px 10px;
    }

    .destination-icon svg {
        width: 43px;
        height: 43px;
    }

    .destination strong {
        font-size: 0.86rem;
    }

    .destination small {
        margin-top: 2px;
        font-size: 0.70rem;
        line-height: 1.32;
    }

    .destination em {
        padding-top: 4px;
        font-size: 0.64rem;
    }

    .site-footer {
        flex: 0 0 72px;
        min-height: 72px;
    }

    .footer-inner {
        min-height: 72px;
        grid-template-columns: 72px 1fr 220px;
    }

    .footer-mark {
        width: 48px;
    }

    .footer-statements p {
        font-size: clamp(0.72rem, 0.9vw, 0.92rem);
        line-height: 1.35;
    }

    .footer-signature {
        font-size: clamp(1.55rem, 2.1vw, 2.3rem);
    }
}

@media (min-width: 1061px) and (max-height: 760px) {
    .home .site-header {
        flex-basis: 62px;
    }

    .home .header-inner {
        min-height: 62px;
    }

    .hero-copy {
        top: 14px;
    }

    .hero-brand-name {
        font-size: clamp(2.2rem, 3.25vw, 3.45rem);
    }

    .hero-brand-mark {
        max-width: 78px;
    }

    .hero-message {
        margin-top: 9px;
    }

    .hero-divider {
        margin-bottom: 9px;
    }

    .hero-introduction {
        font-size: clamp(1.2rem, 1.4vw, 1.55rem);
    }

    .hero-introduction-secondary {
        margin-top: 7px;
        margin-bottom: 8px;
        font-size: clamp(0.88rem, 0.96vw, 1.02rem);
    }

    .hero-copy .button-primary {
        min-height: 42px;
    }

    .home-destinations {
        flex-basis: 96px;
        min-height: 96px;
    }

    .destination {
        min-height: 96px;
        padding-top: 9px;
        padding-bottom: 8px;
    }

    .site-footer,
    .footer-inner {
        min-height: 66px;
    }

    .site-footer {
        flex-basis: 66px;
    }
}


/* Production correction v2.5: restore a small, soft feather behind the text only and lower the composition slightly. */
@media (min-width: 1061px) {
    .hero-copy {
        top: 8.1%;
    }

    .hero-copy::before {
        content: none;
        display: none;
    }

    .hero-brand,
    .hero-message {
        position: relative;
        z-index: 0;
    }

    .hero-brand::before,
    .hero-message::before {
        content: "";
        display: block;
        position: absolute;
        z-index: -1;
        pointer-events: none;
        border-radius: 50%;
        background: radial-gradient(
            ellipse at center,
            rgba(255, 253, 248, 0.94) 0%,
            rgba(255, 253, 248, 0.84) 46%,
            rgba(255, 253, 248, 0.50) 67%,
            rgba(255, 253, 248, 0.18) 82%,
            rgba(255, 253, 248, 0) 100%
        );
    }

    .hero-brand::before {
        inset: -16px -28px -14px;
    }

    .hero-message {
        margin-top: 10px;
    }

    .hero-message::before {
        inset: -18px -30px -20px;
    }
}

@media (min-width: 1061px) and (max-height: 760px) {
    .hero-copy {
        top: 18px;
    }
}

/* --------------------------------------------------------------------------
   Launch homepage — Creator Office-11 exact approved image
   -------------------------------------------------------------------------- */
body.srt-launch-home {
    margin: 0;
    overflow: hidden;
    background: #fffdf8;
}

body.srt-launch-home #wpadminbar {
    position: fixed;
}

.launch-home-shell {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    background: #fffdf8;
}

body.admin-bar .launch-home-shell {
    height: calc(100vh - 32px);
}

.launch-home-poster {
    position: relative;
    flex: 0 0 auto;
    width: min(100vw, calc(100vh * 1.7768331562));
    aspect-ratio: 1672 / 941;
    overflow: hidden;
    background: #fffdf8;
}

body.admin-bar .launch-home-poster {
    width: min(100vw, calc((100vh - 32px) * 1.7768331562));
}

.launch-home-art {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.launch-hotspots,
.hotspot {
    position: absolute;
}

/* Each navigation layer covers the full approved artwork so percentage-based
   hotspots resolve against the poster rather than a zero-sized nav element. */
.launch-hotspots {
    inset: 0;
    z-index: 20;
    pointer-events: none;
}

.hotspot {
    display: block;
    z-index: 25;
    text-decoration: none;
    border-radius: 4px;
    pointer-events: auto;
    cursor: pointer;
}

.hotspot-hero-button {
    z-index: 30;
}

.hotspot span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hotspot:focus-visible {
    outline: 3px solid #c3872b;
    outline-offset: -3px;
    background: rgba(255, 255, 255, 0.12);
}

/* Percentages are mapped directly to the 1672 × 941 approved artwork. */
.hotspot-home             { left: 42.1%; top: 0.6%; width: 4.9%; height: 7.8%; }
.hotspot-about            { left: 47.4%; top: 0.6%; width: 4.8%; height: 7.8%; }
.hotspot-publications-top { left: 52.4%; top: 0.6%; width: 8.6%; height: 7.8%; }
.hotspot-stack-top        { left: 61.0%; top: 0.6%; width: 9.3%; height: 7.8%; }
.hotspot-media-top        { left: 70.4%; top: 0.6%; width: 5.3%; height: 7.8%; }
.hotspot-contact-top      { left: 76.0%; top: 0.6%; width: 5.9%; height: 7.8%; }
.hotspot-inquiries-top    { left: 82.1%; top: 0.6%; width: 15.1%; height: 7.8%; }

.hotspot-hero-button      { left: 16.1%; top: 51.2%; width: 18.3%; height: 6.6%; }

.hotspot-publications-card { left: 0%;    top: 71.6%; width: 20.0%; height: 15.4%; }
.hotspot-stack-card        { left: 20.0%; top: 71.6%; width: 20.0%; height: 15.4%; }
.hotspot-media-card        { left: 40.0%; top: 71.6%; width: 20.0%; height: 15.4%; }
.hotspot-inquiries-card    { left: 60.0%; top: 71.6%; width: 20.0%; height: 15.4%; }
.hotspot-contact-card      { left: 80.0%; top: 71.6%; width: 20.0%; height: 15.4%; }

@media (max-width: 782px) {
    body.admin-bar .launch-home-shell {
        height: calc(100vh - 46px);
    }

    body.admin-bar .launch-home-poster {
        width: min(100vw, calc((100vh - 46px) * 1.7768331562));
    }
}

@media (max-width: 760px) {
    body.srt-launch-home {
        overflow: auto;
    }

    .launch-home-shell,
    body.admin-bar .launch-home-shell {
        height: auto;
        min-height: 0;
        align-items: flex-start;
    }

    .launch-home-poster,
    body.admin-bar .launch-home-poster {
        width: 100vw;
    }
}

/* Launch homepage navigation feedback — v2.8.
   The labels are part of the approved artwork, so hover/focus feedback is
   drawn over the mapped link regions without changing the image itself. */
.launch-top-navigation::before {
    content: "";
    position: absolute;
    z-index: 21;
    left: 42.15%;
    top: 6.2%;
    width: 4.75%;
    height: 0.55%;
    background: #fbf8f1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 140ms ease;
}

/* Hide the baked-in Home underline while another top item is active. */
.launch-top-navigation:has(.hotspot:not(.hotspot-home):hover)::before,
.launch-top-navigation:has(.hotspot:not(.hotspot-home):focus-visible)::before {
    opacity: 1;
}

.launch-top-navigation .hotspot {
    transition: background-color 150ms ease, box-shadow 150ms ease;
}

.launch-top-navigation .hotspot:not(.hotspot-inquiries-top):hover,
.launch-top-navigation .hotspot:not(.hotspot-inquiries-top):focus-visible {
    background: rgba(195, 135, 43, 0.055);
}

.launch-top-navigation .hotspot:not(.hotspot-home):not(.hotspot-inquiries-top)::after {
    content: "";
    position: absolute;
    left: 17%;
    right: 17%;
    bottom: 8%;
    height: 2px;
    background: #c3872b;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
}

.launch-top-navigation .hotspot:not(.hotspot-home):not(.hotspot-inquiries-top):hover::after,
.launch-top-navigation .hotspot:not(.hotspot-home):not(.hotspot-inquiries-top):focus-visible::after {
    transform: scaleX(1);
}

.hotspot-inquiries-top:hover,
.hotspot-inquiries-top:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 2px rgba(195, 135, 43, 0.92), 0 4px 14px rgba(7, 29, 57, 0.18);
}

.hotspot-hero-button:hover,
.hotspot-hero-button:focus-visible {
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 0 0 2px rgba(195, 135, 43, 0.95), 0 5px 16px rgba(7, 29, 57, 0.2);
}

.launch-destination-navigation .hotspot {
    transition: background-color 150ms ease, box-shadow 150ms ease;
}

.launch-destination-navigation .hotspot:hover,
.launch-destination-navigation .hotspot:focus-visible {
    background: rgba(195, 135, 43, 0.08);
    box-shadow: inset 0 0 0 2px rgba(195, 135, 43, 0.58);
}

@supports not selector(:has(*)) {
    /* Browsers without :has still receive the moving underline and highlight;
       only the baked Home underline remains visible. */
    .launch-top-navigation::before {
        display: none;
    }
}
