/* ==========================================================================
   Midnight Cove — Stylesheet (v2: Pirate Banner direction)
   Palette pulled from the band's hand-painted pirate flag + rusted-compass mood.
   Edit design tokens at the top; everything else cascades.
   ========================================================================== */

/* ----- Design tokens ------------------------------------------------------ */
:root {
    /* Primary palette (from banner) */
    --color-cloth:     #0B0D10;  /* black flag cloth — base */
    --color-cloth-2:   #141820;  /* slightly lifted cloth, for cards */
    --color-acid:      #A8C23A;  /* acid green hand-painted letters */
    --color-acid-soft: #C7DB5F;
    --color-teal:      #2B8FB8;  /* ocean teal — the wave strip */
    --color-teal-deep: #1B5A7A;
    --color-bone:      #F3E9CF;  /* skull / parchment / body text */
    --color-bone-dim:  rgba(243, 233, 207, 0.72);
    --color-bone-mute: rgba(243, 233, 207, 0.52);

    /* Compass palette (rusted brass / patina) */
    --color-patina:    #4F8F84;  /* oxidized copper-green */
    --color-brass:     #C9A246;  /* weathered gold */
    --color-rust:      #B85A2A;  /* rust orange */

    /* Typography */
    --font-display:  "Rye", "Fraunces", "Georgia", serif;
    --font-body:     "Inter", "Helvetica Neue", "Arial", sans-serif;
    --font-accent:   "Special Elite", "Courier New", monospace;

    /* Sizing */
    --radius-sm: 2px;
    --radius-md: 6px;
    --radius-lg: 14px;
    --maxw:      1200px;
    --gutter:    clamp(1rem, 4vw, 2.5rem);

    /* Motion */
    --ease:     cubic-bezier(.2, .7, .2, 1);
    --t-quick:  180ms;
    --t-smooth: 360ms;
}

/* ----- Base --------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--color-cloth);
    color: var(--color-bone);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    /* Subtle cloth / paper grain on the whole page */
    background-image:
        radial-gradient(ellipse at 20% 10%, rgba(43, 143, 184, 0.08), transparent 55%),
        radial-gradient(ellipse at 80% 90%, rgba(168, 194, 58, 0.06), transparent 60%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .95  0 0 0 0 .91  0 0 0 0 .81  0 0 0 .05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
img { max-width: 100%; height: auto; display: block; }
a {
    color: var(--color-acid);
    text-decoration: none;
    transition: color var(--t-quick) var(--ease);
    text-underline-offset: 3px;
}
a:hover, a:focus { color: var(--color-teal); text-decoration: underline; text-decoration-thickness: 1px; }

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.01em;
    margin: 0 0 0.75em;
    color: var(--color-bone);
}
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; }
.lead { font-size: 1.1rem; color: var(--color-bone-dim); }

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

/* ----- Layout helpers ---------------------------------------------------- */
.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
section { padding: clamp(3rem, 7vw, 6rem) 0; position: relative; }
section.tight { padding: clamp(2rem, 4vw, 3rem) 0; }

/* Wavy divider between sections — echoes the banner's water strip */
.wave-divider {
    width: 100%;
    height: 40px;
    color: var(--color-teal);
    opacity: 0.5;
}
.wave-divider svg { width: 100%; height: 100%; }

/* ----- Buttons ----------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 0.85em 1.75em;
    border: 2px solid var(--color-bone);
    border-radius: var(--radius-sm);
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-bone);
    background: transparent;
    cursor: pointer;
    transition: all var(--t-quick) var(--ease);
    text-decoration: none;
    position: relative;
}
.btn:hover, .btn:focus {
    background: var(--color-bone);
    color: var(--color-cloth);
    text-decoration: none;
}
.btn--primary {
    background: var(--color-acid);
    border-color: var(--color-acid);
    color: var(--color-cloth);
    font-weight: 700;
    box-shadow: 3px 3px 0 var(--color-cloth);
}
.btn--primary:hover, .btn--primary:focus {
    background: var(--color-teal);
    border-color: var(--color-teal);
    color: var(--color-bone);
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--color-cloth);
}
.btn--ghost { border-color: var(--color-bone-dim); color: var(--color-bone-dim); }

/* ----- Announcement bar -------------------------------------------------- */
.announcement {
    background: var(--color-teal);
    color: var(--color-cloth);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    border-bottom: 2px solid var(--color-cloth);
}
.announcement__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0.65rem var(--gutter);
    display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
    align-items: center; justify-content: center;
    text-align: center;
}
.announcement__text { margin: 0; font-weight: 700; }
.announcement__cta {
    color: var(--color-cloth);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}
