:root {
    --paper: #f4f0e7;
    --paper-2: #ebe5d8;
    --paper-3: #fffdf8;
    --ink: #17221f;
    --ink-2: #35433e;
    --muted: #68736f;
    --line: #d8d2c6;
    --line-strong: #bdb5a7;
    --pine: #153f35;
    --pine-2: #0d3028;
    --pine-3: #22594b;
    --mint: #cfe5da;
    --mint-soft: #e7f1ec;
    --saffron: #e6a837;
    --saffron-soft: #f7e8c8;
    --brick: #b54a35;
    --brick-soft: #f4ddd6;
    --blue: #2f6576;
    --blue-soft: #dcebef;
    --white: #ffffff;
    --shadow-xs: 0 1px 1px rgba(23, 34, 31, .04);
    --shadow-sm: 0 8px 20px rgba(23, 34, 31, .07);
    --shadow-lg: 0 24px 64px rgba(23, 34, 31, .14);
    --radius-xs: 7px;
    --radius-sm: 11px;
    --radius: 16px;
    --radius-lg: 24px;
    --sidebar-width: 264px;
    --content-width: 1180px;
    --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: Georgia, "Times New Roman", serif;
    --ease: 180ms cubic-bezier(.2, .7, .2, 1);
}

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

html {
    min-width: 320px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.nav-open,
body.sidebar-open,
body.modal-open { overflow: hidden; }

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4, p, ul, ol, dl { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -.025em; }
p { color: var(--ink-2); }

::selection { background: var(--saffron); color: var(--ink); }

:focus-visible {
    outline: 3px solid rgba(230, 168, 55, .75);
    outline-offset: 3px;
}

.sr-only {
    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 {
    position: fixed;
    z-index: 5000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--pine-2);
    border-radius: var(--radius-xs);
    transform: translateY(-160%);
    transition: transform var(--ease);
}

.skip-link:focus { transform: translateY(0); }

.shell {
    width: min(calc(100% - 40px), var(--content-width));
    margin-inline: auto;
}

.narrow-shell {
    width: min(calc(100% - 40px), 820px);
    margin-inline: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--pine);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .115em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 21px;
    height: 2px;
    content: "";
    background: currentColor;
}

.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 850;
    letter-spacing: -.04em;
    text-decoration: none;
}

.wordmark--inverse { color: #f7f2e8; }
.wordmark__text { transform: translateY(-1px); }

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--pine);
}

.brand-mark svg { width: 100%; height: 100%; }
.wordmark--inverse .brand-mark { color: var(--saffron); }

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius-xs);
    font-size: .9rem;
    font-weight: 760;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button--small { min-height: 38px; padding: 8px 14px; font-size: .82rem; }
.button--large { min-height: 50px; padding: 13px 21px; font-size: .96rem; }
.button--dark { color: #fff; background: var(--pine); }
.button--dark:hover { background: var(--pine-2); box-shadow: 0 8px 18px rgba(13, 48, 40, .18); }
.button--saffron { color: var(--ink); background: var(--saffron); }
.button--saffron:hover { background: #efb84c; box-shadow: 0 8px 18px rgba(230, 168, 55, .24); }
.button--paper { color: var(--ink); background: var(--paper-3); border-color: var(--line); }
.button--paper:hover { background: #fff; border-color: var(--line-strong); }
.button--ghost { color: var(--ink-2); background: transparent; border-color: var(--line); }
.button--ghost:hover { color: var(--ink); background: var(--paper-3); }
.button--danger { color: #fff; background: var(--brick); }
.button--wide { width: 100%; }
.button[disabled] { opacity: .55; pointer-events: none; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink-2);
    font-size: .88rem;
    font-weight: 720;
    text-decoration: none;
}

.text-link:hover { color: var(--pine); }
.text-link svg { transition: transform var(--ease); }
.text-link:hover svg { transform: translateX(3px); }

/* Public navigation */
.site-header {
    position: sticky;
    z-index: 300;
    top: 0;
    background: rgba(244, 240, 231, .92);
    border-bottom: 1px solid rgba(189, 181, 167, .62);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 72px;
    gap: 28px;
}

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
    position: relative;
    color: var(--ink-2);
    font-size: .87rem;
    font-weight: 680;
    text-decoration: none;
}
.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--pine);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}
.site-nav a:hover,
.site-nav a.is-active { color: var(--ink); }
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }
.site-header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.nav-toggle { display: none; border: 0; background: transparent; cursor: pointer; }

/* Home hero */
.home-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 92px;
    border-bottom: 1px solid var(--line);
}

.home-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background-image: linear-gradient(rgba(23, 34, 31, .038) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 34, 31, .038) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to right, rgba(0,0,0,.9), transparent 74%);
}

.home-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    align-items: center;
    gap: 78px;
}

.home-hero h1 {
    max-width: 760px;
    margin-bottom: 25px;
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 6.4vw, 6.7rem);
    font-weight: 500;
    letter-spacing: -.065em;
}

.home-hero h1 em { color: var(--pine); font-style: italic; }
.home-hero__lead { max-width: 610px; margin-bottom: 31px; font-size: 1.12rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 29px; }
.boundary-line { display: flex; align-items: flex-start; gap: 10px; max-width: 570px; color: var(--muted); font-size: .82rem; }
.boundary-line svg { flex: 0 0 auto; margin-top: 2px; color: var(--pine); }

.live-board {
    position: relative;
    overflow: hidden;
    background: var(--paper-3);
    border: 1px solid var(--line-strong);
    border-radius: 3px;
    box-shadow: 13px 13px 0 var(--pine), var(--shadow-lg);
}

.live-board::before {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    content: "";
    background: var(--saffron);
}

.live-board__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 22px 17px;
    border-bottom: 1px solid var(--line);
}

.live-board__title { display: flex; align-items: center; gap: 9px; font-size: .78rem; font-weight: 820; letter-spacing: .085em; text-transform: uppercase; }
.live-dot { width: 8px; height: 8px; background: #3b7d61; border-radius: 50%; box-shadow: 0 0 0 5px rgba(59,125,97,.11); }
.live-board__header small { color: var(--muted); font-size: .72rem; }
.live-listing { padding: 23px 22px 20px; }
.live-listing__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.live-listing__category { display: block; margin-bottom: 7px; color: var(--muted); font-size: .71rem; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.live-listing h2 { max-width: 290px; margin-bottom: 0; font-family: var(--font-display); font-size: 1.62rem; font-weight: 500; }
.deadline-block { flex: 0 0 auto; padding-left: 15px; border-left: 2px solid var(--saffron); text-align: right; }
.deadline-block strong { display: block; font-size: 1.1rem; }
.deadline-block small { color: var(--muted); font-size: .72rem; }
.listing-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 21px; border-block: 1px solid var(--line); }
.listing-facts div { min-width: 0; padding: 14px 9px; border-right: 1px solid var(--line); }
.listing-facts div:first-child { padding-left: 0; }
.listing-facts div:last-child { padding-right: 0; border-right: 0; }
.listing-facts dt { margin-bottom: 3px; color: var(--muted); font-size: .68rem; font-weight: 730; letter-spacing: .05em; text-transform: uppercase; }
.listing-facts dd { overflow: hidden; margin: 0; font-size: .84rem; font-weight: 680; text-overflow: ellipsis; white-space: nowrap; }
.match-strip { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.match-strip__people { display: flex; align-items: center; }
.mini-org { display: grid; width: 31px; height: 31px; place-items: center; margin-left: -6px; color: var(--pine); background: var(--mint-soft); border: 2px solid var(--paper-3); border-radius: 50%; font-size: .63rem; font-weight: 800; }
.mini-org:first-child { margin-left: 0; }
.match-strip p { flex: 1; margin: 0; color: var(--muted); font-size: .76rem; }
.match-strip p strong { display: block; color: var(--ink); font-size: .8rem; }
.live-board__footer { display: flex; justify-content: space-between; padding: 13px 22px; color: var(--muted); background: var(--paper); border-top: 1px solid var(--line); font-size: .7rem; }

/* Public content */
.trust-bar { border-bottom: 1px solid var(--line); }
.trust-bar__inner { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); align-items: center; min-height: 102px; }
.trust-bar__intro { padding-right: 35px; font-family: var(--font-display); font-size: 1.12rem; line-height: 1.25; }
.trust-point { display: flex; min-height: 52px; align-items: center; gap: 12px; padding: 0 28px; border-left: 1px solid var(--line); }
.trust-point svg { flex: 0 0 auto; color: var(--pine); }
.trust-point span { color: var(--ink-2); font-size: .78rem; font-weight: 700; line-height: 1.35; }

.section { padding: 105px 0; }
.section--tight { padding: 72px 0; }
.section--white { background: var(--paper-3); }
.section--pine { color: #fff; background: var(--pine); }
.section--pine p { color: rgba(255,255,255,.73); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .48fr); align-items: end; gap: 60px; margin-bottom: 55px; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; font-family: var(--font-display); font-size: clamp(2.4rem, 4.6vw, 4.5rem); font-weight: 500; letter-spacing: -.055em; }
.section-heading p { margin-bottom: 4px; font-size: .97rem; line-height: 1.7; }
.section--pine .eyebrow { color: var(--saffron); }

.step-ledger { border-top: 1px solid var(--line-strong); }
.step-row { display: grid; grid-template-columns: 80px 1.1fr 1fr; gap: 30px; align-items: start; padding: 32px 0; border-bottom: 1px solid var(--line); }
.step-row__number { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; }
.step-row h3 { margin-bottom: 8px; font-size: 1.12rem; }
.step-row p { max-width: 500px; margin: 0; color: var(--muted); font-size: .9rem; }
.step-row__meta { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 27px;
    padding: 4px 9px;
    color: var(--ink-2);
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 99px;
    font-size: .7rem;
    font-weight: 720;
}
.tag--green { color: #215844; background: var(--mint-soft); border-color: #bdd4c9; }
.tag--amber { color: #744d0b; background: var(--saffron-soft); border-color: #e8ca8d; }
.tag--blue { color: #234e5b; background: var(--blue-soft); border-color: #bfd6dd; }
.tag--red { color: #853725; background: var(--brick-soft); border-color: #e7bcb1; }
.tag--ink { color: #fff; background: var(--pine); border-color: var(--pine); }

.two-sided { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.18); }
.side-panel { padding: 48px; }
.side-panel + .side-panel { border-left: 1px solid rgba(255,255,255,.18); }
.side-panel__icon { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 28px; color: var(--ink); background: var(--saffron); border-radius: 50%; }
.side-panel h3 { margin-bottom: 17px; font-family: var(--font-display); font-size: 2rem; font-weight: 500; }
.side-panel ol { margin: 0; padding: 0; list-style: none; counter-reset: side-steps; }
.side-panel li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; padding: 12px 0; color: rgba(255,255,255,.76); border-top: 1px solid rgba(255,255,255,.11); font-size: .9rem; counter-increment: side-steps; }
.side-panel li::before { color: var(--saffron); content: counter(side-steps, decimal-leading-zero); font-family: var(--font-display); font-style: italic; }

.boundary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line-strong); background: var(--paper-3); }
.boundary-column { padding: 38px; }
.boundary-column + .boundary-column { border-left: 1px solid var(--line-strong); }
.boundary-column h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 21px; font-size: 1rem; }
.boundary-column ul { display: grid; gap: 13px; padding: 0; list-style: none; }
.boundary-column li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-2); font-size: .88rem; }
.boundary-column li svg { flex: 0 0 auto; margin-top: 1px; color: var(--pine); }
.boundary-column--not li svg { color: var(--brick); }

.pilot-band { padding: 48px 0; background: var(--saffron); }
.pilot-band__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.pilot-band h2 { margin-bottom: 8px; font-family: var(--font-display); font-size: clamp(2rem, 3.6vw, 3.35rem); font-weight: 500; }
.pilot-band p { max-width: 680px; margin-bottom: 0; }

.page-hero { padding: 74px 0 66px; border-bottom: 1px solid var(--line); }
.page-hero__grid { display: grid; grid-template-columns: 1fr .55fr; align-items: end; gap: 70px; }
.page-hero h1 { margin-bottom: 0; font-family: var(--font-display); font-size: clamp(3.3rem, 6vw, 6rem); font-weight: 500; letter-spacing: -.06em; }
.page-hero p { margin-bottom: 4px; font-size: 1.03rem; line-height: 1.72; }
.page-hero__index { display: flex; gap: 26px; margin-top: 30px; }
.page-hero__index div { min-width: 110px; padding-top: 12px; border-top: 2px solid var(--ink); }
.page-hero__index strong { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; }
.page-hero__index span { color: var(--muted); font-size: .72rem; font-weight: 700; }

.process-stack { display: grid; gap: 0; counter-reset: process; border-top: 1px solid var(--line-strong); }
.process-item { display: grid; grid-template-columns: 90px .72fr 1fr; gap: 35px; padding: 36px 0; border-bottom: 1px solid var(--line); counter-increment: process; }
.process-item::before { content: counter(process, decimal-leading-zero); font-family: var(--font-display); font-size: 1.4rem; font-style: italic; }
.process-item h3 { margin-bottom: 0; font-size: 1.22rem; }
.process-item p { max-width: 560px; margin-bottom: 0; color: var(--muted); font-size: .92rem; }

