/* ============================================================
   Perfect Strangers Social Club — design tokens
   Concept: an evening dinner-party invitation, not a SaaS landing
   page. Ink-plum room, candlelight brass, a warm coral for energy.
   ============================================================ */

:root {
    --ink: #1E1420;
    --ink-panel: #2A1D2C;
    --ink-panel-raised: #33232F;
    --ink-line: rgba(241, 234, 218, 0.14);
    --ink-text: #F1EADA;
    --ink-text-muted: rgba(241, 234, 218, 0.68);
    --paper: #EFE6D6;
    --paper-line: rgba(36, 23, 38, 0.14);
    --paper-text: #241726;
    --paper-text-muted: rgba(36, 23, 38, 0.66);
    --brass: #C89B4A;
    --brass-strong: #E0B764;
    --coral: #E2735A;
    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --max: 1440px;
    --radius-card: 4px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================================================
   Reset & base
   ============================================================ */

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--ink);
    color: var(--ink-text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
}

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

a {
    color: inherit;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    margin: 0;
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

.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: absolute;
    left: -999px;
    top: 0;
    background: var(--brass);
    color: var(--ink);
    padding: 0.75rem 1.25rem;
    z-index: 100;
    font-family: var(--font-body);
    font-weight: 600;
}

    .skip-link:focus {
        left: 1rem;
        top: 1rem;
    }

:focus-visible {
    outline: 2px solid var(--brass-strong);
    outline-offset: 3px;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    position: relative;
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(30, 20, 32, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ink-line);
}

.site-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.wordmark {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--ink-text);
    white-space: nowrap;
}

    .wordmark span {
        display: block;
        font-style: italic;
        font-size: 0.72em;
        color: var(--brass-strong);
        margin-top: -0.15em;
    }

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

    .site-nav a {
        text-decoration: none;
        font-size: 0.95rem;
        color: var(--ink-text-muted);
        transition: color 0.2s var(--ease);
    }

        .site-nav a:hover,
        .site-nav a:focus-visible {
            color: var(--ink-text);
        }

.site-nav__cta {
    border: 1px solid var(--brass);
    color: var(--brass-strong) !important;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
}

    .site-nav__cta:hover {
        background: var(--brass);
        color: var(--ink) !important;
    }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--ink-line);
    border-radius: 6px;
    cursor: pointer;
}

    .nav-toggle span {
        display: block;
        height: 1px;
        background: var(--ink-text);
        margin: 0 8px;
    }

@media (max-width: 780px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--ink-panel);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border-bottom: 1px solid var(--ink-line);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s var(--ease);
    }

        .site-nav.is-open {
            max-height: 320px;
        }

        .site-nav a {
            width: 100%;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--ink-line);
        }

    .site-nav__cta {
        border: none;
        border-radius: 0;
    }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
    padding: 5rem 0 6rem;
    overflow: hidden;
}

    .hero .wrap {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 3rem;
        align-items: center;
    }

.hero__eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--brass-strong);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-size: clamp(2.6rem, 5.4vw, 4.1rem);
    max-width: 14ch;
}

.hero__lede {
    margin-top: 1.5rem;
    font-size: 1.15rem;
    color: var(--ink-text-muted);
    max-width: 42ch;
}

.hero__actions {
    margin-top: 2.25rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    padding: 0.95rem 1.8rem;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn--brass {
    background: var(--brass-strong);
    color: var(--ink);
}

    .btn--brass:hover {
        background: var(--brass);
    }

.btn--ghost {
    background: transparent;
    border-color: var(--ink-line);
    color: var(--ink-text);
}

    .btn--ghost:hover {
        border-color: var(--brass-strong);
        color: var(--brass-strong);
    }

.hero__note {
    font-size: 0.9rem;
    color: var(--ink-text-muted);
}

/* Table-setting line art */
.place-setting {
    width: 100%;
    height: auto;
    max-width: 380px;
    justify-self: center;
}

    .place-setting circle,
    .place-setting path,
    .place-setting line {
        fill: none;
        stroke: var(--brass-strong);
        stroke-width: 1.1;
        stroke-linecap: round;
    }

    .place-setting .fill-coral {
        fill: var(--coral);
        stroke: none;
    }

    .place-setting .fill-brass {
        fill: var(--brass-strong);
        stroke: none;
    }

@media (max-width: 900px) {
    .hero .wrap {
        grid-template-columns: 1fr;
    }

    .place-setting {
        order: -1;
        max-width: 260px;
    }
}

/* ============================================================
   Reasons people join — three honest quotes, not a numbered list
   (these aren't steps, so no numerals here)
   ============================================================ */

.reasons {
    padding: 1rem 0 5.5rem;
}

.reasons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.reasons__item {
    padding: 0 2.25rem;
    border-left: 1px solid var(--ink-line);
}

    .reasons__item:first-child {
        border-left: none;
        padding-left: 0;
    }

    .reasons__item:last-child {
        padding-right: 0;
    }

.reasons__lead {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--ink-text);
    margin-bottom: 1rem;
}

