/* ==========================================================================
   EasyBids 2026 — site stylesheet
   Built from "1111055 EasyBids - Webpage Design 04-09-26 1-16 Export.xd"
   Artboards are 1920px wide with a 72px gutter (1776px content column).
   No Bootstrap. Flex/grid, fluid type via clamp().
   ========================================================================== */

/* --- design tokens ------------------------------------------------------ */
:root {
    --orange: #ff5c00;
    --orange-dark: #e65300;
    --red: #ff0000;
    --black: #000000;
    --white: #ffffff;
    --grey-333: #333333;
    --grey-666: #666666;
    --grey-808: #808080;
    --grey-999: #999999;
    --grey-b3: #b3b3b3;
    --grey-e6: #e6e6e6;
    --grey-f5: #f5f5f5;

    --ink: #000000;
    --ink-muted: #999999;

    /* radii, straight from the artboards */
    --r-sm: 8px;    /* buttons */
    --r-md: 20px;   /* auction cards */
    --r-pill: 40px; /* form inputs */
    --r-lg: 60px;   /* panels, feature cards, blobs */

    /* fluid type — the second value is the 1920px artboard size */
    --fs-hero: clamp(2.5rem, 1.30rem + 3.75vw, 4.5rem);   /* 72 */
    --fs-h2: clamp(2rem, 1.28rem + 2.29vw, 3.625rem);     /* 58 */
    --fs-h3: clamp(1.625rem, 1.30rem + 1.04vw, 2.75rem);  /* 44 */
    --fs-h4: clamp(1.375rem, 1.24rem + 0.42vw, 1.875rem); /* 30 */
    --fs-h5: clamp(1.25rem, 1.13rem + 0.42vw, 1.75rem);   /* 28 */
    --fs-lead: clamp(1.0625rem, 0.98rem + 0.26vw, 1.375rem); /* 22 */
    --fs-body: clamp(1rem, 0.96rem + 0.16vw, 1.375rem);      /* 22 */
    --fs-cite: clamp(1.125rem, 1.06rem + 0.21vw, 1.625rem);  /* 26 */
    --fs-sm: 1rem;                                           /* 16 */

    --gutter: clamp(1.25rem, 0.5rem + 2.34vw, 4.5rem);    /* 20 -> 72 */
    --container: 1776px;
    --section-y: clamp(3.5rem, 2rem + 4.7vw, 8rem);

    --shadow-card: 0 2px 18px rgba(0, 0, 0, .06);
}

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

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

body {
    margin: 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.5;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

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

/* WebForms wraps everything in one <form>; it must not create a layout box */
form#form1 { display: contents; }

/* --- layout helpers ----------------------------------------------------- */
.container {
    width: 100%;
    max-width: calc(var(--container) + var(--gutter) * 2);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2rem, 1rem + 3vw, 4rem); }
.section--grey { background: var(--grey-f5); }

.stack > * + * { margin-top: 1.25rem; }

/* two-column media/text rows */
.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 1rem + 3vw, 5.75rem);
    align-items: center;
}
.split--media-right > .split__media { order: 2; }

@media (max-width: 900px) {
    .split { grid-template-columns: minmax(0, 1fr); }
    .split--media-right > .split__media { order: 0; }
}

/* --- typography --------------------------------------------------------- */
.h-hero {
    font-size: var(--fs-hero);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.01em;
}

.h2 {
    font-size: var(--fs-h2);
    font-weight: 700;
    line-height: 1.12;
}

.h3 {
    font-size: var(--fs-h3);
    font-weight: 400;
    line-height: 1.2;
}

.h4 { font-size: var(--fs-h4); font-weight: 700; line-height: 1.2; }

.h5 {
    font-size: var(--fs-h5);
    font-weight: 700;
    line-height: 1.25;
}

.h5--muted { color: var(--grey-999); }
.h5--grey { color: var(--grey-808); }

.lead { font-size: var(--fs-lead); }
.center { text-align: center; }
.measure { max-width: 60ch; }
.measure-wide { max-width: 80ch; }
.center .measure, .center .measure-wide { margin-inline: auto; }

