/* ===============================================================
   Base / Site Foundation
   =============================================================== */
* {
    transition: background-color 300ms ease, color 300ms ease;
}
*:focus {
    outline: none;
}
h1, h2, h3, h4, h5, h6,
.card-title,
.article-list-title,
.article-detail-title,
.event-week-title,
.event-card-title,
.event-list-title,
.event-detail-title {
    font-family: "Roboto Slab", Georgia, "Times New Roman", serif;
}
html {
    min-height: 100%;
}
html, body {
    color: rgba(33, 37, 41, 1);
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body > main {
    flex: 1;
}
.hidden {
    display: none !important;
}
.page-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 1.5rem 0 1rem;
    position: relative;
}
.page-title::after {
    content: "";
    display: block;
    width: 72px;
    height: 4px;
    margin-top: .55rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #dd4814, #f6a03c);
}
hr {
    border: none;
    border-top: 1px solid rgba(33, 37, 41, .1);
    margin: 1.5rem 0;
}
.mediumtext {
    font-size: 0.9rem;
    color: rgba(33, 37, 41, .8);
}

/* Reusable badge pill */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .2em .35em;
    border-radius: 10rem;
    font-size: .75rem;
    font-weight: 600;
    line-height: 1;
    min-width: 30px;
    color: rgba(33, 37, 41, .85);
    background-color: #f7f7f7;
    white-space: nowrap;
}

/* Default form control spacing */
input[type="text"],
input[type="search"],
select,
.form-control {
    padding: .4rem .45rem;
    width: 100%;
    font-size: 0.9rem;
    color: rgba(33, 37, 41, 1);
}

/* Bootstrap-independent input-group (supports prepend/append addons) */
.input-group {
    display: flex;
    align-items: stretch;
    width: 100%;
}
.input-group > .form-control {
    flex: 1 1 auto;
    min-width: 0;
    border: 1px solid #ddd;
    background: #fff;
}
.input-group > .input-group-addon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 .65rem;
    border: 1px solid #ddd;
    background: #f7f8f9;
    color: rgba(33, 37, 41, .7);
    white-space: nowrap;
    line-height: 1;
}
.input-group > .input-group-addon svg {
    display: block;
}
.input-group > .input-group-addon .fa {
    font-size: 14px;
    line-height: 1;
}
.input-group > .form-control:first-child {
    border-radius: 3px 0 0 3px;
}
.input-group > .form-control:last-child {
    border-radius: 0 3px 3px 0;
}
.input-group > .input-group-addon:first-child {
    border-radius: 3px 0 0 3px;
    border-right: none;
}
.input-group > .input-group-addon:last-child {
    border-radius: 0 3px 3px 0;
    border-left: none;
}