.responsibility-table { border: 1px solid var(--line-strong); background: var(--paper-3); }
.responsibility-row { display: grid; grid-template-columns: 180px 1fr 1fr; border-bottom: 1px solid var(--line); }
.responsibility-row:last-child { border-bottom: 0; }
.responsibility-row > * { padding: 22px 24px; }
.responsibility-row > * + * { border-left: 1px solid var(--line); }
.responsibility-row strong { font-size: .84rem; }
.responsibility-row p { margin: 0; font-size: .84rem; }
.responsibility-row--head { color: #fff; background: var(--pine); }
.responsibility-row--head > * { font-size: .72rem; font-weight: 780; letter-spacing: .07em; text-transform: uppercase; }
.responsibility-row--head > * + * { border-left-color: rgba(255,255,255,.18); }

.callout { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 24px; background: var(--saffron-soft); border-left: 4px solid var(--saffron); }
.callout svg { color: #79500b; }
.callout h3 { margin-bottom: 5px; font-size: .97rem; }
.callout p { margin: 0; font-size: .86rem; }

/* Forms */
.form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: start; gap: 42px; }
.form-panel { background: var(--paper-3); border: 1px solid var(--line-strong); }
.form-panel__header { padding: 28px 30px 22px; border-bottom: 1px solid var(--line); }
.form-panel__header h2 { margin-bottom: 7px; font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; }
.form-panel__header p { margin-bottom: 0; color: var(--muted); font-size: .84rem; }
.form-panel__body { padding: 30px; }
.form-section { padding-bottom: 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.form-section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.form-section__heading { display: grid; grid-template-columns: 26px 1fr; gap: 10px; margin-bottom: 21px; }
.form-section__number { display: grid; width: 24px; height: 24px; place-items: center; color: #fff; background: var(--pine); border-radius: 50%; font-family: var(--font-display); font-size: .75rem; font-style: italic; }
.form-section h3 { margin: 3px 0 0; font-size: .95rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.field-grid--three { grid-template-columns: repeat(3, 1fr); }
.field { min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label,
.field-label { display: block; margin-bottom: 7px; color: var(--ink-2); font-size: .77rem; font-weight: 760; }
.field label span { color: var(--brick); }
.input, .select, .textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 5px;
    outline: none;
    transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.textarea { min-height: 112px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--pine); box-shadow: 0 0 0 3px rgba(21,63,53,.11); }
.input::placeholder, .textarea::placeholder { color: #939b97; }
.field-hint { display: block; margin-top: 6px; color: var(--muted); font-size: .71rem; line-height: 1.4; }
.field-error { display: block; margin-top: 6px; color: var(--brick); font-size: .73rem; font-weight: 650; }
.check-row { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin-bottom: 12px; cursor: pointer; }
.check-row input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--pine); }
.check-row span { color: var(--ink-2); font-size: .82rem; line-height: 1.45; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; }
.choice-card span { display: flex; min-height: 64px; align-items: center; justify-content: center; padding: 10px; border: 1px solid var(--line-strong); border-radius: 5px; font-size: .75rem; font-weight: 720; text-align: center; transition: border-color var(--ease), background var(--ease); }
.choice-card input:checked + span { color: var(--pine); background: var(--mint-soft); border-color: var(--pine); box-shadow: inset 0 0 0 1px var(--pine); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding-top: 24px; }
.side-note { position: sticky; top: 98px; padding: 25px; background: var(--pine); color: #fff; }
.side-note h2 { margin-bottom: 10px; font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; }
.side-note p { color: rgba(255,255,255,.7); font-size: .81rem; }
.side-note ul { display: grid; gap: 11px; padding: 18px 0 0; margin: 20px 0 0; border-top: 1px solid rgba(255,255,255,.18); list-style: none; }
.side-note li { display: flex; align-items: flex-start; gap: 9px; color: rgba(255,255,255,.78); font-size: .76rem; }
.side-note li svg { flex: 0 0 auto; color: var(--saffron); }

/* App shell */
.app-body { background: #eeeae1; }
.app-frame { display: grid; min-height: 100vh; grid-template-columns: var(--sidebar-width) minmax(0, 1fr); }
.app-sidebar {
    position: fixed;
    z-index: 500;
    inset: 0 auto 0 0;
    display: flex;
    width: var(--sidebar-width);
    flex-direction: column;
    color: #f5f0e6;
    background: var(--pine-2);
    border-right: 1px solid rgba(255,255,255,.07);
}
.app-sidebar__top { display: flex; min-height: 72px; align-items: center; justify-content: space-between; padding: 0 23px; border-bottom: 1px solid rgba(255,255,255,.09); }
.sidebar-close { display: none; padding: 6px; color: rgba(255,255,255,.75); background: transparent; border: 0; }
.org-switcher { display: flex; align-items: center; gap: 11px; margin: 18px 15px 8px; padding: 13px 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-sm); }
.org-avatar { display: grid; width: 35px; height: 35px; flex: 0 0 auto; place-items: center; color: var(--pine-2); background: var(--saffron); border-radius: 50%; font-size: .7rem; font-weight: 850; }
.org-switcher__copy { min-width: 0; }
.org-switcher__copy strong, .org-switcher__copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.org-switcher__copy strong { color: #fff; font-size: .77rem; }
.org-switcher__copy small { color: rgba(255,255,255,.53); font-size: .66rem; }
.app-nav { display: flex; flex: 1; flex-direction: column; gap: 2px; padding: 12px 13px; overflow-y: auto; }
.app-nav__label { padding: 17px 11px 7px; color: rgba(255,255,255,.36); font-size: .62rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.app-nav a { display: flex; min-height: 42px; align-items: center; gap: 11px; padding: 9px 11px; color: rgba(255,255,255,.65); border-radius: var(--radius-xs); font-size: .78rem; font-weight: 650; text-decoration: none; transition: color var(--ease), background var(--ease); }
.app-nav a svg { flex: 0 0 auto; }
.app-nav a span { flex: 1; }
.app-nav a em { display: grid; min-width: 21px; height: 21px; place-items: center; color: var(--pine-2); background: var(--saffron); border-radius: 50%; font-size: .63rem; font-style: normal; font-weight: 850; }
.app-nav a:hover { color: #fff; background: rgba(255,255,255,.06); }
.app-nav a.is-active { color: #fff; background: rgba(255,255,255,.1); box-shadow: inset 3px 0 0 var(--saffron); }
.app-sidebar__foot { padding: 15px; border-top: 1px solid rgba(255,255,255,.08); }
.pilot-note { display: flex; align-items: center; gap: 10px; padding: 10px 9px; }
.pilot-note__dot { width: 8px; height: 8px; background: #76c39f; border-radius: 50%; box-shadow: 0 0 0 4px rgba(118,195,159,.1); }
.pilot-note strong, .pilot-note small { display: block; }
.pilot-note strong { color: rgba(255,255,255,.8); font-size: .7rem; }
.pilot-note small { color: rgba(255,255,255,.4); font-size: .62rem; }
.sidebar-public-link { display: flex; align-items: center; gap: 7px; padding: 8px 9px; color: rgba(255,255,255,.48); font-size: .68rem; text-decoration: none; }
.sidebar-public-link:hover { color: #fff; }
.sidebar-scrim { display: none; }
.app-stage { grid-column: 2; min-width: 0; }
.app-topbar { position: sticky; z-index: 250; top: 0; display: flex; min-height: 72px; align-items: center; padding: 0 27px; background: rgba(255,253,248,.91); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.sidebar-open { display: none; padding: 8px; margin-right: 10px; background: transparent; border: 0; }
.app-topbar__crumb { flex: 1; min-width: 0; }
.app-topbar__crumb span, .app-topbar__crumb strong { display: block; }
.app-topbar__crumb span { margin-bottom: 1px; color: var(--muted); font-size: .65rem; font-weight: 730; letter-spacing: .04em; }
.app-topbar__crumb strong { overflow: hidden; font-size: .91rem; text-overflow: ellipsis; white-space: nowrap; }
.app-topbar__actions { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; margin-left: auto; }
.icon-button { position: relative; display: grid; width: 38px; height: 38px; place-items: center; color: var(--ink-2); background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.icon-button:hover { background: #fff; }
.notification-dot { position: absolute; top: 7px; right: 6px; width: 7px; height: 7px; background: var(--brick); border: 2px solid var(--paper-3); border-radius: 50%; }
.user-avatar { display: grid; width: 38px; height: 38px; place-items: center; color: #fff; background: var(--pine); border-radius: 50%; font-size: .72rem; font-weight: 820; }
.demo-role { position: relative; }
.demo-role__button { display: flex; min-height: 38px; align-items: center; gap: 7px; padding: 7px 10px; background: transparent; border: 1px solid var(--line); border-radius: 20px; cursor: pointer; }
.demo-role__label { color: var(--muted); font-size: .66rem; }
.demo-role__button strong { font-size: .72rem; }
.demo-role__menu { position: absolute; z-index: 100; top: calc(100% + 8px); right: 0; width: 230px; padding: 9px; background: var(--paper-3); border: 1px solid var(--line-strong); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.demo-role__menu > span { display: block; padding: 7px 8px 9px; color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.demo-role__menu a { display: block; padding: 9px 10px; border-radius: var(--radius-xs); font-size: .77rem; font-weight: 720; text-decoration: none; }
.demo-role__menu a small { display: block; color: var(--muted); font-size: .65rem; font-weight: 500; }
.demo-role__menu a:hover, .demo-role__menu a.is-current { background: var(--mint-soft); }
.app-main { width: min(calc(100% - 48px), 1260px); min-height: calc(100vh - 118px); margin: 0 auto; padding: 34px 0 50px; }
.app-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 46px; padding: 0 26px; color: var(--muted); background: var(--paper-3); border-top: 1px solid var(--line); font-size: .64rem; }

.notice { display: flex; align-items: center; gap: 10px; padding: 12px 14px; margin-bottom: 20px; background: var(--paper-3); border: 1px solid var(--line); border-left-width: 4px; font-size: .79rem; }
.notice span { flex: 1; }
.notice button { padding: 4px; background: transparent; border: 0; cursor: pointer; }
.notice--success { border-left-color: var(--pine-3); }
.notice--warning { border-left-color: var(--saffron); }
.notice--error { border-left-color: var(--brick); }
.notice--info { border-left-color: var(--blue); }

.app-page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 27px; }
.app-page-head__copy { min-width: 0; }
.app-page-head .eyebrow { margin-bottom: 8px; font-size: .62rem; }
.app-page-head h1 { margin-bottom: 7px; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 500; }
.app-page-head p { max-width: 700px; margin-bottom: 0; color: var(--muted); font-size: .84rem; }
.app-page-head__actions { display: flex; flex: 0 0 auto; gap: 9px; }

.metric-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 24px; background: var(--paper-3); border: 1px solid var(--line); }
.metric { min-width: 0; padding: 20px 22px; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric__label { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; color: var(--muted); font-size: .66rem; font-weight: 750; letter-spacing: .045em; text-transform: uppercase; }
.metric__label svg { color: var(--pine); }
.metric strong { display: block; margin-bottom: 3px; font-family: var(--font-display); font-size: 1.75rem; font-weight: 500; }
.metric small { color: var(--muted); font-size: .66rem; }

.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(290px, .7fr); gap: 23px; }
.panel { min-width: 0; background: var(--paper-3); border: 1px solid var(--line); }
.panel__head { display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.panel__head h2 { margin: 0; font-size: .89rem; letter-spacing: -.01em; }
.panel__head p { margin: 3px 0 0; color: var(--muted); font-size: .67rem; }
.panel__head .text-link { font-size: .71rem; }
.panel__body { padding: 18px; }
.panel--ink { color: #fff; background: var(--pine); border-color: var(--pine); }
.panel--ink .panel__head { border-bottom-color: rgba(255,255,255,.14); }
.panel--ink .panel__head p { color: rgba(255,255,255,.55); }

.action-list { display: grid; gap: 10px; }
.action-item { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 13px; padding: 14px; background: var(--paper); border-left: 3px solid var(--saffron); text-decoration: none; transition: background var(--ease), transform var(--ease); }
.action-item:hover { background: var(--saffron-soft); transform: translateX(2px); }
.action-item__icon { display: grid; width: 35px; height: 35px; place-items: center; color: var(--pine); background: var(--paper-3); border-radius: 50%; }
.action-item strong, .action-item small { display: block; }
.action-item strong { margin-bottom: 2px; font-size: .78rem; }
.action-item small { overflow: hidden; color: var(--muted); font-size: .67rem; text-overflow: ellipsis; white-space: nowrap; }
.action-item__time { color: #7e5410; font-size: .65rem; font-weight: 780; white-space: nowrap; }

.listing-stack { display: grid; gap: 11px; }
.listing-card { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; padding: 17px; color: inherit; background: var(--paper-3); border: 1px solid var(--line); text-decoration: none; transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease); }
.listing-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.listing-card--featured { border-left: 4px solid var(--saffron); }
.listing-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 7px 12px; margin-bottom: 8px; color: var(--muted); font-size: .65rem; }
.listing-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.listing-card h3 { margin-bottom: 8px; font-size: .95rem; }
.listing-card__facts { display: flex; flex-wrap: wrap; gap: 8px; }
.listing-card__deadline { min-width: 106px; text-align: right; }
.listing-card__deadline strong, .listing-card__deadline small { display: block; }
.listing-card__deadline strong { margin-bottom: 4px; font-family: var(--font-display); font-size: 1rem; font-weight: 500; }
.listing-card__deadline small { color: var(--muted); font-size: .63rem; }
.listing-card__deadline.urgent strong { color: var(--brick); }
.listing-card__deadline.soon strong { color: #8a5b0d; }

.activity-list { padding: 0; margin: 0; list-style: none; }
.activity-list li { position: relative; display: grid; grid-template-columns: 9px 1fr; gap: 11px; padding-bottom: 17px; }
.activity-list li::after { position: absolute; top: 9px; bottom: 0; left: 4px; width: 1px; content: ""; background: rgba(255,255,255,.16); }
.activity-list li:last-child { padding-bottom: 0; }
.activity-list li:last-child::after { display: none; }
.activity-dot { position: relative; z-index: 1; width: 9px; height: 9px; margin-top: 4px; background: var(--saffron); border: 2px solid var(--pine); border-radius: 50%; box-shadow: 0 0 0 1px var(--saffron); }
.activity-list strong, .activity-list small { display: block; }
.activity-list strong { margin-bottom: 2px; color: rgba(255,255,255,.91); font-size: .72rem; }
.activity-list small { color: rgba(255,255,255,.5); font-size: .62rem; line-height: 1.4; }

.filter-bar { display: flex; align-items: center; gap: 9px; padding: 13px; margin-bottom: 16px; background: var(--paper-3); border: 1px solid var(--line); }
.search-field { position: relative; flex: 1; min-width: 180px; }
.search-field svg { position: absolute; top: 50%; left: 11px; color: var(--muted); transform: translateY(-50%); }
.search-field input { width: 100%; min-height: 39px; padding: 8px 10px 8px 38px; background: var(--paper); border: 1px solid transparent; border-radius: 4px; outline: 0; }
.search-field input:focus { background: #fff; border-color: var(--pine); }
.filter-select { min-height: 39px; padding: 7px 29px 7px 10px; color: var(--ink-2); background: var(--paper); border: 1px solid transparent; border-radius: 4px; font-size: .72rem; font-weight: 680; }
.view-toggle { display: flex; gap: 2px; padding: 3px; margin-left: auto; background: var(--paper); border-radius: 5px; }
.view-toggle button { display: grid; width: 32px; height: 32px; place-items: center; color: var(--muted); background: transparent; border: 0; border-radius: 3px; cursor: pointer; }
.view-toggle button.is-active { color: var(--pine); background: #fff; box-shadow: var(--shadow-xs); }

.listing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.food-card { display: flex; min-width: 0; flex-direction: column; background: var(--paper-3); border: 1px solid var(--line); transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease); }
.food-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.food-card__band { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 15px; background: var(--paper); border-bottom: 1px solid var(--line); }
.food-card__band span { color: var(--muted); font-size: .65rem; font-weight: 740; letter-spacing: .045em; text-transform: uppercase; }
.food-card__body { flex: 1; padding: 18px; }
.food-card__body h2 { margin-bottom: 9px; font-size: 1rem; }
.food-card__body > p { display: -webkit-box; min-height: 39px; overflow: hidden; margin-bottom: 15px; color: var(--muted); font-size: .73rem; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.food-card__donor { display: flex; align-items: center; gap: 9px; margin-bottom: 15px; }
.food-card__donor .mini-org { margin: 0; border-color: var(--paper-3); }
.food-card__donor strong, .food-card__donor small { display: block; }
.food-card__donor strong { font-size: .7rem; }
.food-card__donor small { color: var(--muted); font-size: .62rem; }
.food-card__facts { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.food-card__facts div { padding: 11px 8px; border-right: 1px solid var(--line); }
.food-card__facts div:first-child { padding-left: 0; }
.food-card__facts div:last-child { border-right: 0; }
.food-card__facts span, .food-card__facts strong { display: block; }
.food-card__facts span { margin-bottom: 3px; color: var(--muted); font-size: .58rem; font-weight: 700; text-transform: uppercase; }
.food-card__facts strong { overflow: hidden; font-size: .67rem; text-overflow: ellipsis; white-space: nowrap; }
.food-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 17px; }
.food-card__deadline strong, .food-card__deadline small { display: block; }
.food-card__deadline strong { font-family: var(--font-display); font-size: .91rem; font-weight: 500; }
.food-card__deadline small { color: var(--muted); font-size: .59rem; }

.detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: start; gap: 23px; }
.detail-sheet { background: var(--paper-3); border: 1px solid var(--line-strong); }
.detail-sheet__head { padding: 28px 30px 24px; border-bottom: 1px solid var(--line); }
.detail-sheet__head-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 18px; }
.detail-sheet h1 { max-width: 720px; margin-bottom: 13px; overflow-wrap: anywhere; font-family: var(--font-display); font-size: clamp(2.15rem, 4vw, 3.6rem); font-weight: 500; }
.detail-sheet__description { max-width: 720px; margin-bottom: 0; color: var(--muted); font-size: .88rem; }
.detail-section { padding: 25px 30px; border-bottom: 1px solid var(--line); }
.detail-section:last-child { border-bottom: 0; }
.detail-section h2 { margin-bottom: 17px; font-size: .82rem; letter-spacing: .01em; }
.definition-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px 28px; }
.definition-grid div { min-width: 0; }
.definition-grid dt { margin-bottom: 4px; color: var(--muted); font-size: .62rem; font-weight: 750; letter-spacing: .055em; text-transform: uppercase; }
.definition-grid dd { margin: 0; font-size: .78rem; font-weight: 620; }
.capability-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.capability-item { display: flex; align-items: center; gap: 8px; padding: 10px; color: #245443; background: var(--mint-soft); border: 1px solid #c9ddd3; font-size: .7rem; font-weight: 680; }
.detail-rail { display: grid; gap: 14px; }
.deadline-card { padding: 24px; color: #fff; background: var(--pine); }
.deadline-card__label { display: flex; align-items: center; gap: 7px; margin-bottom: 11px; color: rgba(255,255,255,.56); font-size: .64rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.deadline-card strong { display: block; margin-bottom: 4px; font-family: var(--font-display); font-size: 2.3rem; font-weight: 500; }
.deadline-card p { margin-bottom: 22px; color: rgba(255,255,255,.62); font-size: .72rem; }
.deadline-card .button { width: 100%; }
.private-card { padding: 19px; background: var(--paper-3); border: 1px solid var(--line); }
.private-card h2 { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; font-size: .76rem; }
.private-card p { margin-bottom: 0; color: var(--muted); font-size: .69rem; }

.request-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 22px; align-items: center; padding: 19px; background: var(--paper-3); border: 1px solid var(--line); }
.request-card + .request-card { margin-top: 10px; }
.request-card__org { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.request-card__org .mini-org { width: 39px; height: 39px; margin: 0; border: 0; }
.request-card__org h3 { margin-bottom: 3px; font-size: .91rem; }
.request-card__org p { margin: 0; color: var(--muted); font-size: .66rem; }
.request-card__details { display: flex; flex-wrap: wrap; gap: 8px 15px; color: var(--ink-2); font-size: .68rem; }
.request-card__details span { display: inline-flex; align-items: center; gap: 5px; }
.request-card__actions { display: flex; gap: 8px; }

.exchange-banner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 22px; margin-bottom: 18px; color: #fff; background: var(--pine); }
.exchange-banner__icon { display: grid; width: 43px; height: 43px; place-items: center; color: var(--ink); background: var(--saffron); border-radius: 50%; }
.exchange-banner h1 { margin-bottom: 4px; font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; }
.exchange-banner p { margin: 0; color: rgba(255,255,255,.6); font-size: .72rem; }
.pickup-code { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.19); text-align: right; }
.pickup-code span, .pickup-code strong { display: block; }
.pickup-code span { color: rgba(255,255,255,.52); font-size: .6rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.pickup-code strong { color: var(--saffron); font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; letter-spacing: .08em; }
.timeline { position: relative; padding-left: 28px; }
.timeline::before { position: absolute; top: 8px; bottom: 8px; left: 7px; width: 1px; content: ""; background: var(--line-strong); }
.timeline-item { position: relative; padding-bottom: 24px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { position: absolute; top: 4px; left: -25px; width: 9px; height: 9px; content: ""; background: var(--paper-3); border: 2px solid var(--line-strong); border-radius: 50%; }
.timeline-item.is-complete::before { background: var(--pine); border-color: var(--pine); box-shadow: 0 0 0 3px var(--mint-soft); }
.timeline-item.is-current::before { background: var(--saffron); border-color: #9a680f; box-shadow: 0 0 0 3px var(--saffron-soft); }
.timeline-item strong, .timeline-item small { display: block; }
.timeline-item strong { margin-bottom: 3px; font-size: .76rem; }
.timeline-item small { color: var(--muted); font-size: .65rem; }

.data-table-wrap { overflow-x: auto; background: var(--paper-3); border: 1px solid var(--line); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { padding: 13px 15px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
.data-table th { color: var(--muted); background: var(--paper); font-size: .61rem; font-weight: 780; letter-spacing: .05em; text-transform: uppercase; }
.data-table td { font-size: .7rem; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover { background: #faf8f2; }

.impact-hero { display: grid; grid-template-columns: 1.1fr .9fr; margin-bottom: 22px; color: #fff; background: var(--pine); }
.impact-hero__copy { padding: 42px; }
.impact-hero__copy .eyebrow { color: var(--saffron); }
.impact-hero h1 { max-width: 650px; margin-bottom: 15px; font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.6rem); font-weight: 500; }
.impact-hero p { max-width: 570px; margin-bottom: 0; color: rgba(255,255,255,.63); font-size: .83rem; }
.impact-number { display: grid; place-items: center; padding: 35px; background: var(--saffron); color: var(--ink); text-align: center; }
.impact-number strong { display: block; font-family: var(--font-display); font-size: clamp(4rem, 8vw, 7rem); font-weight: 500; line-height: .9; }
.impact-number span { display: block; margin-top: 10px; font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.chart-bars { display: grid; height: 190px; grid-template-columns: repeat(6, 1fr); align-items: end; gap: 12px; padding-top: 20px; }
.chart-bar { position: relative; height: var(--height); min-height: 15px; background: var(--pine); }
.chart-bar::after { position: absolute; top: calc(100% + 7px); left: 50%; color: var(--muted); content: attr(data-label); font-size: .56rem; transform: translateX(-50%); }

.empty-state { padding: 52px 24px; text-align: center; background: var(--paper-3); border: 1px dashed var(--line-strong); }
.empty-state__icon { display: grid; width: 50px; height: 50px; place-items: center; margin: 0 auto 16px; color: var(--pine); background: var(--mint-soft); border-radius: 50%; }
.empty-state h2 { margin-bottom: 8px; font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; }
.empty-state p { max-width: 450px; margin: 0 auto 20px; color: var(--muted); font-size: .76rem; }

/* Modal */
.modal-backdrop { position: fixed; z-index: 1000; inset: 0; display: grid; padding: 20px; place-items: center; background: rgba(10, 23, 19, .66); backdrop-filter: blur(5px); opacity: 0; pointer-events: none; transition: opacity var(--ease); }
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.modal { width: min(100%, 560px); max-height: calc(100vh - 40px); overflow-y: auto; background: var(--paper-3); border: 1px solid var(--line-strong); box-shadow: var(--shadow-lg); transform: translateY(14px); transition: transform var(--ease); }
.modal-backdrop.is-open .modal { transform: translateY(0); }
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 25px 26px 19px; border-bottom: 1px solid var(--line); }
.modal__head h2 { margin-bottom: 5px; font-family: var(--font-display); font-size: 1.65rem; font-weight: 500; }
.modal__head p { margin: 0; color: var(--muted); font-size: .72rem; }
.modal__close { display: grid; width: 33px; height: 33px; flex: 0 0 auto; place-items: center; background: var(--paper); border: 0; border-radius: 50%; cursor: pointer; }
.modal__body { padding: 23px 26px; }
.modal__actions { display: flex; justify-content: flex-end; gap: 9px; padding: 17px 26px 24px; }

/* Footer */
.site-footer { padding-top: 64px; color: rgba(255,255,255,.76); background: var(--pine-2); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr .65fr .65fr 1fr; gap: 45px; padding-bottom: 50px; }
.site-footer__brand p { max-width: 350px; margin: 19px 0 0; color: rgba(255,255,255,.5); font-size: .79rem; }
.site-footer h2 { margin-bottom: 16px; color: rgba(255,255,255,.42); font-size: .62rem; letter-spacing: .09em; text-transform: uppercase; }
.site-footer a:not(.wordmark) { display: block; width: fit-content; margin-bottom: 9px; color: rgba(255,255,255,.68); font-size: .73rem; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer__boundary { padding-left: 25px; border-left: 1px solid rgba(255,255,255,.12); }
.site-footer__boundary p { margin: 0; color: rgba(255,255,255,.5); font-size: .72rem; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 62px; color: rgba(255,255,255,.33); border-top: 1px solid rgba(255,255,255,.1); font-size: .62rem; }

@media (max-width: 1080px) {
    .site-header__inner { grid-template-columns: 1fr auto; }
    .site-nav { display: none; }
    .home-hero__grid { grid-template-columns: 1fr 410px; gap: 45px; }
    .home-hero h1 { font-size: clamp(3.3rem, 6.8vw, 5.5rem); }
    .trust-bar__inner { grid-template-columns: repeat(3, 1fr); }
    .trust-bar__intro { display: none; }
    .trust-point:first-of-type { border-left: 0; }
    .metric-strip { grid-template-columns: repeat(2, 1fr); }
    .metric:nth-child(2) { border-right: 0; }
    .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .dashboard-grid { grid-template-columns: minmax(0, 1fr) 300px; }
    .detail-grid { grid-template-columns: minmax(0, 1fr) 300px; }
}

@media (max-width: 900px) {
    .home-hero { padding-top: 58px; }
    .home-hero__grid { grid-template-columns: 1fr; }
    .home-hero__copy { max-width: 740px; }
    .live-board { width: min(100% - 14px, 600px); margin-left: 0; }
    .section-heading, .page-hero__grid { grid-template-columns: 1fr; gap: 25px; }
    .section-heading p, .page-hero p { max-width: 650px; }
    .step-row, .process-item { grid-template-columns: 58px 1fr; }
    .step-row__meta, .process-item p { grid-column: 2; }
    .form-layout { grid-template-columns: 1fr; }
    .side-note { position: static; }
    .app-frame { display: block; }
    .app-stage { min-height: 100vh; }
    .app-sidebar { transform: translateX(-102%); transition: transform 230ms cubic-bezier(.2,.7,.2,1); }
    .sidebar-open, .sidebar-close { display: grid; place-items: center; }
    body.sidebar-open .app-sidebar { transform: translateX(0); }
    .sidebar-scrim { position: fixed; z-index: 450; inset: 0; display: block; background: rgba(10,23,19,.55); opacity: 0; pointer-events: none; transition: opacity var(--ease); }
    body.sidebar-open .sidebar-scrim { opacity: 1; pointer-events: auto; }
    .app-main { width: min(calc(100% - 36px), 1260px); }
    .dashboard-grid { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
    .detail-rail { grid-template-columns: 1fr 1fr; }
    .deadline-card { grid-row: span 2; }
    .site-footer__grid { grid-template-columns: 1.2fr .7fr .7fr; }
    .site-footer__boundary { grid-column: 1 / -1; padding: 25px 0 0; border-top: 1px solid rgba(255,255,255,.12); border-left: 0; }
}

@media (max-width: 720px) {
    .shell, .narrow-shell { width: min(calc(100% - 28px), var(--content-width)); }
    .site-header__inner { display: flex; min-height: 64px; }
    .nav-toggle { display: grid; width: 40px; height: 40px; place-items: center; margin-left: auto; }
    .site-header__actions { display: none; }
    .site-nav { position: absolute; top: 64px; right: 0; left: 0; display: none; padding: 12px 14px 20px; background: var(--paper); border-bottom: 1px solid var(--line-strong); box-shadow: var(--shadow-sm); }
    .site-nav.is-open { display: grid; }
    .site-nav a { padding: 12px 8px; border-bottom: 1px solid var(--line); }
    .site-nav a::after { display: none; }
    .home-hero { padding: 47px 0 70px; }
    .home-hero h1 { font-size: clamp(3.1rem, 15vw, 4.65rem); }
    .home-hero__lead { font-size: .99rem; }
    .live-board { box-shadow: 8px 8px 0 var(--pine), var(--shadow-sm); }
    .live-listing__top { display: block; }
    .deadline-block { margin-top: 16px; text-align: left; }
    .match-strip { align-items: flex-start; }
    .match-strip .button { display: none; }
    .trust-bar__inner { display: block; padding: 14px 0; }
    .trust-point { min-height: 48px; padding: 9px 0; border-left: 0; }
    .section { padding: 76px 0; }
    .section-heading { margin-bottom: 38px; }
    .section-heading h2 { font-size: 2.65rem; }
    .step-row, .process-item { grid-template-columns: 42px 1fr; gap: 16px; padding: 26px 0; }
    .two-sided, .boundary-grid { grid-template-columns: 1fr; }
    .side-panel { padding: 32px 27px; }
    .side-panel + .side-panel { border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
    .boundary-column { padding: 28px; }
    .boundary-column + .boundary-column { border-top: 1px solid var(--line-strong); border-left: 0; }
    .pilot-band__inner { grid-template-columns: 1fr; }
    .page-hero { padding: 52px 0; }
    .page-hero h1 { font-size: clamp(3rem, 14vw, 4.3rem); }
    .responsibility-row { grid-template-columns: 1fr; }
    .responsibility-row > * + * { border-top: 1px solid var(--line); border-left: 0; }
    .responsibility-row--head { display: none; }
    .form-panel__body, .form-panel__header { padding-inline: 20px; }
    .field-grid, .field-grid--three, .choice-grid { grid-template-columns: 1fr; }
    .app-topbar { min-height: 64px; padding: 0 14px; }
    .demo-role__label { display: none; }
    .app-topbar__crumb span { display: none; }
    .app-main { width: min(calc(100% - 24px), 1260px); padding-top: 23px; }
    .app-page-head { display: block; }
    .app-page-head__actions { margin-top: 18px; }
    .metric-strip { grid-template-columns: 1fr 1fr; }
    .metric { padding: 16px; }
    .listing-grid { grid-template-columns: 1fr; }
    .filter-bar { flex-wrap: wrap; }
    .search-field { flex-basis: 100%; }
    .view-toggle { display: none; }
    .detail-rail { grid-template-columns: 1fr; }
    .detail-sheet__head, .detail-section { padding-inline: 20px; }
    .definition-grid, .capability-list { grid-template-columns: 1fr; }
    .request-card { grid-template-columns: 1fr; }
    .request-card__actions { justify-content: flex-start; }
    .exchange-banner { grid-template-columns: auto 1fr; }
    .pickup-code { grid-column: 1 / -1; padding: 15px 0 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; text-align: left; }
    .impact-hero { grid-template-columns: 1fr; }
    .impact-hero__copy { padding: 30px 24px; }
    .impact-number { min-height: 230px; }
    .app-footer, .site-footer__bottom { display: block; padding-block: 15px; line-height: 1.8; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
    .demo-role__label,
    .user-avatar { display: none; }
    .demo-role__button { min-width: 38px; justify-content: center; padding-inline: 9px; }
    .app-topbar__actions { gap: 5px; }
}

@media (max-width: 460px) {
    .home-hero h1 { font-size: 3.15rem; }
    .hero-actions .button { width: 100%; }
    .listing-facts { grid-template-columns: 1fr; }
    .listing-facts div { padding: 10px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .listing-facts div:last-child { border-bottom: 0; }
    .page-hero__index { gap: 14px; }
    .page-hero__index div { min-width: 0; flex: 1; }
    .metric-strip { grid-template-columns: 1fr; }
    .metric { border-right: 0; border-bottom: 1px solid var(--line); }
    .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .metric:last-child { border-bottom: 0; }
    .listing-card { grid-template-columns: 1fr; }
    .listing-card__deadline { text-align: left; }
    .food-card__facts { grid-template-columns: 1fr; }
    .food-card__facts div { padding: 9px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .food-card__facts div:last-child { border-bottom: 0; }
    .demo-role__button { padding-inline: 9px; }
    .demo-role__button strong { display: none; }
    .app-topbar__actions { gap: 6px; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__brand, .site-footer__boundary { grid-column: auto; }
}

/* ========================================================================== */
/* Surplus application visual system — July 2026                              */
/* A crisp, high-signal coordination product rather than an editorial theme.  */
/* ========================================================================== */

:root {
    --paper: #f4f6f8;
    --paper-2: #e9edf2;
    --paper-3: #ffffff;
    --ink: #101828;
    --ink-2: #344054;
    --muted: #667085;
    --line: #d9e0e8;
    --line-strong: #b8c3d0;
    --pine: #17324d;
    --pine-2: #0d2136;
    --pine-3: #245b81;
    --mint: #c9eadf;
    --mint-soft: #edf9f5;
    --saffron: #ff6534;
    --saffron-soft: #fff0ea;
    --brick: #d92d20;
    --brick-soft: #fff0ee;
    --blue: #2563eb;
    --blue-soft: #eef4ff;
    --white: #ffffff;
    --shadow-xs: 0 1px 2px rgba(16, 24, 40, .04);
    --shadow-sm: 0 8px 24px rgba(16, 24, 40, .08);
    --shadow-lg: 0 28px 70px rgba(16, 24, 40, .16);
    --radius-xs: 9px;
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 26px;
    --sidebar-width: 276px;
    --content-width: 1216px;
    --font-sans: "Segoe UI Variable Text", "Segoe UI", Aptos, system-ui, -apple-system, sans-serif;
    --font-display: "Segoe UI Variable Display", "Segoe UI", Aptos, system-ui, -apple-system, sans-serif;
    --ease: 180ms cubic-bezier(.2, .75, .2, 1);
}

body {
    color: var(--ink);
    background: var(--paper);
    font-size: 16px;
    line-height: 1.55;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 750;
    letter-spacing: -.04em;
}

p { color: var(--ink-2); }
::selection { color: #fff; background: var(--saffron); }

:focus-visible {
    outline-color: rgba(37, 99, 235, .8);
}

.shell { width: min(calc(100% - 48px), var(--content-width)); }

.eyebrow {
    gap: 10px;
    margin-bottom: 16px;
    color: var(--blue);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .13em;
}

.eyebrow::before {
    width: 8px;
    height: 8px;
    background: var(--saffron);
    border-radius: 50%;
}

.wordmark {
    gap: 11px;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.045em;
}

.brand-mark { width: 36px; height: 36px; color: var(--saffron); }
.wordmark--inverse .brand-mark { color: var(--saffron); }

.button {
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 750;
    box-shadow: var(--shadow-xs);
}

.button:hover { transform: translateY(-2px); }
.button--small { min-height: 40px; padding: 9px 15px; }
.button--large { min-height: 54px; padding: 14px 22px; font-size: .94rem; }
.button--dark { color: #fff; background: var(--saffron); }
.button--dark:hover { background: #e94f22; box-shadow: 0 10px 24px rgba(255, 101, 52, .24); }
.button--saffron { color: #fff; background: var(--blue); }
.button--saffron:hover { background: #1d4ed8; box-shadow: 0 10px 24px rgba(37, 99, 235, .2); }
.button--paper { border-color: var(--line); }
.button--paper:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.button--ghost:hover { background: #fff; }
.text-link { color: var(--blue); font-weight: 750; }
.text-link:hover { color: #1d4ed8; }

/* Public shell */
.site-header {
    background: rgba(255, 255, 255, .94);
    border-bottom-color: rgba(217, 224, 232, .9);
    box-shadow: 0 1px 0 rgba(16, 24, 40, .02);
}

.site-header__inner { min-height: 78px; }
.site-nav { gap: 34px; }
.site-nav a { color: #475467; font-size: .85rem; font-weight: 700; }
.site-nav a::after { bottom: -13px; height: 3px; background: var(--saffron); border-radius: 4px; }
.site-nav a:hover, .site-nav a.is-active { color: var(--ink); }

.home-hero {
    min-height: 650px;
    padding: 88px 0 92px;
    background: #fbfcfe;
    border-bottom: 0;
}

.home-hero::before {
    top: 74px;
    right: -140px;
    bottom: auto;
    left: auto;
    width: 410px;
    height: 410px;
    background: #e9efff;
    border: 70px solid #f4f7ff;
    border-radius: 50%;
    mask-image: none;
}

.home-hero::after {
    position: absolute;
    right: 6vw;
    bottom: 40px;
    width: 116px;
    height: 116px;
    content: "";
    background: var(--saffron);
    border-radius: 28px;
    transform: rotate(12deg);
}

.home-hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
    gap: 72px;
}

.home-hero h1 {
    max-width: 720px;
    margin-bottom: 25px;
    font-size: clamp(3.6rem, 5.6vw, 5.4rem);
    font-weight: 780;
    line-height: .96;
    letter-spacing: -.07em;
}

.home-hero h1 em {
    position: relative;
    color: var(--saffron);
    font-style: normal;
    font-weight: inherit;
}

.home-hero__lead {
    max-width: 600px;
    margin-bottom: 32px;
    color: #475467;
    font-size: 1.08rem;
    line-height: 1.7;
}

.boundary-line {
    max-width: 600px;
    padding: 13px 15px;
    color: #58677a;
    background: #f0f3f6;
    border: 1px solid #e2e7ed;
    border-radius: 12px;
    font-size: .77rem;
}

.boundary-line svg { color: var(--blue); }

.live-board {
    z-index: 2;
    overflow: visible;
    background: #fff;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(23, 50, 77, .18), 0 0 0 1px rgba(184, 195, 208, .55);
}

.live-board::before {
    top: -13px;
    right: 28px;
    left: auto;
    width: 118px;
    height: 26px;
    background: var(--saffron);
    border-radius: 999px;
}

.live-board__header {
    padding: 20px 24px;
    color: #fff;
    background: var(--pine);
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
}

.live-board__header small { color: rgba(255,255,255,.65); }
.live-dot { background: #48d7a0; box-shadow: 0 0 0 5px rgba(72, 215, 160, .14); }
.live-listing { padding: 28px 25px 23px; }
.live-listing__category { color: var(--blue); font-weight: 800; }
.live-listing h2 { font-size: 1.65rem; font-weight: 760; letter-spacing: -.035em; }
.deadline-block { border-left: 3px solid var(--saffron); }
.deadline-block strong { font-size: 1.15rem; font-weight: 800; }
.listing-facts { border-color: #e5eaf0; }
.listing-facts div { border-color: #e5eaf0; }
.mini-org { color: var(--blue); background: var(--blue-soft); border-color: #fff; }
.match-strip .button--dark { background: var(--pine); }
.match-strip .button--dark:hover { background: var(--pine-2); }
.live-board__footer { padding: 15px 24px; background: #f7f9fb; border-radius: 0 0 24px 24px; }

.trust-bar { color: #fff; background: var(--pine); border: 0; }
.trust-bar__inner { min-height: 112px; }
.trust-bar__intro { color: #fff; font-family: var(--font-display); font-size: 1.06rem; font-weight: 700; }
.trust-point { border-color: rgba(255,255,255,.16); }
.trust-point svg { color: #71a7ff; }
.trust-point span { color: rgba(255,255,255,.78); }

.section { padding: 104px 0; }
.section--white { background: #fff; }
.section--pine { background: var(--pine-2); }
.section-heading { gap: 72px; margin-bottom: 54px; }
.section-heading h2 {
    font-size: clamp(2.6rem, 4.3vw, 4.25rem);
    font-weight: 780;
    line-height: 1.02;
    letter-spacing: -.06em;
}
.section-heading p { color: #667085; }
.section--pine .eyebrow { color: #8bb6ff; }

.step-ledger { border-top: 0; }
.step-row {
    grid-template-columns: 72px 1.2fr .9fr;
    margin-bottom: 12px;
    padding: 26px 28px;
    background: #f7f9fb;
    border: 1px solid #e3e8ef;
    border-radius: 16px;
}
.step-row__number { color: var(--saffron); font-size: .9rem; font-style: normal; font-weight: 800; }
.step-row h3 { font-size: 1.08rem; }
.tag { min-height: 28px; border-color: #cfd7e2; font-size: .68rem; font-weight: 750; }
.tag--green { color: #087453; background: var(--mint-soft); border-color: #b8dfd2; }
.tag--amber { color: #a23b19; background: var(--saffron-soft); border-color: #ffc5af; }
.tag--blue { color: #194ba8; background: var(--blue-soft); border-color: #c7d7fe; }
.tag--ink { background: var(--pine); border-color: var(--pine); }

.two-sided { gap: 18px; border: 0; }
.side-panel {
    padding: 44px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
}
.side-panel + .side-panel { border-left: 1px solid rgba(255,255,255,.14); }
.side-panel__icon { width: 48px; height: 48px; margin-bottom: 30px; color: #fff; background: var(--saffron); border-radius: 12px; }
.side-panel h3 { font-size: 1.75rem; font-weight: 750; }
.side-panel li::before { color: #8bb6ff; font-family: var(--font-sans); font-style: normal; font-weight: 750; }

.boundary-grid { gap: 18px; background: transparent; border: 0; }
.boundary-column { padding: 36px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-xs); }
.boundary-column + .boundary-column { border-left: 1px solid var(--line); }
.boundary-column h3 { font-size: 1.02rem; }
.boundary-column li svg { color: #079669; }

.pilot-band { padding: 55px 0; background: var(--saffron); }
.pilot-band h2 { font-size: clamp(2.1rem, 3.3vw, 3.2rem); font-weight: 800; }
.pilot-band p { color: rgba(16, 24, 40, .74); }
.pilot-band .button--dark { color: #fff; background: var(--pine-2); }

.page-hero { padding: 78px 0 72px; background: #eef4ff; border: 0; }
.page-hero h1 { font-size: clamp(3rem, 5.2vw, 5.1rem); font-weight: 800; }
.page-hero__index div { border-color: var(--saffron); }
.page-hero__index strong { font-size: 1.55rem; font-weight: 800; }
.process-item::before { color: var(--saffron); font-family: var(--font-sans); font-style: normal; font-weight: 800; }
.responsibility-table { overflow: hidden; border-radius: 18px; }
.responsibility-row--head { background: var(--pine); }
.callout { background: var(--saffron-soft); border-left-color: var(--saffron); border-radius: 0 14px 14px 0; }

/* Forms */
.form-panel, .side-note { border-radius: 18px; }
.form-panel { overflow: hidden; border-color: var(--line); box-shadow: var(--shadow-xs); }
.form-panel__header h2 { font-size: 1.55rem; font-weight: 760; }
.form-section__number { background: var(--blue); font-family: var(--font-sans); font-style: normal; font-weight: 800; }
.input, .select, .textarea { min-height: 48px; padding: 11px 13px; border-color: #c9d2de; border-radius: 10px; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37, 99, 235, .11); }
.check-row input { accent-color: var(--blue); }
.choice-card span { min-height: 68px; border-radius: 10px; }
.choice-card input:checked + span { color: #194ba8; background: var(--blue-soft); border-color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.side-note { background: var(--pine); box-shadow: var(--shadow-sm); }
.side-note h2 { font-size: 1.35rem; font-weight: 750; }
.side-note li svg { color: #8bb6ff; }

/* Application shell */
.app-body { background: #f3f5f8; }
.app-sidebar { background: #111f32; border-right: 0; box-shadow: 8px 0 30px rgba(16, 24, 40, .08); }
.app-sidebar__top { min-height: 78px; padding-inline: 22px; }
.org-switcher { margin: 18px 14px 8px; padding: 14px 12px; background: rgba(255,255,255,.065); border-color: rgba(255,255,255,.11); border-radius: 14px; }
.org-avatar { width: 38px; height: 38px; color: #fff; background: var(--saffron); border-radius: 11px; }
.app-nav { gap: 4px; padding: 12px 13px; }
.app-nav__label { color: rgba(255,255,255,.38); }
.app-nav a { min-height: 44px; color: rgba(255,255,255,.65); border-radius: 10px; font-size: .79rem; font-weight: 680; }
.app-nav a:hover { background: rgba(255,255,255,.07); }
.app-nav a.is-active { color: var(--ink); background: #fff; box-shadow: 0 7px 22px rgba(0,0,0,.14); }
.app-nav a.is-active svg { color: var(--blue); }
.app-nav a em { color: #fff; background: var(--saffron); }
.pilot-note__dot { background: #48d7a0; }

.app-topbar { min-height: 78px; padding: 0 30px; background: rgba(255,255,255,.94); border-bottom-color: #e2e7ed; }
.app-topbar__crumb span { color: var(--blue); font-weight: 750; }
.icon-button, .demo-role__button { background: #fff; border-color: #d7dee7; }
.icon-button:hover { border-color: var(--line-strong); box-shadow: var(--shadow-xs); }
.user-avatar { color: #fff; background: var(--blue); }
.demo-role__menu { border-radius: 14px; }
.demo-role__menu a:hover, .demo-role__menu a.is-current { background: var(--blue-soft); }
.notification-dot { background: var(--saffron); }

.app-main { width: min(calc(100% - 56px), 1280px); padding: 38px 0 56px; }
.app-page-head { margin-bottom: 30px; }
.app-page-head h1 { margin-bottom: 9px; font-size: clamp(2.15rem, 3.6vw, 3rem); font-weight: 780; letter-spacing: -.055em; }
.app-page-head p { font-size: .86rem; }

.metric-strip { gap: 14px; margin-bottom: 24px; background: transparent; border: 0; }
.metric {
    position: relative;
    overflow: hidden;
    padding: 21px 20px;
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 16px;
    box-shadow: var(--shadow-xs);
}
.metric:last-child { border-right: 1px solid #e0e6ed; }
.metric::before { position: absolute; top: 0; right: 0; left: 0; height: 4px; content: ""; background: var(--blue); }
.metric:nth-child(2)::before { background: var(--saffron); }
.metric:nth-child(3)::before { background: #0e9f6e; }
.metric:nth-child(4)::before { background: #7c3aed; }
.metric__label { margin-bottom: 14px; color: #667085; }
.metric__label svg { color: var(--blue); }
.metric strong { font-size: 2rem; font-weight: 790; letter-spacing: -.04em; }

.dashboard-grid { gap: 18px; }
.panel { overflow: hidden; background: #fff; border: 1px solid #e0e6ed; border-radius: 17px; box-shadow: var(--shadow-xs); }
.panel__head { min-height: 68px; padding: 16px 20px; }
.panel__head h2 { font-size: .92rem; font-weight: 780; }
.panel__body { padding: 20px; }
.panel--ink { color: #fff; background: var(--pine); border-color: var(--pine); box-shadow: 0 18px 40px rgba(23, 50, 77, .13); }

.action-list { gap: 11px; }
.action-item { padding: 15px; background: #f7f9fb; border-left: 0; border-radius: 12px; }
.action-item::before { width: 4px; align-self: stretch; content: ""; background: var(--saffron); border-radius: 10px; }
.action-item { grid-template-columns: 4px auto minmax(0, 1fr) auto; }
.action-item__icon { color: var(--blue); background: var(--blue-soft); }

.listing-card { padding: 17px; border-color: #dfe5ec; border-radius: 13px; }
.listing-card:hover { border-color: #aebaca; box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.listing-card--featured { background: #fff9f6; border-left: 1px solid #ffc6b2; box-shadow: inset 4px 0 0 var(--saffron); }
.listing-card__deadline strong { font-size: 1rem; font-weight: 780; }
.activity-dot { border-color: #77a8ff; }

.filter-bar { padding: 13px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.search-field input, .filter-select { background: #f4f6f8; border-radius: 9px; }
.search-field input:focus { border-color: var(--blue); }

.listing-grid { gap: 18px; }
.food-card { overflow: hidden; border-color: #dfe5ec; border-radius: 17px; box-shadow: var(--shadow-xs); }
.food-card:hover { border-color: #b7c2cf; box-shadow: var(--shadow-sm); }
.food-card__band { background: #f7f9fb; }
.food-card__body { padding: 20px; }
.food-card__body h2 { font-size: 1.06rem; font-weight: 780; }
.food-card__deadline strong { font-size: .95rem; font-weight: 780; }

.detail-sheet, .private-card, .request-card, .data-table-wrap, .empty-state {
    border-color: #dfe5ec;
    border-radius: 17px;
    box-shadow: var(--shadow-xs);
}
.detail-sheet { overflow: hidden; }
.detail-sheet h1 { font-size: clamp(2.05rem, 3.7vw, 3.25rem); font-weight: 780; }
.capability-item { color: #087453; background: var(--mint-soft); border-color: #b8dfd2; border-radius: 9px; }
.deadline-card { background: var(--pine); border-radius: 17px; box-shadow: var(--shadow-sm); }
.deadline-card strong { font-size: 2.2rem; font-weight: 780; }
.private-card, .request-card { background: #fff; }
.exchange-banner { background: var(--pine); border-radius: 17px; box-shadow: var(--shadow-sm); }
.exchange-banner__icon { color: #fff; background: var(--saffron); border-radius: 12px; }
.exchange-banner h1 { font-size: 1.55rem; font-weight: 760; }
.pickup-code strong { color: #8bb6ff; font-weight: 780; }
.data-table-wrap { overflow-x: auto; }
.data-table th { background: #f4f6f8; }
.data-table tbody tr:hover { background: #f8fafc; }
.impact-hero { overflow: hidden; background: var(--pine); border-radius: 20px; box-shadow: var(--shadow-sm); }
.impact-hero h1 { font-size: clamp(2.45rem, 4.5vw, 4.2rem); font-weight: 780; }
.impact-number { color: #fff; background: var(--blue); }
.impact-number strong { font-weight: 800; }
.chart-bar { background: var(--blue); border-radius: 5px 5px 0 0; }
.empty-state__icon { color: var(--blue); background: var(--blue-soft); }
.empty-state h2 { font-size: 1.3rem; font-weight: 760; }
.modal { overflow: hidden; border: 0; border-radius: 20px; }
.modal__head h2 { font-size: 1.5rem; font-weight: 760; }

.site-footer { background: #0b1c2d; }
.site-footer h2 { color: rgba(255,255,255,.5); }
.site-footer__boundary { border-left-color: rgba(255,255,255,.14); }

@media (max-width: 1080px) {
    .metric:last-child { border-right: 1px solid #e0e6ed; }
    .metric:nth-child(-n+2) { border-bottom: 1px solid #e0e6ed; }
}

@media (max-width: 900px) {
    .home-hero { min-height: auto; }
    .home-hero__grid { grid-template-columns: 1fr; }
    .home-hero::after { right: 3vw; bottom: 80px; }
    .live-board { width: min(100% - 18px, 620px); }
}

@media (max-width: 720px) {
    .shell, .narrow-shell { width: min(calc(100% - 30px), var(--content-width)); }
    .site-header__inner { min-height: 68px; }
    .site-nav { top: 68px; background: #fff; }
    .home-hero { padding: 56px 0 72px; }
    .home-hero::before { right: -240px; opacity: .65; }
    .home-hero::after { display: none; }
    .home-hero h1 { font-size: clamp(3.1rem, 14vw, 4.45rem); }
    .boundary-line { padding: 12px; }
    .live-board { border-radius: 18px; box-shadow: 0 20px 45px rgba(23,50,77,.15); }
    .live-board__header { border-radius: 18px 18px 0 0; }
    .live-board__footer { border-radius: 0 0 18px 18px; }
    .trust-bar__inner { padding: 18px 0; }
    .step-row { grid-template-columns: 42px 1fr; padding: 22px 20px; }
    .two-sided, .boundary-grid { gap: 14px; }
    .side-panel + .side-panel, .boundary-column + .boundary-column { border-left: 1px solid rgba(255,255,255,.14); }
    .boundary-column + .boundary-column { border-left-color: var(--line); }
    .app-main { width: min(calc(100% - 28px), 1280px); }
    .metric-strip { gap: 10px; }
    .metric { padding: 17px 16px; }
}

@media (max-width: 460px) {
    .home-hero h1 { font-size: 3.15rem; }
    .metric { border-right: 1px solid #e0e6ed; border-bottom: 1px solid #e0e6ed; }
}

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

/* ========================================================================== */
/* Surplus public experience                                                   */
/* Utility-first layout: readable text, dominant task panel, restrained UI.    */
/* ========================================================================== */

.public-body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    color: #30343b;
    background: #fff;
    font-size: 17px;
}

.public-body > main { width: 100%; flex: 1 0 auto; }
.public-body > .site-footer { flex: 0 0 auto; }
.public-body p { color: #555d68; }
.public-body .shell { width: min(calc(100% - 48px), 1190px); }
.public-body .site-header { position: relative; background: #fff; border-bottom: 1px solid #e5e7eb; backdrop-filter: none; }
.public-body .site-header__inner { min-height: 76px; }
.public-body .wordmark { color: #34373d; font-size: 1.48rem; font-weight: 780; }
.public-body .brand-mark { width: 42px; height: 42px; color: #f2673a; }
.public-body .site-nav { gap: 40px; }
.public-body .site-nav a { color: #474c54; font-size: .96rem; font-weight: 570; }
.public-body .site-nav a::after { bottom: -12px; background: #f2673a; }
.no-account-note { color: #6d747e; font-size: .84rem; font-weight: 600; }
.public-body .button { font-size: .93rem; }
.public-body .button--dark { background: #e9532f; }
.public-body .button--dark:hover { background: #cf4221; }
.public-body .button--ghost { color: #3b4149; background: #fff; border-color: #d6dbe2; }
.public-body .button--paper { color: #353b44; }

.surplus-hero {
    position: relative;
    min-height: 575px;
    overflow: hidden;
    padding: 102px 0 82px;
    background: #fff;
}

.surplus-hero::before {
    position: absolute;
    z-index: 0;
    inset: 0 0 auto;
    height: 360px;
    content: "";
    background: #f47a45;
}

.community-scene {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    height: 360px;
    overflow: hidden;
    pointer-events: none;
}

.community-scene::before,
.community-scene::after {
    position: absolute;
    bottom: 0;
    content: "";
    background: #de5d32;
}

.community-scene::before { left: 0; width: 34%; height: 94px; border-radius: 0 80px 0 0; }
.community-scene::after { right: 0; width: 38%; height: 118px; border-radius: 90px 0 0; }
.scene-building { position: absolute; bottom: 70px; background: #e56537; opacity: .82; }
.scene-building::before { position: absolute; top: -28px; left: 0; width: 100%; height: 30px; content: ""; background: inherit; clip-path: polygon(0 100%, 50% 0, 100% 100%); }
.scene-building--one { left: 4%; width: 115px; height: 94px; }
.scene-building--two { left: 16%; width: 150px; height: 128px; }
.scene-building--three { right: 14%; width: 168px; height: 116px; }
.scene-building--four { right: 3%; width: 105px; height: 80px; }
.scene-sun { position: absolute; top: 52px; right: 15%; width: 82px; height: 82px; background: #ffb081; border-radius: 50%; }
.scene-route { position: absolute; right: -4%; bottom: 55px; width: 50%; height: 110px; border: 4px solid rgba(255,255,255,.36); border-bottom: 0; border-left-color: transparent; border-radius: 60% 60% 0 0; transform: rotate(-4deg); }

.surplus-hero__inner { position: relative; z-index: 3; }
.surplus-search-card {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 36px 38px 26px;
    background: #fff;
    border: 1px solid #d9dee5;
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(43, 50, 59, .14);
}

.surplus-search-card__head { max-width: 870px; }
.utility-kicker { display: block; margin-bottom: 10px; color: #d64d29; font-size: .79rem; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; }
.surplus-search-card h1 { margin-bottom: 9px; color: #373b42; font-size: clamp(2.3rem, 4vw, 3.05rem); font-weight: 730; line-height: 1.08; letter-spacing: -.038em; }
.surplus-search-card__head > p { max-width: 800px; margin: 0; color: #5f6670; font-size: 1.06rem; line-height: 1.55; }

.task-choice { display: flex; gap: 36px; margin: 28px 0 22px; }
.task-choice__option { display: flex; align-items: center; gap: 11px; color: #60666e; text-decoration: none; }
.task-choice__option > svg { display: grid; width: 34px; height: 34px; padding: 6px; color: #8a9098; border: 2px solid #cfd4db; border-radius: 50%; }
.task-choice__option span, .task-choice__option strong, .task-choice__option small { display: block; }
.task-choice__option strong { color: #3a3f46; font-size: .98rem; }
.task-choice__option small { margin-top: 2px; color: #767d86; font-size: .79rem; }
.task-choice__option.is-active > svg { color: #fff; background: #f2673a; border-color: #f2673a; }

.surplus-search { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 10px; }
.surplus-search__field { min-width: 0; }
.surplus-search__field > span:first-child { display: block; margin-bottom: 7px; color: #5c636c; font-size: .79rem; font-weight: 700; }
.surplus-search__control { display: flex; min-height: 62px; align-items: center; gap: 11px; padding: 0 15px; background: #fff; border: 1px solid #cfd6df; border-radius: 9px; transition: border-color var(--ease), box-shadow var(--ease); }
.surplus-search__control:focus-within { border-color: #f2673a; box-shadow: 0 0 0 3px rgba(242, 103, 58, .12); }
.surplus-search__control svg { flex: 0 0 auto; color: #484e56; }
.surplus-search__control input, .surplus-search__control select { width: 100%; min-width: 0; height: 58px; padding: 0; color: #3c424a; background: transparent; border: 0; outline: 0; font-size: .98rem; }
.surplus-search__submit { align-self: end; display: inline-flex; min-height: 62px; align-items: center; justify-content: center; gap: 9px; padding: 0 25px; color: #fff; background: #df4c2b; border: 0; border-radius: 9px; font-size: .96rem; font-weight: 780; cursor: pointer; transition: background var(--ease), transform var(--ease); }
.surplus-search__submit:hover { background: #c93f20; transform: translateY(-1px); }
.search-card-foot { display: flex; flex-wrap: wrap; gap: 24px; padding-top: 21px; color: #666d75; font-size: .83rem; }
.search-card-foot span { display: inline-flex; align-items: center; gap: 6px; }
.search-card-foot svg { color: #1d9669; }

.network-summary { background: #f5f6f7; border-block: 1px solid #e3e6ea; }
.network-summary__grid { display: grid; grid-template-columns: .8fr 1fr 1fr 1.35fr; }
.network-summary__grid > div, .network-summary__grid > a { display: flex; min-height: 112px; flex-direction: column; justify-content: center; padding: 22px 28px; border-right: 1px solid #dfe3e8; text-decoration: none; }
.network-summary__grid > :first-child { padding-left: 0; }
.network-summary__grid > :last-child { padding-right: 0; border-right: 0; }
.network-summary strong { color: #3d4249; font-size: 1.45rem; line-height: 1.1; }
.network-summary span { display: flex; align-items: center; gap: 7px; margin-top: 5px; color: #6a7179; font-size: .84rem; }
.network-summary a strong { color: #d64d29; font-size: 1rem; }

.utility-section { padding: 88px 0 98px; background: #fff; }
.utility-section__head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 32px; }
.utility-section__head > div > span { display: block; margin-bottom: 6px; color: #d64d29; font-size: .81rem; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; }
.utility-section__head h2 { margin: 0; color: #3b4047; font-size: clamp(2rem, 3vw, 2.55rem); font-weight: 720; letter-spacing: -.035em; }
.utility-link { display: inline-flex; align-items: center; gap: 7px; color: #cb4827; font-size: .92rem; font-weight: 720; text-decoration: none; white-space: nowrap; }

.public-listing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.public-listing-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid #dce1e7; border-radius: 12px; box-shadow: 0 3px 12px rgba(45, 52, 60, .05); transition: box-shadow var(--ease), transform var(--ease); }
.public-listing-card:hover { box-shadow: 0 12px 28px rgba(45, 52, 60, .1); transform: translateY(-2px); }
.public-listing-card > header { display: flex; align-items: center; gap: 8px; padding: 15px 18px; background: #f6f7f8; border-bottom: 1px solid #e1e5ea; }
.public-listing-card > header strong { color: #267457; font-size: .8rem; }
.public-listing-card > header > span:last-child { margin-left: auto; color: #68707a; font-size: .78rem; }
.availability-dot { display: inline-block; width: 9px; height: 9px; flex: 0 0 auto; background: #25a273; border-radius: 50%; box-shadow: 0 0 0 4px #e1f4ed; }
.public-listing-card__body { flex: 1; padding: 21px 20px 18px; }
.public-listing-card h3 { margin-bottom: 9px; color: #343941; font-size: 1.2rem; font-weight: 720; letter-spacing: -.025em; }
.public-listing-card__body > p { display: -webkit-box; min-height: 52px; overflow: hidden; margin-bottom: 19px; color: #636a73; font-size: .94rem; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.public-listing-card dl { display: grid; grid-template-columns: .8fr 1fr .8fr; margin: 0; border-top: 1px solid #e3e6ea; }
.public-listing-card dl div { min-width: 0; padding: 16px 10px 0; }
.public-listing-card dl div:first-child { padding-left: 0; }
.public-listing-card dt { color: #7b828b; font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.public-listing-card dd { overflow: hidden; margin: 3px 0 0; color: #3e444c; font-size: .87rem; font-weight: 680; text-overflow: ellipsis; white-space: nowrap; }
.public-listing-card > footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; border-top: 1px solid #e3e6ea; }
.public-listing-card > footer strong, .public-listing-card > footer small { display: block; }
.public-listing-card > footer strong { color: #d34c2b; font-size: .92rem; }
.public-listing-card > footer small { margin-top: 3px; color: #747b84; font-size: .73rem; }

.how-simple { padding: 92px 0; color: #fff; background: #42474f; }
.utility-section__head--light > div > span { color: #ff9a6e; }
.utility-section__head--light h2 { color: #fff; }
.utility-section__head--light > p { max-width: 430px; margin: 0; color: rgba(255,255,255,.72); font-size: .98rem; line-height: 1.65; }
.simple-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.simple-steps article { position: relative; min-height: 220px; padding: 31px 29px 30px; background: #222222; border: 1px solid rgba(255,255,255,.14); border-top: 4px solid #ff8e61; border-radius: 9px; }
.simple-step-number { display: block; margin-bottom: 34px; color: #ff9b72; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.simple-steps h3 { margin-bottom: 11px; color: #fff; font-size: 1.22rem; font-weight: 720; }
.simple-steps p { max-width: 360px; margin: 0; color: rgba(255,255,255,.76); font-size: .94rem; line-height: 1.65; }

.public-safety-band { padding: 45px 0; background: #fff3ed; border-block: 1px solid #f0d7cc; }
.public-safety-band__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; }
.public-safety-band__icon { display: grid; width: 58px; height: 58px; place-items: center; color: #d74e2c; background: #fffaf7; border: 1px solid #efcfc1; border-radius: 50%; }
.public-safety-band h2 { margin-bottom: 5px; color: #222b36; font-size: 1.2rem; font-weight: 720; }
.public-safety-band p { max-width: 760px; margin: 0; color: #4b5867; font-size: .9rem; line-height: 1.6; }
.public-safety-band .button--paper { color: #26313e; background: #fff; border-color: #bbc6d2; }
.public-safety-band .button--paper:hover { color: #fff; background: #17324d; border-color: #17324d; }

/* Public browse */
.browse-head { padding: 58px 0 52px; background: #f47a45; }
.browse-head .utility-kicker { color: #fff; opacity: .85; }
.browse-head h1 { margin-bottom: 9px; color: #fff; font-size: clamp(2.4rem, 4vw, 3.25rem); font-weight: 720; }
.browse-head p { margin: 0; color: rgba(255,255,255,.88); font-size: 1rem; }
.browse-content { padding: 0 0 90px; background: #f5f6f7; }
.browse-search { position: relative; top: -25px; display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 10px; padding: 18px; background: #fff; border: 1px solid #d9dee5; border-radius: 12px; box-shadow: 0 8px 24px rgba(45,52,60,.1); }
.browse-search label > span:first-child { display: block; margin-bottom: 6px; color: #626971; font-size: .76rem; font-weight: 700; }
.browse-search label > span:last-child { display: flex; min-height: 53px; align-items: center; gap: 10px; padding: 0 13px; background: #fff; border: 1px solid #cfd5dd; border-radius: 8px; }
.browse-search input, .browse-search select { width: 100%; min-width: 0; height: 49px; color: #3c4249; background: transparent; border: 0; outline: 0; font-size: .94rem; }
.browse-search button { align-self: end; min-height: 53px; padding: 0 22px; color: #fff; background: #df4c2b; border: 0; border-radius: 8px; font-weight: 760; cursor: pointer; }
.results-bar { display: flex; align-items: center; justify-content: space-between; padding: 5px 0 20px; }
.results-bar strong, .results-bar span { display: block; }
.results-bar strong { color: #3c4249; font-size: 1.12rem; }
.results-bar span { margin-top: 3px; color: #727982; font-size: .82rem; }
.results-bar > a { display: inline-flex; align-items: center; gap: 6px; color: #ce4928; font-size: .91rem; font-weight: 720; text-decoration: none; }
.browse-results { display: grid; gap: 15px; }
.browse-result { display: grid; grid-template-columns: 160px minmax(0, 1fr) 230px 210px; align-items: stretch; overflow: hidden; background: #fff; border: 1px solid #dce1e7; border-radius: 11px; box-shadow: 0 2px 8px rgba(45,52,60,.04); }
.browse-result > *, .browse-result__main > div, .result-donor > span:last-child { min-width: 0; }
.browse-result__status { display: flex; flex-direction: column; justify-content: center; padding: 23px; background: #f6f7f8; border-right: 1px solid #e0e4e9; }
.browse-result__status .availability-dot { margin-bottom: 12px; }
.browse-result__status strong { color: #d24a29; font-size: 1.02rem; }
.browse-result__status small { margin-top: 3px; color: #707780; font-size: .74rem; }
.browse-result__main { padding: 21px 24px; }
.result-category { color: #ca4928; font-size: .73rem; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; }
.browse-result__main h2 { margin: 5px 0 7px; color: #343941; font-size: 1.25rem; font-weight: 720; }
.browse-result__main p { display: -webkit-box; overflow: hidden; margin-bottom: 15px; font-size: .92rem; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.result-donor { display: flex; min-width: 0; align-items: center; gap: 11px; }
.result-donor .mini-org { display: grid; width: 40px; height: 40px; flex: 0 0 40px; place-items: center; margin: 0; overflow: hidden; font-size: .72rem; line-height: 1; text-align: center; }
.result-donor span, .result-donor strong, .result-donor small { display: block; }
.result-donor strong { color: #464c54; font-size: .86rem; overflow-wrap: anywhere; }
.result-donor small { color: #767d85; font-size: .78rem; }
.browse-result__facts { display: flex; flex-direction: column; justify-content: center; gap: 12px; margin: 0; padding: 18px 22px; border-left: 1px solid #e0e4e9; }
.browse-result__facts div { display: flex; justify-content: space-between; gap: 12px; }
.browse-result__facts dt { color: #747b84; font-size: .8rem; }
.browse-result__facts dd { margin: 0; color: #3f454d; font-size: .84rem; font-weight: 680; line-height: 1.35; text-align: right; overflow-wrap: anywhere; }
.browse-result__action { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 20px; color: #fff; background: #4a5058; font-size: .92rem; font-weight: 720; text-align: center; text-decoration: none; transition: background var(--ease); }
.browse-result__action:hover { background: #343941; }
.public-empty { padding: 70px 30px; text-align: center; background: #fff; border: 1px solid #dce1e7; border-radius: 12px; }
.public-empty > div { display: grid; width: 62px; height: 62px; place-items: center; margin: 0 auto 18px; color: #d34e2d; background: #fff0ea; border-radius: 50%; }
.public-empty h1, .public-empty h2 { margin-bottom: 9px; color: #3c4249; font-size: 1.7rem; }
.public-empty p { margin: 0 auto 22px; }
.public-empty-page { padding: 80px 24px; }

.listing-map-card { overflow: hidden; background: #fff; border: 1px solid #dce1e7; border-radius: 11px; }
.listing-map-card > header { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 24px; background: #f7f8f9; border-bottom: 1px solid #dce1e7; }
.listing-map-card > header > div { display: flex; min-width: 0; align-items: center; gap: 13px; color: #d14b2a; }
.listing-map-card > header span { min-width: 0; }
.listing-map-card > header small { display: block; margin-bottom: 3px; color: #777f88; font-size: .69rem; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; }
.listing-map-card h2 { margin: 0; color: #363c44; font-size: 1.05rem; overflow-wrap: anywhere; }
.map-privacy-label { flex: 0 0 auto; padding: 6px 9px; color: #9c391f; background: #ffe9df; border-radius: 5px; font-size: .7rem; font-weight: 760; }
.listing-map-card iframe { display: block; width: 100%; height: 290px; border: 0; background: #e9edf0; }
.listing-map-card > footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 17px 24px; border-top: 1px solid #dce1e7; }
.listing-map-card > footer p { max-width: 590px; margin: 0; color: #626b75; font-size: .79rem; line-height: 1.5; }
.listing-map-card > footer a { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 6px; color: #bf4022; font-size: .8rem; font-weight: 740; text-decoration: none; }
.listing-map-card > footer a:hover { text-decoration: underline; }

/* Public posting flow */
.public-flow-head { padding: 54px 0; color: #fff; background: #4a5058; }
.public-flow-head--orange { background: #f47a45; }
.public-flow-head--orange .public-flow-head__inner > div:first-child > span { color: #fff; }
.public-flow-head.public-flow-head--orange p,
.public-flow-head--orange .public-flow-head__fact small { color: rgba(255,255,255,.92); }
.public-flow-head--orange .public-flow-head__fact { border-left-color: rgba(255,255,255,.42); }
.public-flow-head--orange .public-flow-head__fact svg { color: #fff; }
.public-flow-head__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.public-flow-head__inner > div:first-child > span { display: block; margin-bottom: 8px; color: #ff9b70; font-size: .78rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.public-flow-head h1 { margin-bottom: 7px; color: #fff; font-size: 2.7rem; font-weight: 720; }
.public-flow-head p { margin: 0; color: rgba(255,255,255,.76); font-size: 1rem; }
.public-flow-head__fact { display: flex; max-width: 360px; align-items: center; gap: 14px; padding-left: 30px; border-left: 1px solid rgba(255,255,255,.2); }
.public-flow-head__fact svg { flex: 0 0 auto; color: #ff9b70; }
.public-flow-head__fact span, .public-flow-head__fact strong, .public-flow-head__fact small { display: block; }
.public-flow-head__fact strong { margin-bottom: 3px; font-size: .95rem; }
.public-flow-head__fact small { color: rgba(255,255,255,.67); font-size: .78rem; line-height: 1.45; }
.public-form-section { padding: 60px 0 90px; background: #f5f6f7; }
.public-form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; align-items: start; gap: 25px; }
.public-form-card { overflow: hidden; background: #fff; border: 1px solid #dce1e7; border-radius: 12px; box-shadow: 0 3px 14px rgba(45,52,60,.05); }
.honeypot { position: absolute; left: -9999px; }
.public-form-block { padding: 32px 34px; border-bottom: 1px solid #e2e5e9; }
.public-form-block > header { display: grid; grid-template-columns: 36px 1fr; gap: 13px; margin-bottom: 24px; }
.public-form-block > header > span { display: grid; width: 32px; height: 32px; place-items: center; color: #fff; background: #f2673a; border-radius: 50%; font-size: .82rem; font-weight: 800; }
.public-form-block h2 { margin: 1px 0 4px; color: #3a4047; font-size: 1.2rem; font-weight: 720; }
.public-form-block header p { margin: 0; font-size: .84rem; }
.public-form-card .field label { color: #4c535c; font-size: .83rem; }
.public-form-card .field label > span { color: #d84d2b; }
.public-form-card .input, .public-form-card .select, .public-form-card .textarea { font-size: .94rem; }
.public-checks { display: flex; gap: 25px; margin-top: 22px; }
.public-form-block--final { border-bottom: 0; }
.public-form-actions { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 26px; }
.public-form-actions > a { color: #686f78; font-size: .9rem; font-weight: 650; }
.public-form-aside { position: sticky; top: 24px; overflow: hidden; background: #4a5058; border-radius: 12px; box-shadow: 0 8px 24px rgba(45,52,60,.1); }
.public-form-aside > div { padding: 27px 25px 24px; }
.aside-number { display: inline-block; margin-bottom: 15px; padding: 5px 9px; color: #9e391e; background: #ffb08e; border-radius: 5px; font-size: .74rem; font-weight: 760; text-transform: uppercase; }
.public-form-aside h2 { margin-bottom: 9px; color: #fff; font-size: 1.3rem; font-weight: 720; }
.public-form-aside p { margin: 0; color: rgba(255,255,255,.7); font-size: .84rem; line-height: 1.55; }
.public-form-aside ul { margin: 0; padding: 0; background: #3f454d; list-style: none; }
.public-form-aside li { display: flex; gap: 12px; padding: 17px 22px; border-top: 1px solid rgba(255,255,255,.09); }
.public-form-aside li svg { flex: 0 0 auto; color: #ff9a70; }
.public-form-aside li span, .public-form-aside li strong { display: block; }
.public-form-aside li strong { margin-bottom: 2px; color: #fff; font-size: .8rem; }
.public-form-aside li span { color: rgba(255,255,255,.67); font-size: .75rem; }

/* Public listing details */
.public-listing-page { padding: 34px 0 90px; background: #f5f6f7; }
.public-listing-page .notice { max-width: 100%; margin-bottom: 18px; border-radius: 8px; }
.listing-breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 20px; color: #747b84; font-size: .84rem; }
.listing-breadcrumb a { display: inline-flex; align-items: center; gap: 6px; color: #c94a2a; font-weight: 680; text-decoration: none; }
.public-listing-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: start; gap: 22px; }
.public-listing-detail { overflow: hidden; background: #fff; border: 1px solid #dce1e7; border-radius: 12px; }
.public-listing-detail > header { padding: 34px 36px 30px; border-bottom: 1px solid #e1e5ea; }
.public-listing-detail__labels { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; color: #737a83; font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.status-label { display: inline-flex; align-items: center; gap: 7px; color: #217454; }
.status-label i { width: 9px; height: 9px; background: #29a576; border-radius: 50%; }
.public-listing-detail h1 { max-width: 750px; margin-bottom: 12px; color: #343941; font-size: clamp(2.2rem, 4vw, 3.25rem); font-weight: 720; }
.public-listing-detail > header > p { max-width: 750px; margin: 0; font-size: 1rem; line-height: 1.65; }
.listing-summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid #e1e5ea; }
.listing-summary-grid > div { display: flex; min-width: 0; align-items: center; gap: 11px; padding: 22px 20px; border-right: 1px solid #e1e5ea; }
.listing-summary-grid > div:last-child { border-right: 0; }
.listing-summary-grid svg { flex: 0 0 auto; color: #d9502e; }
.listing-summary-grid span, .listing-summary-grid small, .listing-summary-grid strong { display: block; min-width: 0; }
.listing-summary-grid small { margin-bottom: 3px; color: #7b828a; font-size: .7rem; font-weight: 690; text-transform: uppercase; }
.listing-summary-grid strong { overflow: hidden; color: #3f454d; font-size: .82rem; text-overflow: ellipsis; white-space: nowrap; }
.listing-information { padding: 29px 36px; border-bottom: 1px solid #e1e5ea; }
.listing-information h2 { margin-bottom: 21px; color: #3b4148; font-size: 1.13rem; font-weight: 720; }
.listing-information dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 35px; margin: 0; }
.listing-information dt { margin-bottom: 4px; color: #7a818a; font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.listing-information dd { margin: 0; color: #3e444c; font-size: .9rem; }
.listing-information--note { display: flex; gap: 14px; background: #fff8f4; border-bottom: 0; }
.listing-information--note svg { flex: 0 0 auto; color: #d84f2d; }
.listing-information--note h2 { margin-bottom: 5px; }
.listing-information--note p { margin: 0; font-size: .86rem; line-height: 1.55; }
.pickup-card { overflow: hidden; background: #fff; border: 1px solid #dce1e7; border-radius: 12px; box-shadow: 0 5px 16px rgba(45,52,60,.06); }
.pickup-card__deadline { padding: 23px 25px; color: #fff; background: #4a5058; }
.pickup-card__deadline span, .pickup-card__deadline strong, .pickup-card__deadline small { display: block; }
.pickup-card__deadline span { margin-bottom: 5px; color: rgba(255,255,255,.7); font-size: .76rem; font-weight: 700; text-transform: uppercase; }
.pickup-card__deadline strong { font-size: 1.8rem; }
.pickup-card__deadline small { margin-top: 3px; color: rgba(255,255,255,.7); font-size: .78rem; }
.pickup-card__head { padding: 23px 25px 5px; }
.pickup-card__head h2 { margin-bottom: 6px; color: #3b4148; font-size: 1.2rem; }
.pickup-card__head p { margin: 0; font-size: .82rem; line-height: 1.5; }
.pickup-card form { display: grid; gap: 15px; padding: 18px 25px 25px; }
.pickup-card .field label { font-size: .79rem; }
.pickup-card .textarea { min-height: 82px; }
.pickup-card .check-row { margin: 0; }
.pickup-card__connected { padding: 30px 25px; text-align: center; }
.pickup-card__connected svg { margin: 0 auto 11px; color: #1c9568; }
.pickup-card__connected h2 { margin-bottom: 7px; font-size: 1.2rem; }
.pickup-card__connected p { margin: 0; font-size: .85rem; }
.connection-panel { display: grid; grid-template-columns: auto minmax(0, .8fr) 1.4fr; align-items: center; gap: 19px; padding: 24px; margin-bottom: 22px; color: #fff; background: #29795d; border-radius: 12px; box-shadow: 0 5px 16px rgba(41,121,93,.16); }
.connection-panel__icon { display: grid; width: 52px; height: 52px; place-items: center; color: #29795d; background: #fff; border-radius: 50%; }
.connection-panel > div:nth-child(2) > span { display: block; margin-bottom: 4px; color: rgba(255,255,255,.75); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.connection-panel h2 { margin-bottom: 4px; color: #fff; font-size: 1.2rem; }
.connection-panel p { margin: 0; color: rgba(255,255,255,.75); font-size: .8rem; }
.connection-panel dl { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; border-left: 1px solid rgba(255,255,255,.22); }
.connection-panel dl div { padding: 4px 18px; }
.connection-panel dt { color: rgba(255,255,255,.65); font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.connection-panel dd { margin: 5px 0 0; color: #fff; font-size: .8rem; }
.connection-panel a { color: #fff; }

/* Public information pages */
.info-page-section { padding: 80px 0 90px; background: #fff; }
.info-page-section--grey { background: #f5f6f7; border-block: 1px solid #e1e5e9; }
.info-intro { display: grid; grid-template-columns: 1fr .65fr; align-items: end; gap: 70px; margin-bottom: 38px; }
.info-intro > div > span { display: block; margin-bottom: 7px; color: #d44d2b; font-size: .8rem; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; }
.info-intro h2 { max-width: 680px; margin: 0; color: #3b4047; font-size: clamp(2rem, 3.2vw, 2.7rem); font-weight: 720; }
.info-intro > p { margin: 0; font-size: .98rem; line-height: 1.65; }
.info-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-steps article { display: block; padding: 30px; border: 1px solid #dce1e7; border-radius: 11px; }
.info-step-icon { display: grid; width: 51px; height: 51px; place-items: center; margin-bottom: 20px; color: #d84f2d; background: #fff0ea; border-radius: 50%; }
.info-steps h3 { margin-bottom: 9px; color: #3a4047; font-size: 1.15rem; font-weight: 720; }
.info-steps p { margin-bottom: 18px; font-size: .91rem; line-height: 1.6; }
.info-steps a { display: inline-flex; align-items: center; gap: 6px; color: #ca4828; font-size: .88rem; font-weight: 720; text-decoration: none; }
.public-boundary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.public-boundary-grid article { padding: 30px; background: #fff; border: 1px solid #dce1e7; border-radius: 11px; }
.public-boundary-grid header { display: flex; align-items: center; gap: 11px; margin-bottom: 21px; }
.public-boundary-grid header svg { color: #d94f2d; }
.public-boundary-grid h3 { margin: 0; color: #3b4148; font-size: 1.15rem; }
.public-boundary-grid ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.public-boundary-grid li { position: relative; padding-left: 20px; color: #565e67; font-size: .93rem; }
.public-boundary-grid li::before { position: absolute; top: .6em; left: 0; width: 7px; height: 7px; content: ""; background: #f2673a; border-radius: 50%; }
.info-cta { padding: 48px 0; background: #fff3ed; border-top: 1px solid #f0d7cc; }
.info-cta > .shell { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.info-cta h2 { margin-bottom: 5px; color: #222b36; font-size: 1.8rem; }
.info-cta p { margin: 0; color: #4b5867; }
.info-cta .shell > div:last-child { display: flex; gap: 10px; }
.info-cta .button--dark { color: #fff; background: #42474f; }
.public-responsibility-list { overflow: hidden; border: 1px solid #dce1e7; border-radius: 11px; }
.public-responsibility-list article { display: grid; grid-template-columns: 190px 1fr; align-items: start; gap: 28px; padding: 25px 27px; background: #fff; border-bottom: 1px solid #e1e5e9; }
.public-responsibility-list article:last-child { border-bottom: 0; }
.responsibility-person { width: fit-content; padding: 6px 9px; color: #9e351b; background: #ffe0d3; border-radius: 5px; font-size: .75rem; font-weight: 760; text-transform: uppercase; }
.responsibility-person--collector { color: #275c8d; background: #e5f0fa; }
.responsibility-person--platform { color: #3f464e; background: #e9ebee; }
.public-responsibility-list h3 { margin-bottom: 6px; color: #3d434a; font-size: 1.08rem; }
.public-responsibility-list p { margin: 0; font-size: .92rem; line-height: 1.6; }
.safety-warning { padding: 42px 0; background: #fff3ed; border-top: 1px solid #f0d7cc; }
.safety-warning > .shell { display: grid; grid-template-columns: auto 1fr; gap: 17px; }
.safety-warning svg { color: #cc4928; }
.safety-warning h2 { margin-bottom: 5px; color: #3d434a; font-size: 1.2rem; }
.safety-warning p { max-width: 900px; margin: 0; font-size: .91rem; line-height: 1.6; }

.public-body .site-footer {
    padding-top: 55px;
    color: #dce5ee;
    background: #0b1c2d;
    border-top: 4px solid #f2673a;
}
.public-body .site-footer .wordmark--inverse { color: #fff; }
.public-body .site-footer .wordmark--inverse .brand-mark { color: #f2673a; }
.public-body .site-footer__brand p { color: #c2cfdb; font-size: .88rem; line-height: 1.65; }
.public-body .site-footer h2 { color: #aebdcb; font-size: .72rem; }
.public-body .site-footer a:not(.wordmark) { padding: 3px 0; color: #e7edf3; font-size: .84rem; }
.public-body .site-footer a:not(.wordmark):hover { color: #ff9b70; }
.public-body .site-footer__boundary { border-left-color: #304357; }
.public-body .site-footer__boundary p { color: #c2cfdb; font-size: .84rem; line-height: 1.65; }
.public-body .site-footer__bottom { color: #aebdcb; border-top-color: #304357; font-size: .76rem; }

@media (max-width: 1050px) {
    .public-body .site-header__inner { display: flex; }
    .public-body .nav-toggle { display: grid; width: 40px; height: 40px; place-items: center; margin-left: auto; }
    .public-body .site-nav { position: absolute; top: 76px; right: 0; left: 0; display: none; padding: 13px 24px 20px; background: #fff; border-bottom: 1px solid #dfe3e8; box-shadow: 0 8px 20px rgba(45,52,60,.09); }
    .public-body .site-nav.is-open { display: grid; }
    .public-body .site-nav a { padding: 12px 4px; border-bottom: 1px solid #eceff2; }
    .public-body .site-nav a::after { display: none; }
    .surplus-search { grid-template-columns: repeat(2, 1fr); }
    .surplus-search__submit { grid-column: 2; }
    .public-listing-grid { grid-template-columns: repeat(2, 1fr); }
    .public-listing-card:last-child { display: none; }
    .browse-result { grid-template-columns: 145px minmax(0, 1fr) 210px; }
    .browse-result__action { grid-column: 1 / -1; min-height: 52px; }
    .listing-summary-grid { grid-template-columns: repeat(2, 1fr); }
    .listing-summary-grid > div:nth-child(2) { border-right: 0; }
    .listing-summary-grid > div:nth-child(-n+2) { border-bottom: 1px solid #e1e5ea; }
}

@media (max-width: 820px) {
    .public-body .site-header__inner { min-height: 68px; }
    .public-body .site-nav { top: 68px; }
    .public-body .site-nav { top: 68px; }
    .public-body .no-account-note { display: none; }
    .surplus-hero { padding-top: 70px; }
    .surplus-search-card { padding: 30px 26px 23px; }
    .network-summary__grid { grid-template-columns: repeat(2, 1fr); }
    .network-summary__grid > div, .network-summary__grid > a { padding-left: 22px; border-bottom: 1px solid #dfe3e8; }
    .network-summary__grid > :nth-child(2) { border-right: 0; }
    .network-summary__grid > :nth-last-child(-n+2) { border-bottom: 0; }
    .utility-section__head { align-items: start; flex-direction: column; gap: 16px; }
    .simple-steps { grid-template-columns: 1fr; }
    .public-safety-band__inner { grid-template-columns: auto 1fr; }
    .public-safety-band .button { grid-column: 2; justify-self: start; }
    .browse-search { grid-template-columns: repeat(2, 1fr); }
    .browse-search button { grid-column: 2; }
    .browse-result { grid-template-columns: 135px minmax(0, 1fr); }
    .browse-result__facts { grid-column: 1 / -1; flex-direction: row; border-top: 1px solid #e0e4e9; border-left: 0; }
    .browse-result__facts div { flex: 1; }
    .public-flow-head__fact { display: none; }
    .public-form-layout, .public-listing-layout { grid-template-columns: 1fr; }
    .public-form-aside { position: static; }
    .connection-panel { grid-template-columns: auto 1fr; }
    .connection-panel dl { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.22); border-left: 0; padding-top: 15px; }
    .info-intro { grid-template-columns: 1fr; gap: 18px; }
    .info-steps { grid-template-columns: 1fr; }
    .public-body .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 30px 40px; }
    .public-body .site-footer__brand { grid-column: 1 / -1; }
    .public-body .site-footer__boundary { grid-column: 1 / -1; padding: 24px 0 0; border-top: 1px solid #304357; border-left: 0; }
}

@media (max-width: 620px) {
    .public-body { font-size: 16px; }
    .public-body .shell { width: min(calc(100% - 28px), 1190px); }
    .public-body .wordmark { font-size: 1.28rem; }
    .public-body .brand-mark { width: 38px; height: 38px; }
    .public-body .nav-toggle { flex: 0 0 42px; padding: 0; margin-right: 0; }
    .public-body .site-header__actions { display: none; }
    .public-body .site-nav { padding-bottom: 14px; }
    .public-body .site-nav a { font-size: .96rem; }
    .surplus-hero { min-height: auto; padding: 45px 0 55px; }
    .surplus-hero::before, .community-scene { height: 275px; }
    .community-scene { opacity: .6; }
    .surplus-search-card { padding: 25px 19px 20px; border-radius: 11px; }
    .surplus-search-card h1 { font-size: 2.05rem; }
    .surplus-search-card__head > p { font-size: .96rem; }
    .task-choice { gap: 18px; }
    .task-choice__option { flex: 1; }
    .task-choice__option small { display: none; }
    .surplus-search { grid-template-columns: 1fr; }
    .surplus-search__control { min-height: 56px; }
    .surplus-search__submit { grid-column: auto; min-height: 56px; }
    .search-card-foot { gap: 11px 18px; }
    .network-summary__grid { grid-template-columns: 1fr; }
    .network-summary__grid > div, .network-summary__grid > a { min-height: 86px; padding: 18px 0; border-right: 0; border-bottom: 1px solid #dfe3e8; }
    .network-summary__grid > :nth-last-child(-n+2) { border-bottom: 1px solid #dfe3e8; }
    .network-summary__grid > :last-child { border-bottom: 0; }
    .utility-section { padding: 62px 0 70px; }
    .utility-section__head h2 { font-size: 1.9rem; }
    .public-listing-grid { grid-template-columns: 1fr; }
    .public-listing-card:last-child { display: flex; }
    .simple-steps article { min-height: 0; padding: 25px 22px 27px; }
    .simple-step-number { margin-bottom: 22px; }
    .public-safety-band__inner { grid-template-columns: 1fr; }
    .public-safety-band__icon { width: 50px; height: 50px; }
    .public-safety-band .button { grid-column: auto; }
    .browse-head { padding: 43px 0 47px; }
    .browse-head h1 { font-size: 2.2rem; }
    .browse-search { grid-template-columns: 1fr; top: -20px; }
    .browse-search button { grid-column: auto; min-height: 54px; }
    .results-bar { align-items: flex-start; flex-direction: column; gap: 12px; }
    .browse-result { grid-template-columns: 1fr; }
    .browse-result__status { padding: 16px 20px; border-right: 0; border-bottom: 1px solid #e0e4e9; }
    .browse-result__status .availability-dot { margin-bottom: 8px; }
    .browse-result__facts { grid-column: auto; flex-direction: column; }
    .browse-result__action { grid-column: auto; }
    .public-flow-head { padding: 42px 0; }
    .public-flow-head h1 { font-size: 2.2rem; }
    .public-form-section { padding: 28px 0 65px; }
    .public-form-block { padding: 25px 20px; }
    .public-form-card .field-grid { grid-template-columns: 1fr; }
    .public-checks { align-items: flex-start; flex-direction: column; gap: 2px; }
    .public-form-actions { align-items: stretch; flex-direction: column-reverse; }
    .public-form-actions .button { width: 100%; }
    .public-listing-page { padding-top: 22px; }
    .public-listing-detail > header { padding: 27px 22px 24px; }
    .public-listing-detail h1 { font-size: 2.15rem; }
    .listing-summary-grid { grid-template-columns: 1fr; }
    .listing-summary-grid > div { border-right: 0; border-bottom: 1px solid #e1e5ea; }
    .listing-summary-grid > div:nth-child(-n+2) { border-bottom: 1px solid #e1e5ea; }
    .listing-summary-grid > div:last-child { border-bottom: 0; }
    .listing-information { padding: 25px 22px; }
    .listing-information dl { grid-template-columns: 1fr; }
    .listing-map-card > header, .listing-map-card > footer { align-items: flex-start; flex-direction: column; }
    .listing-map-card > header { padding: 18px 20px; }
    .listing-map-card iframe { height: 245px; }
    .listing-map-card > footer { gap: 12px; padding: 16px 20px; }
    .connection-panel { grid-template-columns: 1fr; }
    .connection-panel dl { grid-template-columns: 1fr; }
    .connection-panel dl div { padding: 10px 0; }
    .info-page-section { padding: 58px 0 65px; }
    .public-boundary-grid { grid-template-columns: 1fr; }
    .info-cta > .shell { align-items: stretch; flex-direction: column; }
    .info-cta .shell > div:last-child { flex-direction: column; }
    .public-responsibility-list article { grid-template-columns: 1fr; gap: 12px; padding: 22px 20px; }
    .public-body .site-footer { padding-top: 44px; }
    .public-body .site-footer__grid { gap: 27px 30px; padding-bottom: 38px; }
    .public-body .site-footer a:not(.wordmark), .public-body .site-footer__boundary p { font-size: .9rem; }
    .public-body .site-footer__bottom { padding-block: 18px; font-size: .8rem; line-height: 1.7; }
    .public-body .site-footer__bottom span { display: block; }
    .public-body .site-footer__bottom span + span { margin-top: 7px; }
}

@media (max-width: 440px) {
    .public-body .site-footer__grid { grid-template-columns: 1fr; }
    .public-body .site-footer__brand,
    .public-body .site-footer__boundary { grid-column: auto; }
}

/* Contact page */
.surplus-contact-page { background: #f5f6f7; }
.surplus-contact-hero { padding: 58px 0 61px; color: #fff; background: #f47a45; }
.surplus-contact-hero__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr); align-items: center; gap: 70px; }
.surplus-contact-hero .utility-kicker { color: #fff; }
.surplus-contact-hero h1 { max-width: 720px; margin: 9px 0 12px; color: #fff; font-size: clamp(2.65rem, 5vw, 4.25rem); line-height: 1.02; letter-spacing: -.045em; }
.surplus-contact-hero p { max-width: 730px; margin: 0; color: #fff; font-size: 1.05rem; line-height: 1.68; }
.contact-before-card { padding: 26px 28px 27px; color: #fff; background: #222; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; box-shadow: 0 17px 35px rgba(76,35,19,.18); }
.contact-before-card h2 { margin: 0 0 16px; color: #fff; font-size: 1.05rem; }
.contact-before-card ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.contact-before-card li { position: relative; padding-left: 19px; color: #e5e5e5; font-size: .86rem; line-height: 1.5; }
.contact-before-card li::before { position: absolute; top: .57em; left: 0; width: 7px; height: 7px; content: ""; background: #ff8c5b; border-radius: 50%; }
.surplus-contact-section { padding: 56px 0 88px; }
.surplus-contact-layout { display: grid; grid-template-columns: 330px minmax(0, 1fr); align-items: start; gap: 24px; }
.contact-info-panel { display: grid; gap: 14px; }
.contact-info-card { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 16px; padding: 23px 22px; background: #fff; border: 1px solid #dde2e7; border-radius: 11px; }
.contact-info-card__icon { display: grid; width: 48px; height: 48px; color: #cf4a28; background: #fff0ea; border-radius: 50%; place-items: center; }
.contact-info-card h2 { margin: 2px 0 7px; color: #30363d; font-size: 1rem; line-height: 1.25; }
.contact-info-card p { margin: 0; color: #5b6470; font-size: .84rem; line-height: 1.58; }
.contact-info-card a { color: #b83d20; font-weight: 700; text-decoration: none; }
.contact-info-card a:hover { text-decoration: underline; }
.contact-info-card small { display: block; margin-top: 8px; color: #737d87; font-size: .74rem; line-height: 1.45; }
.contact-form-card { padding: 34px 36px 36px; background: #fff; border: 1px solid #dce1e6; border-radius: 12px; box-shadow: 0 12px 32px rgba(30,40,50,.06); }
.contact-form-card > .notice { margin-bottom: 24px; }
.contact-form-card__head { padding-bottom: 25px; margin-bottom: 25px; border-bottom: 1px solid #e2e5e9; }
.contact-form-card__head > span { color: #c94525; font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.contact-form-card__head h2 { margin: 7px 0 7px; color: #2e343b; font-size: 1.85rem; letter-spacing: -.025em; }
.contact-form-card__head p { margin: 0; color: #606975; font-size: .87rem; line-height: 1.55; }
.contact-form { position: relative; display: grid; gap: 21px; }
.contact-form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-form__row--subject { grid-template-columns: minmax(210px, .8fr) minmax(0, 1.2fr); }
.contact-form .field label { color: #353c44; font-size: .8rem; font-weight: 700; }
.contact-form .field label span { color: #ca4727; }
.contact-form .input,
.contact-form .select,
.contact-form .textarea { color: #30363d; background: #fff; border-color: #cfd6dd; }
.contact-form .input,
.contact-form .select { min-height: 52px; }
.contact-form .textarea { min-height: 178px; resize: vertical; }
.contact-form .input:focus,
.contact-form .select:focus,
.contact-form .textarea:focus { border-color: #d64c2a; box-shadow: 0 0 0 3px rgba(242,103,58,.14); }
.field-meta { display: flex; justify-content: space-between; gap: 16px; margin-top: 7px; color: #727b85; font-size: .7rem; line-height: 1.4; }
.contact-form__actions { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-top: 23px; border-top: 1px solid #e2e5e9; }
.contact-form__actions p { max-width: 480px; margin: 0; color: #6b747e; font-size: .76rem; line-height: 1.55; }
.contact-form__actions .button { flex: 0 0 auto; }
.contact-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 900px) {
    .surplus-contact-hero__grid { grid-template-columns: minmax(0, 1fr) 310px; gap: 34px; }
    .surplus-contact-layout { grid-template-columns: 1fr; }
    .contact-info-panel { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .contact-info-card { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .surplus-contact-hero { padding: 44px 0 48px; }
    .surplus-contact-hero__grid { grid-template-columns: 1fr; gap: 27px; }
    .surplus-contact-hero h1 { font-size: 2.6rem; }
    .surplus-contact-hero p { font-size: .96rem; }
    .contact-before-card { padding: 23px 22px; }
    .surplus-contact-section { padding: 28px 0 65px; }
    .contact-info-panel { grid-template-columns: 1fr; }
    .contact-info-card { grid-template-columns: 48px minmax(0, 1fr); }
    .contact-form-card { padding: 27px 21px 25px; }
    .contact-form-card__head h2 { font-size: 1.55rem; }
    .contact-form__row,
    .contact-form__row--subject { grid-template-columns: 1fr; }
    .field-meta { align-items: flex-start; flex-direction: column; gap: 3px; }
    .contact-form__actions { align-items: stretch; flex-direction: column; gap: 17px; }
    .contact-form__actions .button { width: 100%; }
}
