/* ==========================================================================
   Gallery House Offices — site stylesheet
   Responsive, mobile-first. Replaces the legacy fixed-width style.css.
   ========================================================================== */

/* --- design tokens -------------------------------------------------------- */

:root {
    --ink:            #16181b;
    --ink-soft:       #3c4249;
    --ink-muted:      #5d6670;   /* 5.36:1 on --surface-alt (was 4.34:1) */
    --line:           #e2ddd5;
    --line-strong:    #cdc5b8;
    --surface:        #ffffff;
    --surface-alt:    #f7f5f1;
    --surface-dark:   #16181b;
    /* Accent tones are darkened to clear WCAG AA (4.5:1) at 12px on both
       --surface and --surface-alt. Ratios: accent 5.60/5.14, dark 7.68/7.06. */
    --accent:         #8a5f2b;
    --accent-dark:    #6f4c22;
    --accent-tint:    #f4ece0;
    --available:      #1f7a4d;
    --available-tint: #e6f3ec;
    --let:            #8a6130;
    --let-tint:       #f4ece0;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                 'Helvetica Neue', Arial, sans-serif;

    --wrap: 1160px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
    --radius: 4px;
    --radius-lg: 8px;
    --shadow: 0 1px 2px rgba(22, 24, 27, .06), 0 8px 24px rgba(22, 24, 27, .07);
    --shadow-lift: 0 2px 4px rgba(22, 24, 27, .08), 0 16px 40px rgba(22, 24, 27, .12);
    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* --- reset ---------------------------------------------------------------- */

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

[id] { scroll-margin-top: 110px; }

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink-soft);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg, iframe { max-width: 100%; }
img { height: auto; border: 0; display: block; }

h1, h2, h3, h4 {
    margin: 0 0 .5em;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 1.35rem + 2.7vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 1rem + .6vw, 1.4rem); }