.sr-only {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* ── Utility bar ── */
.site-utility-bar {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(140deg, #0f1620, #172837);
    color: #f4f7fb;
}
.site-utility-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: .42rem 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .9rem;
}
.site-utility-left,
.site-utility-right {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    position: relative;
}
.site-utility-market {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .68rem;
    font-weight: 800;
    color: #9ec3e1;
}
.site-utility-link {
    color: #f2f6fb;
    text-decoration: none;
    font-size: .78rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-family: "Oswald", "Arial Narrow", sans-serif;
}
.site-utility-link:hover,
.site-utility-link:focus {
    color: #ffbf62;
}
.site-utility-now {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #f2f6fb;
    font-size: .8rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-family: "Oswald", "Arial Narrow", sans-serif;
}
.site-utility-now .fa {
    color: #ffbf62;
    font-size: .82rem;
}
.site-utility-time {
    line-height: 1;
}
.site-utility-temp {
    line-height: 1;
    font-weight: 700;
    color: #ffbf62;
    letter-spacing: 0;
}
.site-utility-cta {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 .75rem;
    border-radius: 999px;
    border: 1px solid #f6a03c;
    background: #f6a03c;
    color: #122133;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-family: "Oswald", "Arial Narrow", sans-serif;
    font-size: .76rem;
    font-weight: 700;
}
.site-utility-cta:hover,
.site-utility-cta:focus {
    color: #122133;
    background: #ffc06c;
    border-color: #ffc06c;
}

/* ── User menu trigger ── */
.user-menu-trigger {
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .15rem .52rem;
    cursor: pointer;
}
.user-menu-trigger .fa {
    font-size: .82rem;
}
.user-menu-trigger:hover,
.user-menu-trigger:focus {
    border-color: rgba(221, 72, 20, 1);
}
.user-menu-avatar {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #f6a03c;
    color: #0f2134;
    font-size: .7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.user-topbar-greeting {
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .01em;
    text-transform: none;
}
.user-menu-panel {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 240px;
    background: #fff;
    border: 1px solid #d6d6d6;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
    z-index: 1200;
    padding: .4rem;
}
.user-menu-meta {
    display: flex;
    flex-direction: column;
    padding: .5rem .55rem;
    color: #1e1e1e;
    border-bottom: 1px solid #ececec;
    margin-bottom: .3rem;
}
.user-menu-meta strong {
    font-size: .86rem;
    line-height: 1.2;
}
.user-menu-meta span {
    font-size: .75rem;
    color: #666;
    margin-top: .12rem;
}
.user-menu-item {
    display: block;
    text-decoration: none;
    color: #111;
    font-size: .84rem;
    padding: .48rem .55rem;
}
.user-menu-item:hover,
.user-menu-item:focus {
    background: #f3f5f7;
    color: #111;
}
.user-menu-divider {
    height: 1px;
    background: #ececec;
    margin: .3rem 0;
}
.user-menu-item--danger {
    color: #b42318;
}

/* ── Site header & navigation ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    border-bottom: 1px solid rgba(14, 36, 55, .12);
    background: #e3e3e3;
    backdrop-filter: saturate(165%) blur(10px);
}
.site-header.is-scrolled {
    background: #000;
    box-shadow: 0 10px 30px rgba(10, 28, 42, .14);
}
.site-header-shell {
    max-width: 1260px;
    margin: 0 auto;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: .4rem 1.15rem;
}
.site-logo {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.site-logo img {
    display: block;
    width: auto;
    max-width: 170px;
    max-height: 52px;
    height: auto;
}
.site-primary-nav {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}
.site-primary-nav a {
    position: relative;
    color: #1c2f42;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Oswald", "Arial Narrow", sans-serif;
    letter-spacing: .05em;
    font-size: 1.02rem;
    font-weight: 500;
    padding: .48rem .6rem;
}
.site-primary-nav a::after {
    content: "";
    position: absolute;
    left: .5rem;
    right: .5rem;
    bottom: .18rem;
    height: 2px;
    background: #f6a03c;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 170ms ease;
}
.site-primary-nav a:hover,
.site-primary-nav a:focus,
.site-primary-nav a.is-active {
    color: #0f4d88;
}
.site-primary-nav a:hover::after,
.site-primary-nav a:focus::after,
.site-primary-nav a.is-active::after {
    transform: scaleX(1);
}
.site-header-actions {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}
.site-search-link {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    min-height: 38px;
    padding: 0 .7rem;
    color: #18334b;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(20, 43, 64, .14);
    background: rgba(255, 255, 255, .72);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-family: "Oswald", "Arial Narrow", sans-serif;
}
.site-search-link:hover,
.site-search-link:focus {
    color: #0f4d88;
    border-color: rgba(15, 77, 136, .3);
}
/* ── Search overlay ───────────────────────────────────────────── */
.site-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: clamp(60px, 12vh, 140px);
    background: rgba(10, 22, 36, .72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: searchOverlayIn 180ms ease;
}
.site-search-overlay[hidden] { display: none; }
@keyframes searchOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.site-search-overlay-inner {
    position: relative;
    width: min(640px, calc(100vw - 2rem));
}
.site-search-overlay-form {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}
.site-search-overlay-form input[type="search"] {
    flex: 1;
    min-width: 0;
    padding: 1rem 1.1rem;
    border: none;
    outline: none;
    font-size: 1.15rem;
    color: #1c2f42;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
}
.site-search-overlay-form input[type="search"]::placeholder {
    color: #aab;
}
.site-search-overlay-submit {
    flex: 0 0 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(221, 72, 20, 1);
    color: #fff;
    border: none;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 160ms ease;
}
.site-search-overlay-submit:hover {
    background: rgba(221, 72, 20, .85);
}
.site-search-overlay-prompts {
    margin-top: .8rem;
    color: rgba(255, 255, 255, .9);
}
.site-search-overlay-prompts-label {
    display: block;
    margin-bottom: .35rem;
    font-size: .74rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-family: "Oswald", "Arial Narrow", sans-serif;
    color: rgba(255, 255, 255, .72);
}
.site-search-overlay-prompt-list {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}
.site-search-overlay-prompt {
    display: inline-flex;
    align-items: center;
    padding: .28rem .6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    font-size: .8rem;
    line-height: 1.2;
}
.site-search-overlay-prompt:hover,
.site-search-overlay-prompt:focus {
    border-color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .16);
    color: #fff;
}
.site-search-overlay-close {
    position: absolute;
    top: -2.6rem;
    right: -2rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .75);
    font-size: 1.25rem;
    cursor: pointer;
    padding: .25rem .5rem;
    line-height: 1;
}
.site-search-overlay-close:hover {
    color: #fff;
}
body.search-overlay-open {
    overflow: hidden;
}
.menu-toggle-btn {
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid #132c44;
    border-radius: 0;
    background: #132c44;
    color: #f1f6fb;
    font-size: 1rem;
    line-height: 1;
    min-width: 42px;
    min-height: 42px;
    padding: .45rem;
    cursor: pointer;
}
.menu-toggle-btn:hover,
.menu-toggle-btn:focus {
    border-color: #0f4d88;
    background: #0f4d88;
    color: #f9fcff;
}
.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}
.dashboard-site-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: #111;
    text-decoration: none;
    font-family: "Oswald", "Arial Narrow", sans-serif;
    font-size: .88rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .35rem 0;
}
.dashboard-site-link:hover,
.dashboard-site-link:focus {
    color: rgba(221, 72, 20, 1);
}
.dashboard-site-link .fa {
    font-size: 1rem;
}