.reasons__body {
    color: var(--ink-text-muted);
    font-size: 0.98rem;
}

.reasons__link {
    display: inline-block;
    margin-top: 1.1rem;
    color: var(--brass-strong);
    text-decoration: none;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--brass);
    padding-bottom: 2px;
}

    .reasons__link:hover {
        color: var(--brass-strong);
        border-color: var(--brass-strong);
    }

@media (max-width: 860px) {
    .reasons__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .reasons__item {
        border-left: none;
        padding: 0 0 2rem;
        border-bottom: 1px solid var(--ink-line);
    }

        .reasons__item:first-child {
            padding-left: 0;
        }

        .reasons__item:last-child {
            padding-bottom: 0;
            border-bottom: none;
        }
}

/* ============================================================
   How it works — a real sequence, numerals earn their keep
   ============================================================ */

.how {
    background: var(--paper);
    color: var(--paper-text);
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.how__head {
    max-width: 42ch;
    margin-bottom: 3rem;
}

    .how__head h2 {
        font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    }

    .how__head p {
        margin-top: 1rem;
        color: var(--paper-text-muted);
        font-size: 1.05rem;
    }

.how__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.how__step {
    border-top: 1px solid var(--paper-line);
    padding-top: 1.5rem;
}

.how__step-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--coral);
    display: block;
    margin-bottom: 0.75rem;
}

.how__step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.how__step p {
    color: var(--paper-text-muted);
}

.how__step ul {
    color: var(--paper-text-muted);
}

@media (max-width: 780px) {
    .how__steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================================
   Gatherings / events list — styled like a seating chart
   ============================================================ */

.gatherings {
    padding: 2.5rem 0;
}

.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
}

    .section-head h2 {
        font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    }

    .section-head a {
        text-decoration: none;
        color: var(--brass-strong);
        font-size: 0.95rem;
        border-bottom: 1px solid var(--brass);
        padding-bottom: 2px;
    }

.event-list {
    display: flex;
    flex-direction: column;
}

.event-row {
    display: grid;
    grid-template-columns: 90px 1.4fr 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem 0;
    border-top: 1px solid var(--ink-line);
}

.event-list .event-row:last-child {
    border-bottom: 1px solid var(--ink-line);
}

.event-row__date {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--brass-strong);
    line-height: 1.2;
}

    .event-row__date strong {
        display: block;
        font-style: normal;
        font-size: 1.6rem;
        color: var(--ink-text);
    }

.event-row__title {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.event-row__meta {
    color: var(--ink-text-muted);
    font-size: 0.92rem;
}

.event-row__where {
    color: var(--ink-text-muted);
    font-size: 0.95rem;
}

.seat-status {
    font-size: 0.85rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--ink-line);
    white-space: nowrap;
    justify-self: end;
}

.seat-status--open {
    color: var(--ink-text-muted);
}

.seat-status--almost {
    color: var(--coral);
    border-color: var(--coral);
}

.seat-status--full {
    color: var(--ink-text-muted);
    opacity: 0.6;
}

@media (max-width: 720px) {
    .event-row {
        grid-template-columns: 70px 1fr;
        row-gap: 0.5rem;
    }

    .event-row__where {
        grid-column: 2;
    }

    .seat-status {
        grid-column: 2;
        justify-self: start;
        margin-top: 0.5rem;
    }
}

/* Event page description card */
.event-detail {
    margin-top: 0.75rem;
    color: var(--ink-text-muted);
    max-width: 60ch;
    grid-column: 2 / span 2;
}

@media (max-width: 720px) {
    .event-detail {
        grid-column: 2;
    }
}

/* ============================================================
   Membership tiers — deliberately uneven, not identical cards
   ============================================================ */

.membership {
    background: var(--paper);
    color: var(--paper-text);
    padding: 3rem 0 4rem;
}

.membership-card {
    max-width: 360px;
    margin: 20px auto;
    /*background: #FDF8F0;*/
    border: 1px solid var(--brass-strong);
    border-radius: 2px;
    overflow: hidden;
    text-align: center;
}

.membership-card__top {
    padding: 2rem 1.75rem 1.5rem;
}

.membership-card__title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--brass-strong);
    margin: 0 0 1.25rem;
    letter-spacing: 0.01em;
}

.membership-card__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.membership-card__currency {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brass-strong);
    margin-bottom: 0.15rem;
    font-size: 18px !important;
    line-height: 1 !important;
    margin-right: 150px;
    vertical-align: top;
}