h4 { font-size: 1.0625rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .35em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--ink);
    color: #fff;
    padding: .75rem 1.25rem;
    text-decoration: none;
}
.skip-link:focus { left: 0; color: #fff; }

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

/* --- layout --------------------------------------------------------------- */

.container {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

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

.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3.5rem); }
.section--alt { background: var(--surface-alt); }
.section--dark { background: var(--surface-dark); color: #cfd3d8; }
.section--dark h2, .section--dark h3 { color: #fff; }

.section-head { max-width: 42rem; margin-bottom: clamp(1.75rem, 3vw, 2.75rem); }
.section-head p { color: var(--ink-muted); font-size: 1.0625rem; margin-bottom: 0; }

.kicker {
    display: block;
    margin-bottom: .75rem;
    color: var(--accent);
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.lead { font-size: clamp(1.0625rem, 1rem + .35vw, 1.25rem); color: var(--ink-soft); }

/* --- buttons -------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem 1.6rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: .9375rem;
    font-weight: 600;
    letter-spacing: .01em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .18s var(--ease), color .18s var(--ease),
                border-color .18s var(--ease), transform .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }

.btn--dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; }

.btn--ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

.btn--light { background: #fff; border-color: #fff; color: var(--ink); }
.btn--light:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.btn--outline-light { background: transparent; border-color: rgba(255, 255, 255, .35); color: #fff; }
.btn--outline-light:hover { background: #fff; border-color: #fff; color: var(--ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* --- header --------------------------------------------------------------- */

.topbar {
    background: var(--ink);
    color: #b9c0c8;
    font-size: .8125rem;
}
.topbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .35rem 1.5rem;
    padding-block: .55rem;
}
.topbar a { color: #e7e9ec; text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__item svg { flex: none; opacity: .7; }

.topbar__item--address { display: none; }

@media (min-width: 800px) {
    .topbar .container { justify-content: space-between; }
    .topbar__item--address { display: inline-flex; }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: saturate(160%) blur(8px);
    border-bottom: 1px solid var(--line);
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: .9rem;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.05;
}
.brand__name {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 1.05rem + 1vw, 1.75rem);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.015em;
}
.brand__address {
    margin-top: .3rem;
    font-size: clamp(.6875rem, .64rem + .2vw, .8125rem);
    color: var(--ink-muted);
    letter-spacing: .04em;
}

.header-actions { display: flex; align-items: center; gap: .75rem; }
.header-actions .btn { padding: .65rem 1.15rem; }

.btn--call { white-space: nowrap; }
.btn--call svg { flex: none; }

@media (max-width: 699px) {
    .btn--call { padding: .7rem .85rem; }
    .btn--call__text {
        position: absolute;
        width: 1px; height: 1px;
        margin: -1px; padding: 0;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem .85rem;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    color: var(--ink);
    font: inherit;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
}
.nav-toggle__bars { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

.site-nav { border-top: 1px solid var(--line); }
.site-nav[hidden] { display: none; }

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.site-nav li { margin: 0; }

.site-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .9rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: .9375rem;
    font-weight: 500;
    letter-spacing: .02em;
    text-decoration: none;
}
.site-nav li:last-child a { border-bottom: 0; }
.site-nav a:hover { color: var(--accent-dark); }
.site-nav a[aria-current="page"] { color: var(--accent-dark); font-weight: 700; }

.nav-status {
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .15rem .5rem;
    border-radius: 999px;
}
.nav-status--available { background: var(--available-tint); color: var(--available); }

@media (min-width: 900px) {
    .nav-toggle { display: none; }
    .site-nav { border-top: 0; }
    .site-nav[hidden] { display: block; }
    .site-nav ul {
        flex-direction: row;
        justify-content: flex-end;
        gap: clamp(1rem, 2.2vw, 2.25rem);
        padding-bottom: .35rem;
    }
    .site-nav a {
        display: inline-flex;
        padding: .35rem 0 .6rem;
        border-bottom: 2px solid transparent;
        text-transform: uppercase;
        font-size: .8125rem;
        font-weight: 600;
        letter-spacing: .1em;
    }
    .site-nav li:last-child a { border-bottom: 2px solid transparent; }
    .site-nav a:hover { border-bottom-color: var(--line-strong); }
    .site-nav a[aria-current="page"] { border-bottom-color: var(--accent); }
    .nav-status {
        width: 7px;
        height: 7px;
        padding: 0;
        margin-left: .4rem;
        border-radius: 50%;
        background: var(--available);
        font-size: 0;
        line-height: 0;
        overflow: hidden;
        color: transparent;
    }
}

/* --- hero ----------------------------------------------------------------- */

.hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: clamp(360px, 52vw, 580px);
    background: var(--ink) center 42% / cover no-repeat;
    color: #fff;
    isolation: isolate;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to top, rgba(10, 11, 13, .88) 0%, rgba(10, 11, 13, .55) 45%, rgba(10, 11, 13, .3) 100%);
}
.hero__inner { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.hero__inner > * { max-width: 46rem; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero .kicker { color: #dcb886; }
.hero p { color: #dfe2e6; font-size: clamp(1rem, .95rem + .4vw, 1.1875rem); }
.hero .btn-row { margin-top: 1.75rem; }

.page-hero {
    background: var(--surface-dark);
    color: #cfd3d8;
    padding-block: clamp(2.25rem, 5vw, 3.75rem);
}
.page-hero h1 { color: #fff; margin-bottom: 0; }
.page-hero .kicker { color: #dcb886; }
.page-hero p { margin-top: .75rem; margin-bottom: 0; color: #b9c0c8; max-width: 44rem; }
.page-hero .badge { margin-top: 1.1rem; }

.breadcrumbs {
    margin-bottom: 1rem;
    font-size: .8125rem;
    color: #8f979f;
    letter-spacing: .03em;
}
/* Breadcrumb links sit inline with the plain-text current page at only
   1.96:1 against it, so colour alone cannot distinguish them. */
.breadcrumbs a {
    color: #cfd3d8;
    text-decoration: underline;
    text-decoration-color: rgba(207, 211, 216, .45);
    text-underline-offset: 3px;
}
.breadcrumbs a:hover { color: #fff; text-decoration-color: currentColor; }
.breadcrumbs span { margin-inline: .5rem; opacity: .5; }

/* --- badges --------------------------------------------------------------- */

.badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
    padding: .35rem .85rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.badge::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: currentColor;
}
.badge--available { background: var(--available-tint); color: var(--available); }
.badge--let { background: var(--let-tint); color: var(--let); }

/* --- key facts ------------------------------------------------------------ */

.facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.facts div { background: var(--surface); padding: 1.35rem 1.25rem; }
.section--alt .facts div { background: var(--surface); }
.facts dt {
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: .4rem;
}
.facts dd {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.0625rem, 1rem + .35vw, 1.25rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
    text-wrap: balance;
}

/* --- cards ---------------------------------------------------------------- */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 234px), 1fr));
    gap: clamp(1rem, 2.5vw, 1.75rem);
    align-items: stretch;
}

.office-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(1.35rem, 2.5vw, 1.75rem);
    text-decoration: none;
    color: inherit;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.office-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
    border-color: var(--line-strong);
    color: inherit;
}
.office-card--available { border-color: var(--available); border-width: 1px; box-shadow: var(--shadow); }
.office-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .5rem .75rem;
    margin-bottom: .85rem;
}
.office-card h3 { margin: 0; white-space: nowrap; }
.office-card__meta {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    font-size: .9375rem;
    color: var(--ink-soft);
}
.office-card__meta li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .45rem 0;
    border-bottom: 1px dashed var(--line);
    margin: 0;
}
.office-card__meta li:last-child { border-bottom: 0; }
.office-card__meta strong { color: var(--ink); font-weight: 600; text-align: right; }
.office-card__cta {
    margin-top: auto;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--accent-dark);
}
.office-card:hover .office-card__cta { color: var(--ink); }

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 3vw, 2.25rem);
}
@media (min-width: 560px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature h3 { margin-bottom: .35rem; }
.feature p { color: var(--ink-muted); font-size: .9375rem; margin-bottom: 0; }
.feature__icon {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: var(--accent-tint);
    color: var(--accent-dark);
}

/* --- split media ---------------------------------------------------------- */

.split {
    display: grid;
    gap: clamp(1.75rem, 4vw, 3.5rem);
    align-items: center;
}
@media (min-width: 860px) {
    .split { grid-template-columns: 1fr 1fr; }
    .split--wide-text { grid-template-columns: 1.15fr 1fr; }
}
.split__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* --- spec list (office detail) -------------------------------------------- */

.spec-list {
    margin: 0;
    border-top: 1px solid var(--line);
}
.spec-list > div {
    display: grid;
    gap: .25rem 2rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) {
    .spec-list > div { grid-template-columns: minmax(140px, 200px) 1fr; }
}
.spec-list dt {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    padding-top: .15rem;
}
.spec-list dd { margin: 0; color: var(--ink); }

.tick-list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 2rem; }
@media (max-width: 560px) { .tick-list { columns: 1; } }
.tick-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: .6rem;
    break-inside: avoid;
}
.tick-list li::before {
    content: '';
    position: absolute;
    left: 0; top: .5em;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

/* --- gallery -------------------------------------------------------------- */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(.75rem, 2vw, 1.25rem);
    list-style: none;
    margin: 0;
    padding: 0;
}
.gallery li { margin: 0; }
.gallery a {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface-alt);
}
.gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .4s var(--ease);
}
.gallery--portrait img { aspect-ratio: 3 / 4; }
.gallery a:hover img { transform: scale(1.04); }