body.menu-open {
    overflow: hidden;
}
.site-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 1090;
}
.site-menu-overlay[hidden] {
    display: none !important;
}
.site-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: min(420px, 92vw);
    height: 100dvh;
    background: #111214;
    color: #fff;
    box-shadow: -12px 0 40px rgba(0, 0, 0, .35);
    transform: translateX(100%);
    transition: transform 280ms ease;
    z-index: 1260;
}
.site-drawer.is-open {
    transform: translateX(0);
}
.site-drawer-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
}
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.drawer-brand {
    color: #f3f7fb;
    font-family: "Oswald", "Arial Narrow", sans-serif;
    font-size: 1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.drawer-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
}
.drawer-close-btn:hover,
.drawer-close-btn:focus {
    background: rgba(221, 72, 20, .18);
    border-color: rgba(221, 72, 20, .5);
    color: #fff;
}
.drawer-top {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    padding: 1rem;
}
.drawer-search {
    display: flex;
    align-items: stretch;
}
.drawer-search-input {
    border: 1px solid rgba(255, 255, 255, .2);
    border-right: none;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    padding: .82rem .78rem;
    font-size: .95rem;
    min-height: 50px;
}
.drawer-search-input::placeholder {
    color: rgba(255, 255, 255, .65);
}
.drawer-search-btn {
    border: 1px solid rgba(221, 72, 20, 1);
    background: rgba(221, 72, 20, 1);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .75rem;
    padding: 0 .85rem;
    min-height: 50px;
    cursor: pointer;
}
.drawer-group{
    padding-left: 1rem;
}
.drawer-group h3 {
    margin: 2rem 0 .4rem;
    color: #9ec3e1;
    text-transform: uppercase;
    font-size: .68rem;
    letter-spacing: .12em;
    font-weight: 800;
}
.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.drawer-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Oswald", "Arial Narrow", sans-serif;
    letter-spacing: .06em;
    font-size: 1.3rem;
    padding: .26rem 0;
}
.drawer-nav a:hover,
.drawer-nav a:focus,
.drawer-nav a.active {
    color: rgba(221, 72, 20, 1);
}
.drawer-bottom {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding: .9rem 1rem 1rem;
}
.drawer-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
}
.drawer-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 1px solid rgba(221, 72, 20, 1);
    background: rgba(221, 72, 20, 1);
    color: #fff;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .08em;
    font-weight: 700;
    padding: .58rem .5rem;
}
.drawer-btn--ghost {
    background: transparent;
    color: rgba(221, 72, 20, 1);
}
.drawer-links {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1rem;
    margin-top: .95rem;
}
.drawer-links a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: .86rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.drawer-links a:hover,
.drawer-links a:focus {
    color: #fff;
}