/* bullet list — 10px grey dot, 20px indent (artboard) */
.ticks { display: grid; gap: .5rem; }
.ticks li {
    position: relative;
    padding-left: 2.5rem;
    line-height: 1.45;
}
.ticks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--grey-999);
}
.ticks--light li::before { background: var(--white); }

/* --- buttons ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-width: 150px;
    min-height: 50px;
    padding: .75rem 1.5rem;
    border: 0;
    border-radius: var(--r-sm);
    background: var(--orange);
    color: var(--white);
    font-family: 'Open Sans', 'Montserrat', Arial, sans-serif;
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background-color .18s ease, transform .18s ease;
}
.btn:hover, .btn:focus-visible { background: var(--orange-dark); }
.btn:active { transform: translateY(1px); }
.btn--wide { min-width: 242px; }
.btn--ghost {
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
}
.btn--ghost:hover { background: var(--orange); color: var(--white); }

/* --- announcement bar --------------------------------------------------- */
.announce {
    background: var(--black);
    color: var(--white);
    font-size: clamp(.8125rem, .74rem + .23vw, 1.375rem);
    font-weight: 600;
    text-align: center;
}
.announce__inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    flex-wrap: wrap;
    padding-block: .5rem;
}
.announce__chip {
    display: inline-block;
    padding: .15em .9em;
    border-radius: var(--r-sm);
    background: var(--white);
    color: var(--black);
}
.announce__chip:hover { background: var(--orange); color: var(--white); }

/* --- header ------------------------------------------------------------- */
.site-header {
    position: relative;
    z-index: 40;
    background: var(--white);
}
.site-header__inner {
    display: flex;
    align-items: center;
    gap: clamp(1rem, .4rem + 1.8vw, 2.5rem);
    min-height: 104px;
    padding-block: 1rem;
}
.site-header__logo { flex: 0 0 auto; margin-right: auto; }
.site-header__logo img { width: clamp(180px, 14vw, 355px); }

.nav { display: flex; align-items: center; gap: clamp(1rem, .3rem + 2vw, 3.1rem); }
.nav__link {
    font-size: var(--fs-lead);
    font-weight: 400;
    white-space: nowrap;
    padding-block: .35rem;
    border-bottom: 2px solid transparent;
}
.nav__link:hover, .nav__link[aria-current="page"] { border-bottom-color: var(--orange); }

.nav__phone { display: inline-flex; align-items: center; gap: .5rem; }
.nav__phone svg, .nav__mail svg { width: 26px; height: 26px; flex: none; fill: var(--orange); }
.nav__mail { display: inline-flex; }

.nav__login {
    display: inline-flex;
    align-items: center;
    padding: .5rem 1.25rem;
    border: 1px solid var(--orange);
    border-radius: var(--r-sm);
    color: var(--orange);
    font-size: var(--fs-lead);
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: background .15s ease, color .15s ease;
}
.nav__login:hover, .nav__login:focus-visible { background: var(--orange); color: var(--white); }

/* dropdown */
.nav__item { position: relative; }
.nav__panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 320px;
    padding: .75rem;
    border-radius: var(--r-sm);
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .16);
    display: none;
}
.nav__item:hover .nav__panel,
.nav__item:focus-within .nav__panel { display: block; }
.nav__panel a {
    display: block;
    padding: .55rem .9rem;
    border-radius: 6px;
    font-size: 1rem;
    color: var(--ink);
}
.nav__panel a:hover { background: var(--grey-f5); color: var(--orange); }