.announcement__cta:hover, .announcement__cta:focus { color: var(--color-acid); }

/* ----- Header + nav ------------------------------------------------------ */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(11, 13, 16, 0.92);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid rgba(168, 194, 58, 0.2);
}
.site-header__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0.65rem var(--gutter);
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
}
.site-header__brand {
    display: inline-flex; align-items: center;
    text-decoration: none;
    line-height: 0;
}
.site-header__brand img {
    height: 44px;
    width: auto;
    max-width: 260px;
    display: block;
    /* Remove inherited link underline effects */
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.6));
    transition: transform var(--t-quick) var(--ease);
}
.site-header__brand:hover img { transform: translateY(-1px); }

.site-nav ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: clamp(1rem, 2.5vw, 2rem);
}
.site-nav a {
    color: var(--color-bone-dim);
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35em 0;
    border-bottom: 2px solid transparent;
    transition: color var(--t-quick) var(--ease), border-color var(--t-quick) var(--ease);
    text-decoration: none;
}
.site-nav a:hover, .site-nav a:focus {
    color: var(--color-bone);
    text-decoration: none;
}
.site-nav a[aria-current="page"] {
    color: var(--color-acid);
    border-bottom-color: var(--color-acid);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: 0; padding: 0; cursor: pointer;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px;
}
.nav-toggle__bar {
    display: block; width: 22px; height: 2px;
    background: var(--color-bone);
    transition: transform var(--t-quick) var(--ease), opacity var(--t-quick) var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
    .nav-toggle { display: inline-flex; }
    .site-nav {
        position: absolute; left: 0; right: 0; top: 100%;
        background: var(--color-cloth);
        border-bottom: 1px solid rgba(168, 194, 58, 0.2);
        transform: translateY(-8px);
        opacity: 0; pointer-events: none;
        transition: transform var(--t-smooth) var(--ease), opacity var(--t-smooth) var(--ease);
    }
    .site-nav.is-open {
        transform: translateY(0); opacity: 1; pointer-events: auto;
    }
    .site-nav ul {
        flex-direction: column; gap: 0;
        padding: 0.5rem var(--gutter) 1.5rem;
    }
    .site-nav li { border-bottom: 1px solid rgba(243, 233, 207, 0.08); }
    .site-nav a { display: block; padding: 1rem 0; }
    .site-header__brand img { height: 36px; }
}

/* ----- Hero (home) ------------------------------------------------------- */
.hero {
    position: relative;
    padding: clamp(2rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(43, 143, 184, 0.2), transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(168, 194, 58, 0.1), transparent 60%);
}
/* Faded compass rose in the background */
.hero::before {
    content: "";
    position: absolute;
    top: 50%; right: -12%;
    width: 55%;
    max-width: 620px;
    aspect-ratio: 1;
    transform: translateY(-50%);
    background-image: url("/assets/img/compass.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: var(--color-brass);
    opacity: 0.08;
    filter: sepia(0.5) hue-rotate(-10deg);
    pointer-events: none;
    animation: spin-slow 120s linear infinite;
}
@keyframes spin-slow { to { transform: translateY(-50%) rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }

.hero__inner { position: relative; z-index: 1; }
.hero__banner {
    display: block;
    margin: 0 auto clamp(1.25rem, 3vw, 2rem);
    max-width: min(900px, 92%);
    width: 100%;
    height: auto;
    /* Slight tilt + shadow like the flag is hanging on a wall */
    transform: rotate(-0.8deg);
    box-shadow:
        0 10px 30px -5px rgba(0,0,0,0.8),
        0 40px 80px -20px rgba(43, 143, 184, 0.15);
    border: 2px solid rgba(243, 233, 207, 0.04);
}
.hero__eyebrow {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-acid);
    margin: 0 0 1rem;
}
.hero__sub {
    max-width: 38rem; margin: 0 auto 2rem;
    color: var(--color-bone-dim);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    font-family: var(--font-body);
}
.hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ----- Section headings -------------------------------------------------- */
.section-eyebrow {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-acid);
    margin: 0 0 0.75rem;
}
.section-head {
    display: flex; align-items: baseline; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    margin-bottom: 2.5rem;
}
.section-head h2 { margin: 0; }
.section-head a {
    font-family: var(--font-accent);
    font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase;
}

/* Small compass-rose section ornament */
.section-ornament {
    display: block;
    width: clamp(44px, 5vw, 62px);
    height: auto;
    margin: 0 auto 1rem;
    color: var(--color-brass);
    opacity: 0.75;
}