.membership-card__amount {
    font-family: var(--font-body);
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--brass-strong);
    letter-spacing: -0.02em;
    line-height: 1.2 !important;
    display: inline-block;
    margin-top: -30px;
}

.membership-card__validity {
    font-size: 0.95rem;
    color: var(--brass-strong);
    margin: 0 0 1.75rem;
}

.membership-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 0.5rem;
}

.membership-card__btn {
    display: block;
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: var(--brass-strong);
    color: #1E1420;
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s var(--ease);
}

    .membership-card__btn:hover,
    .membership-card__btn:focus,
    .membership-card__btn:active {
        background: var(--brass);
        color: #fff;
        text-decoration: none;
    }

.membership-card__perks {
    border-top: 1px solid #A8C0D0;
    padding: 1.5rem 1.75rem 1.75rem;
}

    .membership-card__perks p {
        font-size: 0.95rem;
        color: #6B8FA3;
        margin: 0 0 0.85rem;
        line-height: 1.4;
    }

        .membership-card__perks p:last-child {
            margin-bottom: 0;
        }

.tier-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.16fr 0.92fr;
    gap: 1.5rem;
    align-items: stretch;
}

.tier-card {
    background: var(--ink-panel-raised);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius-card);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
}

.tier-card--recommended {
    background: linear-gradient(165deg, var(--ink-panel-raised), #3B2734);
    border-color: var(--brass);
    padding: 2.5rem 2rem;
    transform: translateY(-0.75rem);
}

.tier-card__name {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.tier-card__tagline {
    color: var(--ink-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.tier-card__price {
    font-family: var(--font-display);
    font-size: 2.1rem;
    margin-bottom: 1.75rem;
}

    .tier-card__price span {
        font-family: var(--font-body);
        font-size: 0.95rem;
        color: var(--ink-text-muted);
        font-weight: 400;
    }

.tier-card__perks {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

    .tier-card__perks li {
        padding-left: 1.4rem;
        position: relative;
        color: var(--ink-text-muted);
        font-size: 0.95rem;
    }

        .tier-card__perks li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.55em;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brass-strong);
        }

@media (max-width: 900px) {
    .tier-grid {
        grid-template-columns: 1fr;
    }

    .tier-card--recommended {
        transform: none;
        order: -1;
    }
}

/* ============================================================
   Quote / testimonial strip
   ============================================================ */

.quote-strip {
    padding: 2rem 0;
    text-align: center;
}

    .quote-strip blockquote {
        margin: 0 auto;
        max-width: 32ch;
        font-family: var(--font-display);
        font-style: italic;
        font-size: clamp(1.5rem, 3vw, 2rem);
        line-height: 1.4;
    }

    .quote-strip cite {
        display: block;
        margin-top: 1.5rem;
        font-style: normal;
        font-family: var(--font-body);
        color: var(--ink-text-muted);
        font-size: 0.9rem;
    }

/* ============================================================
   Closing CTA band
   ============================================================ */

.closing-cta {
    background: var(--paper);
    color: var(--paper-text);
    padding: 5rem 0;
    text-align: center;
}

    .closing-cta h2 {
        font-size: clamp(2rem, 4vw, 2.8rem);
        max-width: 20ch;
        margin: 0 auto 1.5rem;
    }

    .closing-cta .btn--brass {
        color: var(--ink);
    }

.closing-cta__actions {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.closing-cta .btn--ghost {
    border-color: var(--paper-line);
    color: var(--paper-text);
}

    .closing-cta .btn--ghost:hover {
        border-color: var(--coral);
        color: var(--coral);
    }

/* ============================================================
   Simple page header (Events / Membership / Contact top banner)
   ============================================================ */

.page-banner {
    padding: 2rem 0 3rem;
    border-bottom: 1px solid var(--ink-line);
}

.page-banner__kicker {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--brass-strong);
    margin-bottom: 1rem;
}

.page-banner h1 {
    font-size: clamp(2.2rem, 4.4vw, 3.2rem);
    max-width: 18ch;
}

.page-banner p {
    margin-top: 1.25rem;
    color: var(--ink-text-muted);
    max-width: 55ch;
    font-size: 1.05rem;
}

.page-banner ul {
    margin-top: 1.25rem;
    color: var(--ink-text-muted);
    max-width: 55ch;
    font-size: 1.05rem;
}

/* ============================================================
   Simple page header (About top banner)
   ============================================================ */

.about-banner {
    padding: 2rem 0 2rem;
    border-bottom: 1px solid var(--ink-line);
    overflow: hidden;
}

.about-banner__kicker {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--brass-strong);
    margin-bottom: 1rem;
}

.about-banner h1 {
    font-size: clamp(2.2rem, 4.4vw, 3.2rem);
    max-width: 18ch;
}

.about-banner p {
    margin-top: 1.25rem;
    color: var(--ink-text-muted);
    max-width: 55ch;
    font-size: 1.05rem;
}

/* ============================================================
   Contact / reserve form
   ============================================================ */

.contact-section {
    padding: 4.5rem 0 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
}

.contact-aside h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-aside p {
    color: var(--ink-text-muted);
    margin-bottom: 1rem;
}

.contact-aside ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: var(--ink-text-muted);
    font-size: 0.95rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

    .form-field label {
        display: block;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        color: var(--ink-text-muted);
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        width: 100%;
        background: var(--ink-panel-raised);
        border: 1px solid var(--ink-line);
        border-radius: 6px;
        padding: 0.85rem 1rem;
        color: var(--ink-text);
        font-family: var(--font-body);
        font-size: 1rem;
    }

        .form-field input:focus,
        .form-field select:focus,
        .form-field textarea:focus {
            outline: none;
            border-color: var(--brass-strong);
        }

    .form-field textarea {
        resize: vertical;
        min-height: 110px;
    }

.field-error {
    color: var(--coral);
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: block;
}

.validation-summary {
    background: rgba(226, 115, 90, 0.12);
    border: 1px solid var(--coral);
    color: var(--ink-text);
    padding: 1rem 1.25rem;
    border-radius: 6px;
    margin-bottom: 1.75rem;
}

    .validation-summary ul {
        margin: 0.4rem 0 0;
        padding-left: 1.2rem;
    }

.confirm-panel {
    background: var(--ink-panel-raised);
    border: 1px solid var(--brass);
    border-radius: 6px;
    padding: 2.5rem;
    text-align: left;
}

    .confirm-panel h2 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }

    .confirm-panel p {
        color: var(--ink-text-muted);
    }

@media (max-width: 860px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Why become a member — a real sequence, numerals earn their keep
   ============================================================ */

.why {
    background: var(--paper);
    color: var(--paper-text);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.why__head {
    max-width: 42ch;
    margin-bottom: 3rem;
}

    .why__head h2 {
        font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    }

    .why__head p {
        margin-top: 1rem;
        color: var(--paper-text-muted);
        font-size: 1.05rem;
    }

    .why__head ul {
        color: var(--paper-text-muted);
    }

.why__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.why__step {
    border-top: 1px solid var(--paper-line);
    padding-top: 1.5rem;
}

.why__step-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--coral);
    display: block;
    margin-bottom: 0.75rem;
}

.why__step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.why__step p {
    color: var(--paper-text-muted);
}

@media (max-width: 780px) {
    .why__steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================================
   Admin
   ============================================================ */

.admin-login {
    max-width: 420px;
}

.admin-topbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.admin-form__title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.admin-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 520px) {
    .admin-form__row {
        grid-template-columns: 1fr;
    }
}

.admin-form__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-list {
    display: flex;
    flex-direction: column;
}

.admin-list__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--ink-line);
}

    .admin-list__row:last-child {
        border-bottom: 1px solid var(--ink-line);
    }