@media (max-width: 980px) {
    .site-primary-nav,
    .site-search-link {
        display: none;
    }
    .menu-toggle-btn {
        display: inline-flex;
    }
}

@media (max-width: 760px) {
    .site-utility-inner {
        padding: .38rem .75rem;
    }
    .site-utility-market {
        display: none;
    }
    .site-utility-right {
        gap: .55rem;
    }
    .site-header-shell {
        min-height: 62px;
        padding-left: .75rem;
        padding-right: .75rem;
    }
    .site-logo img {
        max-width: 148px;
        max-height: 44px;
    }
    .user-menu-panel {
        right: -8px;
        min-width: 220px;
    }
    .user-topbar-greeting {
        display: none;
    }
    .site-drawer {
        width: 100vw;
        max-width: 100vw;
    }
}

/* ── Layout utilities ── */
.content-centered {
    max-width: 1260px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.content-section {
    margin: 0 auto;
    max-width: 1260px;
    padding: 0 1.75rem 3.5rem;
}
section {
    margin: 0 auto;
    max-width: 1260px;
    padding: 2rem .5rem 2rem .5rem;
}
section h1 {
    margin-bottom: 2.5rem;
}
section h2 {
    font-size: 120%;
    line-height: 2.5rem;
    padding-top: 0;
}
section pre {
    background-color: rgba(247, 248, 249, 1);
    border: 1px solid rgba(242, 242, 242, 1);
    display: block;
    font-size: .9rem;
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    white-space: pre-wrap;
    word-break: break-all;
}
section code {
    display: block;
}
section a {
    color: rgba(221, 72, 20, 1);
}
section svg {
    margin-bottom: -5px;
    margin-right: 5px;
    width: 25px;
}
.further {
    background-color: rgba(247, 248, 249, 1);
    border-bottom: 1px solid rgba(242, 242, 242, 1);
    border-top: 1px solid rgba(242, 242, 242, 1);
}
.further h2:first-of-type {
    padding-top: 0;
}
.svg-stroke {
    fill: none;
    stroke: #000;
    stroke-width: 32px;
}

/* ── Breadcrumbs ── */
.breadcrumb-bar {
    padding: .85rem 1.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(247, 248, 249, .9));
    border: 1px solid rgba(20, 43, 64, .08);
    border-left: 0;
    border-right: 0;
    backdrop-filter: blur(4px);
}
.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
    margin: 0 auto;
    padding: 0;
    max-width: 1260px;
    font-size: .82rem;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: rgba(28, 47, 66, .7);
}
.breadcrumb li + li::before {
    content: '›';
    margin-right: .3rem;
    color: rgba(28, 47, 66, .35);
    font-size: .9em;
}
.breadcrumb a {
    color: rgba(28, 47, 66, .88);
    text-decoration: none;
    font-weight: 700;
}
.breadcrumb a:hover,
.breadcrumb a:focus {
    color: #dd4814;
}
.breadcrumb li:last-child a {
    color: rgba(28, 47, 66, .55);
    pointer-events: none;
    font-weight: 600;
}
.breadcrumb-preview a {
    display: inline-flex;
    align-items: center;
    background: #f59e0b;
    color: #fff !important;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .15rem .55rem;
    border-radius: 4px;
    pointer-events: none;
}
.breadcrumb-preview + li::before {
    display: none;
}