/* ----- Home-page calendar section container ----------------------------- */
.calendar-section {
    position: relative;
    background:
        radial-gradient(ellipse at 100% 0%, rgba(79, 143, 132, 0.15), transparent 50%),
        radial-gradient(ellipse at 0% 100%, rgba(201, 162, 70, 0.08), transparent 55%),
        var(--color-cloth);
    border-top: 2px solid rgba(43, 143, 184, 0.25);
    border-bottom: 2px solid rgba(43, 143, 184, 0.25);
}

/* ----- Concert calendar (shows) ----------------------------------------- */
.calendar {
    list-style: none; margin: 0; padding: 0;
    display: grid;
    gap: 1.25rem;
}
.show-card {
    display: grid;
    grid-template-columns: 9.5rem 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background:
        linear-gradient(120deg, rgba(20, 24, 32, 0.85) 0%, rgba(11, 13, 16, 0.95) 100%);
    border: 1px solid rgba(168, 194, 58, 0.18);
    border-left: 5px solid var(--color-acid);
    border-radius: var(--radius-md);
    transition: transform var(--t-quick) var(--ease),
                border-color var(--t-quick) var(--ease),
                box-shadow var(--t-smooth) var(--ease);
    position: relative;
    overflow: hidden;
}
.show-card::before {
    /* Torn-paper feel: rough top edge via SVG filter simulation */
    content: "";
    position: absolute;
    top: -20%; left: -10%;
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(168, 194, 58, 0.14), transparent 60%);
    pointer-events: none; z-index: 0;
}
.show-card::after {
    /* Subtle diagonal cross-hatching */
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><filter id='n'><feTurbulence baseFrequency='0.8' numOctaves='2'/><feColorMatrix values='0 0 0 0 .95  0 0 0 0 .91  0 0 0 0 .81  0 0 0 .04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.6;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 0;
}
.show-card:hover {
    transform: translate(-2px, -2px);
    border-left-color: var(--color-teal);
    box-shadow: 6px 6px 0 rgba(43, 143, 184, 0.25);
}
.show-card > * { position: relative; z-index: 1; }

.show-card__date-block {
    text-align: center;
    padding: 0.5rem 0;
    border-right: 1px dashed rgba(168, 194, 58, 0.3);
}
.show-card__weekday {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin: 0 0 0.35rem;
}
.show-card__day {
    font-family: var(--font-display);
    font-size: clamp(3.25rem, 5.5vw, 4.5rem);
    font-weight: 400;
    line-height: 0.95;
    color: var(--color-bone);
    margin: 0;
    letter-spacing: -0.01em;
    text-shadow: 3px 3px 0 rgba(168, 194, 58, 0.15);
}
.show-card__month {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-acid);
    margin: 0.5rem 0 0;
    font-weight: 700;
}

.show-card__info { min-width: 0; }
.show-card__venue {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.3vw, 1.9rem);
    font-weight: 400;
    color: var(--color-bone);
    margin: 0 0 0.35rem;
    line-height: 1.15;
}
.show-card__city,
.show-card__time {
    margin: 0;
    color: var(--color-bone-dim);
    font-size: 1rem;
    font-family: var(--font-body);
}
.show-card__city { font-weight: 500; color: var(--color-bone); }
.show-card__time {
    color: var(--color-bone-mute);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-top: 0.35rem;
}
.show-card__notes {
    margin: 0.5rem 0 0;
    color: var(--color-patina);
    font-size: 0.85rem;
    font-style: italic;
}

.show-card__cta {
    display: flex; flex-direction: column; gap: 0.5rem;
    align-items: flex-end;
}
.show-card__cta .btn { min-width: 8rem; text-align: center; }
.show-card__tag {
    padding: 0.3rem 0.85rem;
    border: 1px dashed var(--color-teal);
    color: var(--color-teal);
    font-family: var(--font-accent);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: var(--radius-sm);
}

.show-card--compact {
    padding: 1.5rem 1.75rem;
    grid-template-columns: 7rem 1fr auto;
    gap: 1.5rem;
}
.show-card--compact .show-card__day   { font-size: clamp(2.5rem, 4vw, 3.25rem); }
.show-card--compact .show-card__venue { font-size: clamp(1.25rem, 1.9vw, 1.45rem); }

.calendar--empty {
    padding: 3rem 2rem;
    border: 1px dashed rgba(168, 194, 58, 0.25);
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--color-bone-mute);
    font-family: var(--font-accent);
}