/* overlay variant — homepage header sits on the hero photo */
.site-header--overlay {
    position: absolute;
    inset-inline: 0;
    background: transparent;
    color: var(--white);
}
.site-header--overlay .nav__panel a { color: var(--ink); }

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    color: var(--orange);
    cursor: pointer;
    padding: 0;
}
.nav-toggle span {
    display: block;
    height: 3px;
    margin: 6px auto;
    width: 28px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 1100px) {
    .nav-toggle { display: block; }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: var(--gutter);
        right: var(--gutter);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: .5rem;
        border-radius: var(--r-sm);
        background: var(--white);
        color: var(--ink);
        box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
    }
    .nav.is-open { display: flex; }
    .nav__link { padding: .85rem 1rem; border-bottom: 1px solid var(--grey-e6); }
    .nav__link:hover, .nav__link[aria-current="page"] { border-bottom-color: var(--grey-e6); color: var(--orange); }
    .nav__panel {
        position: static;
        transform: none;
        display: block;
        min-width: 0;
        padding: 0 0 .5rem 1rem;
        box-shadow: none;
    }
    .nav__item > .nav__link { border-bottom: 0; }
}

/* --- hero --------------------------------------------------------------- */
/* homepage: full-bleed photo, dark scrim, white copy */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(520px, 47vw, 900px);
    padding-top: 104px;
    background: var(--black) center/cover no-repeat;
    color: var(--white);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .55) 45%, rgba(0, 0, 0, .15) 100%);
}
.hero > .container { position: relative; z-index: 1; }
.hero__copy { max-width: 46rem; }
.hero__copy p { margin-top: 1.5rem; }
.hero__copy .btn { margin-top: 2rem; }

/* inner pages: title left, rounded photo right on a grey blob */
.page-hero { padding-block: clamp(2.5rem, 1rem + 4vw, 5rem); }
.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, .5rem + 3vw, 4rem);
    align-items: center;
}
.page-hero__title { font-size: var(--fs-hero); font-weight: 700; line-height: 1.06; }
.page-hero__sub { margin-top: 1.25rem; font-size: var(--fs-lead); }
.page-hero__media { position: relative; }
.page-hero__media::before {
    content: "";
    position: absolute;
    right: -2%;
    top: -8%;
    width: 86%;
    height: 116%;
    border-radius: var(--r-lg);
    background: var(--grey-e6);
}
.page-hero__media img {
    position: relative;
    width: 100%;
    border-radius: var(--r-lg);
    object-fit: cover;
}
@media (max-width: 900px) {
    .page-hero__grid { grid-template-columns: minmax(0, 1fr); }
    .page-hero__media { order: -1; }
}

/* --- logo strip --------------------------------------------------------- */
.logos__label {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: var(--fs-lead);
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--grey-808);
    text-align: center;
    text-transform: uppercase;
}
.logos__row {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: clamp(1.5rem, 1rem + 3vw, 4rem);
}
.logos__row img {
    max-height: clamp(44px, 3.5vw, 72px);
    width: auto;
    filter: grayscale(1);
    opacity: .82;
    transition: filter .2s ease, opacity .2s ease;
}
.logos__row img:hover { filter: none; opacity: 1; }

/* --- product showcase rows (home) --------------------------------------- */
.showcase__media { position: relative; padding: clamp(1.5rem, 3vw, 3.5rem) 0; }
.showcase__media::before,
.showcase__media::after {
    content: "";
    position: absolute;
    border-radius: var(--r-lg);
    z-index: 0;
}
.showcase__media::before { left: 4%; top: 0; width: 46%; height: 100%; background: var(--grey-e6); }
.showcase__media::after { left: 28%; top: 12%; width: 52%; height: 70%; background: var(--grey-b3); }
.showcase__media img { position: relative; z-index: 1; width: 100%; }

.showcase__block + .showcase__block { margin-top: clamp(2rem, 1rem + 3vw, 3.75rem); }
.showcase__block .btn { margin-top: 1.5rem; }
.showcase__block .ticks { margin-top: 1.25rem; }
.showcase__block p { margin-top: .75rem; }

/* --- black rounded callout band ----------------------------------------- */
.band {
    border-radius: var(--r-lg);
    background: var(--black);
    color: var(--white);
    padding: clamp(2.5rem, 1.5rem + 3vw, 4.25rem) clamp(1.5rem, 1rem + 3vw, 5rem);
    text-align: center;
}
.band h2 {
    font-size: var(--fs-h3);
    font-weight: 400;
    color: var(--orange);
}
.band p { margin-top: 1.25rem; margin-inline: auto; max-width: 92ch; }