.admin-list__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.admin-list__meta {
    color: var(--ink-text-muted);
    font-size: 0.85rem;
}

.admin-list__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.admin-list__edit {
    color: var(--brass-strong);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--brass);
}

.admin-list__delete {
    background: none;
    border: none;
    color: var(--coral);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-body);
}

    .admin-list__delete:hover {
        text-decoration: underline;
    }

.admin-list__empty {
    color: var(--ink-text-muted);
    padding: 1.5rem 0;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
    background: var(--ink);
    border-top: 1px solid var(--ink-line);
    padding-top: 3.5rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
}

.wordmark--footer {
    font-size: 1.1rem;
}

.site-footer__tag {
    margin-top: 0.9rem;
    color: var(--ink-text-muted);
    max-width: 32ch;
    font-size: 0.95rem;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

    .site-footer__links a {
        text-decoration: none;
        color: var(--ink-text-muted);
        font-size: 0.95rem;
    }

        .site-footer__links a:hover {
            color: var(--ink-text);
        }

.site-footer__label {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--brass-strong);
    margin-bottom: 0.4rem;
}

.site-footer__base {
    border-top: 1px solid var(--ink-line);
    padding: 1.5rem 0;
    color: var(--ink-text-muted);
    font-size: 0.85rem;
}

.site-footer__base-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-footer__logo {
    width: 120px;
    height: auto;
    border-radius: 4px;
    flex-shrink: 0;
}

.site-footer__base-inner p {
    margin: 0;
}

.site-footer__header p {
    margin: 0;
    color: var(--brass-strong);
    font-size: 1.20rem;
    font-family: var(--font-display);
    font-style: italic;
}

.site-footer__label {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--brass-strong);
    margin-bottom: 0.4rem;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

    .site-footer__contact p {
        margin: 0;
        color: var(--ink-text-muted);
        font-size: 0.95rem;
    }

@media (max-width: 720px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}