.figure-wide img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.figure-wide figcaption {
    margin-top: .75rem;
    font-size: .875rem;
    color: var(--ink-muted);
}

/* --- lightbox ------------------------------------------------------------- */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(10, 11, 13, .92);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--ease), visibility .2s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}
.lightbox__close {
    position: absolute;
    top: clamp(.75rem, 2vw, 1.5rem);
    right: clamp(.75rem, 2vw, 1.5rem);
    width: 44px; height: 44px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .12);
    border: 0;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .25); }

/* --- map ------------------------------------------------------------------ */

.map-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- contact -------------------------------------------------------------- */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(1rem, 2.5vw, 1.75rem);
}
.contact-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
}
.contact-card__icon {
    display: grid;
    place-items: center;
    width: 48px; height: 48px;
    margin: 0 auto 1.1rem;
    border-radius: 50%;
    background: var(--accent-tint);
    color: var(--accent-dark);
}
.contact-card h2 { margin-bottom: .5rem; font-size: 1.15rem; }
.contact-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .9375rem; }
.contact-card a { font-weight: 600; word-break: break-word; }
.contact-card__note { margin-top: .75rem; font-size: .8125rem; color: var(--ink-muted); }

.form-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 3vw, 2.25rem);
    box-shadow: var(--shadow);
}

/* --- cta band ------------------------------------------------------------- */

.cta-band {
    background: var(--surface-dark);
    color: #cfd3d8;
    padding-block: clamp(2.75rem, 5vw, 4rem);
}
.cta-band__inner {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}
@media (min-width: 820px) {
    .cta-band__inner { grid-template-columns: 1.4fr auto; }
}
.cta-band h2 { color: #fff; margin-bottom: .35em; }
.cta-band p { margin-bottom: 0; color: #b9c0c8; }

/* --- footer --------------------------------------------------------------- */

.site-footer {
    background: #101215;
    color: #98a0a9;
    font-size: .9375rem;
    padding-block: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.footer-grid {
    display: grid;
    gap: clamp(1.75rem, 4vw, 3rem);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    padding-bottom: clamp(2rem, 4vw, 2.75rem);
}
.site-footer h3 {
    margin-bottom: .9rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
/* Underlined at rest: footer links sit inline with plain text at only
   1.76:1 against it, so colour alone cannot distinguish them. */
.site-footer a {
    color: #cfd3d8;
    text-decoration: underline;
    text-decoration-color: rgba(207, 211, 216, .45);
    text-underline-offset: 3px;
}
.site-footer a:hover { color: #fff; text-decoration-color: currentColor; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.footer-brand__name {
    display: block;
    margin-bottom: .6rem;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
}
.footer-brand p { color: #98a0a9; margin-bottom: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-block: 1.35rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
    align-items: center;
    justify-content: space-between;
    font-size: .8125rem;
    color: #7d858e;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }

/* --- misc ----------------------------------------------------------------- */

.notice {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--accent);
    background: var(--accent-tint);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--ink);
}
.notice p { margin-bottom: 0; }

.prose h2 { margin-top: 2.25rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.75rem; }

.error-page { text-align: center; }
.error-page img { margin-inline: auto; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

@media print {
    .site-header, .topbar, .cta-band, .site-footer, .btn-row, .lightbox { display: none !important; }
    body { color: #000; font-size: 11pt; }
    a { color: #000; text-decoration: none; }
}