@media (max-width: 560px) {
    .breadcrumb li:last-child {
        display: none;
    }
}

/* ── Footer ── */
.site-footer {
    color: #e8edf3;
    background:
        radial-gradient(circle at top left, rgba(246, 160, 60, 0.22), transparent 38%),
        linear-gradient(160deg, #0f2134 0%, #132c44 48%, #0b1726 100%);
}
.site-footer-shell {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 20px;
}
.site-footer--guest .site-footer-shell {
    padding-top: 40px;
}
.site-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}
.site-footer-brand,
.site-footer-cta {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 26px 28px;
    backdrop-filter: blur(8px);
}
.site-footer-brand {
    background: #050d14;
}
.site-footer-cta {
    background: linear-gradient(145deg, rgba(246, 160, 60, 0.18), rgba(255, 255, 255, 0.06));
    box-shadow: 0 20px 40px rgba(4, 12, 22, 0.22);
}
.site-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.site-footer-logo img {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 72px;
}
.site-footer-kicker,
.site-footer-cta-kicker {
    margin: 18px 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 800;
    color: #f7c886;
}
.site-footer-summary,
.site-footer-cta p {
    margin: 0;
    max-width: 52ch;
    color: #c9d5e2;
    line-height: 1.7;
}
.site-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.site-footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 9px 14px;
    color: #f4f7fb;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
}
.site-footer-social a:hover,
.site-footer-social a:focus {
    color: #fff;
    border-color: rgba(246, 160, 60, 0.5);
    background: rgba(246, 160, 60, 0.16);
}
.site-footer-cta h2 {
    margin: 0 0 12px;
    color: #fff8ef;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
}
.site-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}
.site-footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #f6a03c;
    color: #10253b;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(8, 18, 28, 0.2);
}
.site-footer-button:hover,
.site-footer-button:focus {
    color: #10253b;
    background: #ffb150;
}
.site-footer-button--ghost {
    background: transparent;
    color: #eef4fb;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}
.site-footer-button--ghost:hover,
.site-footer-button--ghost:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
}
.site-footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 0;
}
.site-footer--guest .site-footer-links {
    margin-top: 24px;
}
.site-footer-links > div {
    padding-top: 18px;
}
.site-footer-links h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.site-footer-links a {
    display: block;
    margin: 0 0 10px;
    color: #c9d5e2;
    text-decoration: none;
    font-size: 13px;
}
.site-footer-links a:hover,
.site-footer-links a:focus {
    color: #fff0da;
}
.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9fb1c3;
    font-size: 13px;
}
.site-footer-bottom p {
    margin: 0;
}
.site-footer-debug {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #f1c98f;
    font-size: 12px;
}

@media (max-width: 900px) {
    .site-header {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
    .site-footer-top,
    .site-footer-links {
        grid-template-columns: 1fr 1fr;
    }
    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .site-utility-time {
        display: none;
    }
    .site-footer-shell {
        width: min(100% - 24px, 1100px);
        padding-top: 22px;
        padding-left: 2rem;
    }
    .site-footer--guest .site-footer-shell {
        padding-top: 28px;
    }
    .site-footer-top {
        grid-template-columns: 1fr;
    }
    .site-footer-links {
        grid-template-columns: 1fr 1fr;
    }
    .site-footer-brand,
    .site-footer-cta {
        padding: 22px 18px;
        border-radius: 18px;
    }
    .site-footer-logo img {
        max-width: 180px;
    }
}