/* --- testimonials ------------------------------------------------------- */
.quotes {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 1rem + 2vw, 3.75rem);
    align-items: stretch;
}
.quote {
    display: flex;
    flex-direction: column;
    padding: clamp(1.75rem, 1rem + 2vw, 3rem);
    border: 1px solid var(--orange);
    border-radius: var(--r-lg);
    background: var(--white);
    text-align: center;
}
.quote__mark { width: 74px; margin: 0 auto 1.5rem; }
.quote__text {
    flex: 1 1 auto;
    font-weight: 300;
    font-size: clamp(1.125rem, 1rem + .5vw, 1.875rem);
    line-height: 1.32;
    color: var(--orange);
}
.quote__rule { margin: 1.75rem auto 1.25rem; width: 80%; height: 1px; background: var(--orange); border: 0; }
.quote__cite { font-size: var(--fs-cite); font-style: normal; color: var(--ink); }

/* --- feature cards (product pages) -------------------------------------- */
/* Front: icon + title. Hover/focus or tap: orange panel with the detail. */
.features {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.25rem, .75rem + 2vw, 3.75rem);
}
.feature {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    min-height: 296px;
    padding: 2.25rem 2rem;
    border: 0;
    border-radius: var(--r-lg);
    background: var(--grey-f5);
    color: var(--ink);
    font: inherit;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: background-color .25s ease;
}
.feature__icon { width: 72px; height: 72px; }
.feature__icon img { width: 100%; height: 100%; object-fit: contain; }
.feature__title { font-size: var(--fs-h5); font-weight: 700; }