@media (max-width: 760px) {
    .show-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        text-align: left;
    }
    .show-card__date-block {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0.5rem 1rem;
        align-items: baseline;
        padding: 0 0 1rem;
        border-right: 0;
        border-bottom: 1px dashed rgba(168, 194, 58, 0.3);
        text-align: left;
    }
    .show-card__day { font-size: 2.75rem; }
    .show-card__weekday, .show-card__month { margin: 0; }
    .show-card__cta {
        align-items: flex-start;
        flex-direction: row; gap: 0.75rem; flex-wrap: wrap;
    }
}

/* ----- Streaming row ----------------------------------------------------- */
.streaming-row {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
    justify-content: center;
}
.streaming-row a {
    padding: 0.75em 1.25em;
    border: 2px solid var(--color-bone-dim);
    border-radius: var(--radius-sm);
    color: var(--color-bone);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--t-quick) var(--ease);
}
.streaming-row a:hover, .streaming-row a:focus {
    border-color: var(--color-acid);
    color: var(--color-acid);
    text-decoration: none;
    background: rgba(168, 194, 58, 0.08);
}

/* ----- Cards (generic) --------------------------------------------------- */
.card {
    background: var(--color-cloth-2);
    border: 1px solid rgba(168, 194, 58, 0.18);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    position: relative;
}
.card::before {
    content: "";
    position: absolute; top: 8px; left: 8px; right: 8px; bottom: 8px;
    border: 1px dashed rgba(168, 194, 58, 0.12);
    border-radius: 2px;
    pointer-events: none;
}

/* ----- About grid -------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
@media (max-width: 860px) {
    .about-grid { grid-template-columns: 1fr; }
}
.about-image {
    aspect-ratio: 4 / 5;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    box-shadow:
        0 30px 80px -20px rgba(0,0,0,0.6),
        0 0 0 1px rgba(168, 194, 58, 0.12);
    filter: saturate(0.95) contrast(1.05);
    transform: rotate(-0.6deg);
}

/* ----- Members list ----------------------------------------------------- */
.members {
    list-style: none; padding: 0; margin: 2rem 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: 1rem;
}
.members li {
    padding: 1.25rem;
    border: 1px solid rgba(168, 194, 58, 0.22);
    border-radius: var(--radius-sm);
    background: rgba(20, 24, 32, 0.5);
    position: relative;
}
.members li::before {
    content: "⚓";
    position: absolute;
    top: 0.65rem; right: 0.85rem;
    color: var(--color-acid);
    opacity: 0.25;
    font-size: 1rem;
}
.members strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--color-bone);
    margin-bottom: 0.2em;
    font-weight: 400;
}
.members span {
    color: var(--color-patina);
    font-family: var(--font-accent);
    font-size: 0.88rem;
    letter-spacing: 0.05em;
}

/* ----- Footer ------------------------------------------------------------ */
.site-footer {
    background: #070A0E;
    border-top: 2px solid rgba(43, 143, 184, 0.25);
    padding: 3rem 0 1.25rem;
    margin-top: 3rem;
    position: relative;
}
.site-footer__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2rem;
}
.site-footer__col--brand .site-footer__brandmark {
    max-width: 220px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(168, 194, 58, 0.15);
}
.site-footer__col--brand .site-footer__tag {
    color: var(--color-bone-mute);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 0.05em;
}
.site-footer__heading {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-acid);
    margin: 0 0 1rem;
}
.site-footer__list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 0.5rem;
}
.site-footer__list a {
    color: var(--color-bone-dim);
    font-size: 0.95rem;
    text-decoration: none;
}
.site-footer__list a:hover, .site-footer__list a:focus {
    color: var(--color-acid);
    text-decoration: none;
}
.site-footer__bottom {
    max-width: var(--maxw);
    margin: 2.5rem auto 0;
    padding: 1.5rem var(--gutter) 0;
    border-top: 1px solid rgba(243, 233, 207, 0.08);
    color: var(--color-bone-mute);
    font-family: var(--font-accent);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-align: center;
}
.site-footer__bottom p { margin: 0; }
.site-footer__compass {
    width: 40px; height: 40px;
    display: block;
    margin: 0 auto 1rem;
    color: var(--color-brass);
    opacity: 0.55;
}

@media (max-width: 760px) {
    .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
    .site-footer__inner { grid-template-columns: 1fr; }
}

/* ----- Page header (non-home pages) ------------------------------------- */
.page-header {
    padding: clamp(3rem, 8vw, 6rem) 0 clamp(1.5rem, 4vw, 3rem);
    text-align: center;
    border-bottom: 1px solid rgba(43, 143, 184, 0.25);
    position: relative;
}
.page-header h1 { margin-bottom: 0.25em; }
.page-header p { color: var(--color-bone-dim); margin: 0 auto; max-width: 40rem; }