.feature__detail {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    padding: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
    border-radius: var(--r-lg);
    background: var(--orange);
    color: var(--white);
    text-align: left;
    font-size: clamp(.9375rem, .88rem + .2vw, 1.375rem);
    line-height: 1.35;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.feature:hover .feature__detail,
.feature:focus-visible .feature__detail,
.feature.is-open .feature__detail {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.feature__detail .ticks li::before { background: var(--white); }
.feature__detail .btn { align-self: flex-start; margin-top: auto; background: var(--white); color: var(--orange); }
.feature__detail .btn:hover { background: var(--black); color: var(--white); }

/* --- "what do you need" / package cards --------------------------------- */
.choice-cards {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.25rem, .75rem + 2vw, 3.75rem);
}
.choice {
    display: flex;
    flex-direction: column;
    border-radius: var(--r-lg);
    background: var(--grey-f5);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.choice__media { background: var(--white); }
.choice__media img { width: 100%; aspect-ratio: 470 / 338; object-fit: contain; padding: 1.5rem; }
.choice__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
    text-align: center;
}
.choice__title { font-size: var(--fs-h5); font-weight: 700; }
.choice__actions {
    margin-top: auto;
    padding-top: .5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}

/* --- about: alternating info panels ------------------------------------- */
.panels { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 0; }
.panel {
    padding: clamp(2rem, 1rem + 3vw, 4.5rem) clamp(1.5rem, 1rem + 2vw, 3.5rem);
    border-radius: var(--r-lg);
}
.panel--grey { background: var(--grey-f5); }
.panel__icon { width: 96px; margin-bottom: 1.75rem; }
.panel__title { font-size: var(--fs-h3); font-weight: 400; line-height: 1.15; }
.panel__title + * { margin-top: 1.5rem; }
.panel p + p { margin-top: 1rem; }
.panel .ticks { margin-top: 1rem; }

/* --- "why choose" icon grid --------------------------------------------- */
.reasons {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(2rem, 1rem + 3vw, 4.5rem);
    text-align: center;
}
.reason__icon { width: 96px; height: 96px; margin: 0 auto 1.5rem; }
.reason__icon img { width: 100%; height: 100%; object-fit: contain; }

/* --- forms -------------------------------------------------------------- */
.form-card {
    border-radius: var(--r-lg);
    background: var(--white);
    box-shadow: 0 8px 44px rgba(0, 0, 0, .1);
    padding: clamp(1.75rem, 1rem + 2.5vw, 3.25rem);
}
.form-card__title { font-size: var(--fs-h4); font-weight: 700; }
.form-card__intro { margin-top: 1rem; }

.field { margin-top: 1.5rem; }
.field__label {
    display: block;
    margin-bottom: .5rem;
    font-size: var(--fs-lead);
    font-weight: 700;
}
.field__label--required { color: var(--red); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea,
.field select {
    width: 100%;
    min-height: 43px;
    padding: .5rem 1.25rem;
    border: 1px solid var(--grey-b3);
    border-radius: var(--r-pill);
    background: var(--white);
    font: inherit;
    font-size: 1rem;
    color: var(--ink);
}
.field textarea {
    min-height: 160px;
    border-radius: 24px;
    padding-top: .9rem;
    resize: vertical;
}
.field input:focus, .field textarea:focus {
    outline: 2px solid var(--orange);
    outline-offset: 1px;
    border-color: var(--orange);
}

.form-card .btn { margin-top: 1.75rem; }
.form-captcha { margin-top: 1.75rem; }

.form-message { margin-top: 1.25rem; font-weight: 600; }
.form-message--error { color: var(--red); }
.form-message--ok { color: #128a3c; }

/* validators */
.field span[style*="color"], .validator { display: block; margin-top: .35rem; font-size: .9375rem; color: var(--red); }

/* --- contact details ---------------------------------------------------- */
.contact-detail + .contact-detail { margin-top: 2.5rem; }
.contact-detail__role { font-size: var(--fs-h5); font-weight: 700; color: var(--grey-999); }
.contact-detail__lines { margin-top: .75rem; }
.contact-detail__lines p { line-height: 1.55; }

/* --- featured auctions -------------------------------------------------- */
.auctions {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(1.25rem, .75rem + 1.6vw, 2rem);
}
.auction {
    display: flex;
    flex-direction: column;
    border-radius: var(--r-md);
    background: var(--grey-f5);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.auction:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0, 0, 0, .12); }
.auction__media {
    aspect-ratio: 420 / 302;
    background: var(--grey-e6);
    overflow: hidden;
}
.auction__media img { width: 100%; height: 100%; object-fit: cover; }
.auction__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem;
}
.auction__title {
    font-size: var(--fs-lead);
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}
.auction__meta { font-size: var(--fs-sm); line-height: 1.6; }
.auction__meta dt { color: var(--grey-666); }
.auction__meta dd { margin: 0 0 .75rem; }
.auction__meta dd:last-child { margin-bottom: 0; }
.auctions__cta { margin-top: 3rem; text-align: center; }

.auctions__empty {
    margin-top: 2rem;
    padding: 2.5rem;
    border-radius: var(--r-md);
    background: var(--grey-f5);
    text-align: center;
    color: var(--grey-666);
}

/* --- how it works figure ------------------------------------------------ */
.how figure { margin-top: 3rem; }
.how img { width: 100%; }

/* --- footer ------------------------------------------------------------- */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}
.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 1rem + 3vw, 4rem);
}
.site-footer__logo img { width: clamp(200px, 18vw, 355px); }
.site-footer h2 { font-size: var(--fs-sm); font-weight: 700; margin-bottom: 1rem; }
.site-footer li + li { margin-top: .6rem; }
.site-footer a:hover { color: var(--orange); }
.site-footer ul, .site-footer p { font-size: var(--fs-sm); }
.site-footer__bottom {
    margin-top: clamp(2rem, 1rem + 3vw, 3.75rem);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .55);
    font-size: var(--fs-sm);
}
@media (max-width: 800px) {
    .site-footer__grid { grid-template-columns: minmax(0, 1fr); }
}

/* --- utilities ---------------------------------------------------------- */
.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;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 100;
    padding: .75rem 1.25rem;
    background: var(--orange);
    color: var(--white);
}
.skip-link:focus { left: 1rem; top: 1rem; }

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