/* ============================================================
   LHPTO Refresh — 2026 visual layer
   Loads AFTER style.css and progressively replaces the Bootstrap-y look
   with a warmer, more confident, parent-centric design language.
   Brand: maroon #672E45, gold #FEDB00, white, black (+derivatives).
   ============================================================ */

:root {
    /* Brand palette + derivatives */
    --brand-maroon: #672E45;
    --brand-maroon-deep: #4A2133;
    --brand-maroon-soft: #F4EBEE;
    --brand-maroon-glow: rgba(103, 46, 69, 0.08);
    --brand-gold: #FEDB00;
    --brand-gold-deep: #E5C600;
    --brand-gold-soft: #FFF8D6;
    --brand-gold-glow: rgba(254, 219, 0, 0.18);

    /* Neutrals (warm, not gray) */
    --cream: #FAF6F1;
    --cream-deep: #F0E9DF;
    --ink: #1A1416;
    --ink-soft: #5C4D52;
    --ink-muted: #8B7B82;
    --hairline: #EDE4E7;
    --hairline-strong: #DCCFD4;

    /* Type system */
    --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    /* Type scale (modular, 1.250 ratio) */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.375rem;
    --fs-xl: 1.75rem;
    --fs-2xl: 2.25rem;
    --fs-3xl: 3rem;
    --fs-4xl: 4rem;
    --fs-5xl: 5.5rem;

    /* Spacing (8px base) */
    --sp-1: 0.5rem;
    --sp-2: 1rem;
    --sp-3: 1.5rem;
    --sp-4: 2rem;
    --sp-5: 3rem;
    --sp-6: 4rem;
    --sp-7: 6rem;
    --sp-8: 8rem;

    /* Radii */
    --r-sm: 0.5rem;
    --r-md: 1rem;
    --r-lg: 1.5rem;
    --r-xl: 2rem;
    --r-pill: 999px;

    /* Shadows — colored, not gray */
    --shadow-sm: 0 1px 2px rgba(26, 20, 22, 0.05), 0 1px 1px rgba(26, 20, 22, 0.03);
    --shadow-md: 0 4px 12px rgba(103, 46, 69, 0.06), 0 2px 4px rgba(26, 20, 22, 0.04);
    --shadow-lg: 0 12px 40px rgba(103, 46, 69, 0.10), 0 4px 12px rgba(26, 20, 22, 0.06);
    --shadow-pop: 0 24px 48px -8px rgba(103, 46, 69, 0.18), 0 8px 16px -4px rgba(26, 20, 22, 0.08);
    --shadow-gold: 0 8px 24px -4px rgba(254, 219, 0, 0.4);

    /* Motion */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --dur-fast: 200ms;
    --dur-base: 400ms;
    --dur-slow: 700ms;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    font-feature-settings: 'ss01', 'cv01', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.55;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--ink);
}

h1, .h1 { font-size: clamp(2.5rem, 5vw + 1rem, var(--fs-5xl)); }
h2, .h2 { font-size: clamp(2rem, 3.5vw + 1rem, var(--fs-3xl)); }
h3, .h3 { font-size: clamp(1.5rem, 2vw + 1rem, var(--fs-2xl)); }

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

/* ===== Navbar refresh ===== */

.navbar.sticky-top {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--hairline);
    box-shadow: var(--shadow-sm);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar.sticky-top .navbar-brand,
.navbar.sticky-top .nav-link {
    color: var(--ink) !important;
}

.navbar.sticky-top .nav-link {
    font-weight: 500;
    transition: color var(--dur-fast) var(--ease);
}

.navbar.sticky-top .nav-link:hover {
    color: var(--brand-maroon) !important;
}

.navbar.sticky-top .navbar-toggler {
    border-color: var(--hairline-strong);
}

.navbar.sticky-top .navbar-toggler-icon {
    filter: invert(1) brightness(0.3);
}

.navbar.sticky-top .nav-facebook {
    color: var(--brand-maroon) !important;
}

.navbar.sticky-top .nav-facebook:hover {
    color: var(--brand-maroon-deep) !important;
}

.navbar.sticky-top .btn-secondary {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--ink);
    font-weight: 700;
    border-radius: var(--r-pill);
    padding: 0.5rem 1.25rem;
    box-shadow: var(--shadow-gold);
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.navbar.sticky-top .btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px -4px rgba(254, 219, 0, 0.55);
}

/* ===== Buttons ===== */

.btn {
    border-radius: var(--r-pill);
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
    border-width: 2px;
}

.btn-lg {
    padding: 0.95rem 2rem;
    font-size: var(--fs-md);
}

.btn-primary {
    background: var(--brand-maroon);
    border-color: var(--brand-maroon);
    box-shadow: 0 8px 20px -4px rgba(103, 46, 69, 0.35);
}

.btn-primary:hover {
    background: var(--brand-maroon-deep);
    border-color: var(--brand-maroon-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -6px rgba(103, 46, 69, 0.45);
}

.btn-secondary {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: var(--ink);
    box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
    background: var(--brand-gold-deep);
    border-color: var(--brand-gold-deep);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -4px rgba(254, 219, 0, 0.55);
}

.btn-outline-primary {
    border-color: var(--brand-maroon);
    color: var(--brand-maroon);
}

.btn-outline-primary:hover {
    background: var(--brand-maroon);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--brand-maroon-soft);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--brand-maroon-soft);
    color: white;
}

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

.lhpto-hero {
    position: relative;
    min-height: 720px;
    padding: var(--sp-7) 0 var(--sp-7);
    background:
        radial-gradient(at 12% 18%, rgba(254, 219, 0, 0.18) 0%, transparent 38%),
        radial-gradient(at 88% 80%, rgba(254, 219, 0, 0.12) 0%, transparent 42%),
        linear-gradient(135deg, var(--brand-maroon-deep) 0%, var(--brand-maroon) 60%, #7a3a52 100%);
    color: white;
    overflow: hidden;
}

.lhpto-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='1.2' fill='%23ffffff' opacity='0.06'/></svg>");
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.7;
}

.lhpto-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem 0.4rem 0.4rem;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--brand-gold);
}

.lhpto-hero__eyebrow .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--brand-gold);
    box-shadow: 0 0 0 4px rgba(254, 219, 0, 0.18);
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(254, 219, 0, 0.18); }
    50%      { box-shadow: 0 0 0 8px rgba(254, 219, 0, 0.05); }
}

.lhpto-hero h1 {
    color: white;
    font-size: clamp(2.75rem, 6vw + 1rem, 5.5rem);
    margin-top: var(--sp-3);
    margin-bottom: var(--sp-3);
    max-width: 18ch;
}

.lhpto-hero h1 em {
    font-style: italic;
    font-weight: 800;
    color: var(--brand-gold);
    background: linear-gradient(180deg, transparent 60%, rgba(254, 219, 0, 0.25) 60%);
    padding: 0 0.1em;
}

.lhpto-hero__lede {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.86);
    max-width: 60ch;
    margin-bottom: var(--sp-4);
}

.lhpto-hero__art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lhpto-hero__mascot {
    width: 100%;
    max-width: 460px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-12px) rotate(2deg); }
}

.lhpto-hero__halo {
    position: absolute;
    inset: -10% auto auto -10%;
    width: 120%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254, 219, 0, 0.28) 0%, transparent 60%);
    z-index: 0;
}

/* ===== Stats strip ===== */

.lhpto-stats {
    background: white;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    padding: var(--sp-4) 0;
    position: relative;
    margin-top: -1px;
}

.lhpto-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp-3);
}

.lhpto-stat {
    text-align: center;
    padding: var(--sp-2) var(--sp-2);
}

.lhpto-stat__value {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    color: var(--brand-maroon);
    line-height: 1;
    letter-spacing: -0.03em;
}

.lhpto-stat__label {
    display: block;
    margin-top: var(--sp-1);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

/* ===== Section primitives ===== */

.lhpto-section {
    padding: var(--sp-7) 0;
}

.lhpto-section--cream {
    background: var(--cream);
}

.lhpto-section--white {
    background: white;
}

.lhpto-section--maroon {
    background: var(--brand-maroon);
    color: white;
}

.lhpto-section__eyebrow {
    display: inline-block;
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-maroon);
    margin-bottom: var(--sp-2);
}

.lhpto-section--maroon .lhpto-section__eyebrow {
    color: var(--brand-gold);
}

.lhpto-section__title {
    font-size: clamp(2rem, 3.5vw + 1rem, 3.5rem);
    margin-bottom: var(--sp-3);
}

.lhpto-section__lede {
    font-size: var(--fs-lg);
    color: var(--ink-soft);
    max-width: 62ch;
    margin-bottom: var(--sp-4);
}

.lhpto-section--maroon .lhpto-section__title { color: white; }
.lhpto-section--maroon .lhpto-section__lede  { color: rgba(255, 255, 255, 0.85); }

/* ===== Feature cards (refreshed) ===== */

.lhpto-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--sp-3);
}

.lhpto-feature {
    background: white;
    border-radius: var(--r-lg);
    padding: var(--sp-4);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--hairline);
    transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    position: relative;
    overflow: hidden;
}

.lhpto-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-pop);
    border-color: var(--brand-maroon-soft);
}

.lhpto-feature__icon {
    width: 56px; height: 56px;
    border-radius: var(--r-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--brand-maroon-soft);
    color: var(--brand-maroon);
    transition: background-color var(--dur-base) var(--ease), color var(--dur-base) var(--ease);
}

.lhpto-feature:hover .lhpto-feature__icon {
    background: var(--brand-maroon);
    color: var(--brand-gold);
}

.lhpto-feature__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-lg);
    margin: 0;
    color: var(--ink);
}

.lhpto-feature__body {
    color: var(--ink-soft);
    margin: 0;
}

.lhpto-feature__cta {
    margin-top: auto;
    color: var(--brand-maroon);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--dur-fast) var(--ease);
}

.lhpto-feature__cta:hover {
    gap: 0.85rem;
    color: var(--brand-maroon-deep);
}

/* ===== School pill grid ===== */

.lhpto-schools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--sp-2);
}

.lhpto-school-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 5 / 6;
    padding: var(--sp-3);
    border-radius: var(--r-lg);
    text-decoration: none;
    color: white;
    overflow: hidden;
    isolation: isolate;
    transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
    background: linear-gradient(160deg, var(--brand-maroon-deep) 0%, var(--brand-maroon) 100%);
    box-shadow: var(--shadow-md);
}

.lhpto-school-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 0%, rgba(254, 219, 0, 0.28) 0%, transparent 50%);
    z-index: -1;
}

.lhpto-school-card::after {
    content: '';
    position: absolute;
    right: -20%; top: -20%;
    width: 70%; aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    transition: transform var(--dur-slow) var(--ease);
    z-index: -1;
}

.lhpto-school-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-pop);
    color: white;
}

.lhpto-school-card:hover::after {
    transform: scale(1.4) translate(-10%, 10%);
}

.lhpto-school-card__eyebrow {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-gold);
    opacity: 0.85;
}

.lhpto-school-card__name {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: 800;
    line-height: 1.05;
    margin: 0.4rem 0 0;
    color: white;
}

.lhpto-school-card__arrow {
    position: absolute;
    top: var(--sp-3);
    right: var(--sp-3);
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    transition: background-color var(--dur-fast) var(--ease), transform var(--dur-base) var(--ease);
}

.lhpto-school-card:hover .lhpto-school-card__arrow {
    background: var(--brand-gold);
    color: var(--ink);
    transform: rotate(-45deg);
}

/* Tint variants — one per school for visual variety */
.lhpto-school-card.s-high          { background: linear-gradient(160deg, #4A2133, #672E45); }
.lhpto-school-card.s-junior        { background: linear-gradient(160deg, #5A2840, #7A3852); }
.lhpto-school-card.s-middle        { background: linear-gradient(160deg, #6B2F4A, #8B3D5C); }
.lhpto-school-card.s-intermediate  { background: linear-gradient(160deg, #4A2133, #5A2840); }
.lhpto-school-card.s-elementary    { background: linear-gradient(160deg, #5A2840, #6B2F4A); }
.lhpto-school-card.s-primary       { background: linear-gradient(160deg, #672E45, #8B3D5C); }

/* ===== Event preview cards ===== */

.lhpto-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-3);
}

.lhpto-event {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--hairline);
    box-shadow: var(--shadow-md);
    transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
    text-decoration: none;
    color: inherit;
}

.lhpto-event:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-pop);
    color: inherit;
}

.lhpto-event__date {
    background: linear-gradient(135deg, var(--brand-maroon) 0%, var(--brand-maroon-deep) 100%);
    color: white;
    padding: var(--sp-3) var(--sp-3) var(--sp-2);
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.lhpto-event__date::after {
    content: '';
    position: absolute;
    right: -30%;
    bottom: -50%;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254, 219, 0, 0.18), transparent 70%);
}

.lhpto-event__day {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.75rem;
    line-height: 1;
    color: white;
}

.lhpto-event__month {
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-gold);
}

.lhpto-event__body {
    padding: var(--sp-3);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.lhpto-event__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-md);
    margin: 0;
    line-height: 1.25;
}

.lhpto-event__meta {
    font-size: var(--fs-sm);
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.lhpto-event__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: var(--r-pill);
    background: var(--brand-gold-soft);
    color: var(--brand-maroon);
}

/* ===== Storytelling block (image + text alternating) ===== */

.lhpto-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
    align-items: center;
}

@media (max-width: 768px) {
    .lhpto-story { grid-template-columns: 1fr; gap: var(--sp-4); }
}

.lhpto-story--flip .lhpto-story__art { order: 2; }

@media (max-width: 768px) {
    .lhpto-story--flip .lhpto-story__art { order: -1; }
}

.lhpto-story__art {
    position: relative;
    border-radius: var(--r-xl);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-shadow: var(--shadow-pop);
    background: linear-gradient(135deg, var(--brand-maroon-soft), var(--brand-gold-soft));
}

.lhpto-story__art-decoration {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lhpto-story__art-decoration svg {
    width: 70%;
    height: 70%;
}

.lhpto-story__art-tag {
    position: absolute;
    bottom: var(--sp-3);
    left: var(--sp-3);
    background: white;
    padding: 0.6rem 1rem;
    border-radius: var(--r-pill);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--brand-maroon);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.lhpto-story__art-sticker {
    position: absolute;
    top: var(--sp-3);
    right: var(--sp-3);
    width: 88px; height: 88px;
    border-radius: 50%;
    background: var(--brand-gold);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-xs);
    text-align: center;
    line-height: 1.05;
    padding: 0.5rem;
    box-shadow: var(--shadow-md);
    transform: rotate(-12deg);
    transition: transform var(--dur-base) var(--ease-bounce);
}

.lhpto-story:hover .lhpto-story__art-sticker {
    transform: rotate(0) scale(1.05);
}

.lhpto-story__title {
    margin-bottom: var(--sp-2);
}

.lhpto-story__body {
    color: var(--ink-soft);
    font-size: var(--fs-md);
    margin-bottom: var(--sp-3);
}

.lhpto-story__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--sp-3);
    display: grid;
    gap: 0.75rem;
}

.lhpto-story__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--ink);
}

.lhpto-story__list li::before {
    content: '';
    flex-shrink: 0;
    width: 22px; height: 22px;
    margin-top: 0.15rem;
    border-radius: 50%;
    background: var(--brand-gold);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%23672E45' d='M13.485 4.93a1 1 0 0 1 0 1.414l-6 6a1 1 0 0 1-1.414 0l-3-3a1 1 0 1 1 1.414-1.414L6.778 10.222l5.293-5.293a1 1 0 0 1 1.414 0z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
}

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

.lhpto-quote {
    background: white;
    border-radius: var(--r-xl);
    padding: var(--sp-5) var(--sp-5);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--hairline);
    position: relative;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.lhpto-quote::before {
    content: '“';
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--brand-gold);
    color: var(--brand-maroon);
    font-family: Georgia, serif;
    font-size: 4.5rem;
    line-height: 0.7;
    padding-top: 14px;
    box-shadow: var(--shadow-md);
}

.lhpto-quote__text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--fs-xl);
    color: var(--ink);
    line-height: 1.3;
    margin: var(--sp-3) 0 var(--sp-3);
    letter-spacing: -0.01em;
}

.lhpto-quote__attribution {
    color: var(--ink-soft);
    font-weight: 600;
}

.lhpto-quote__role {
    color: var(--ink-muted);
    font-size: var(--fs-sm);
}

/* ===== Final CTA ===== */

.lhpto-finalcta {
    position: relative;
    background:
        radial-gradient(at 18% 28%, rgba(254, 219, 0, 0.20) 0%, transparent 45%),
        radial-gradient(at 82% 80%, rgba(254, 219, 0, 0.16) 0%, transparent 45%),
        linear-gradient(135deg, var(--brand-maroon-deep) 0%, var(--brand-maroon) 100%);
    border-radius: var(--r-xl);
    padding: var(--sp-6) var(--sp-5);
    color: white;
    overflow: hidden;
    text-align: center;
}

.lhpto-finalcta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='50' cy='50' r='1' fill='%23ffffff' opacity='0.05'/></svg>");
    background-size: 20px 20px;
    pointer-events: none;
}

.lhpto-finalcta h2 {
    color: white;
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    max-width: 18ch;
    margin: 0 auto var(--sp-2);
    position: relative;
}

.lhpto-finalcta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-lg);
    max-width: 50ch;
    margin: 0 auto var(--sp-3);
    position: relative;
}

.lhpto-finalcta .btn {
    position: relative;
}

/* ===== Reveal animation ===== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 160ms; }
.reveal:nth-child(4) { transition-delay: 240ms; }
.reveal:nth-child(5) { transition-delay: 320ms; }
.reveal:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .lhpto-hero__mascot { animation: none; }
    .lhpto-hero__eyebrow .dot { animation: none; }
}

/* ===== Donate banner refresh ===== */

.donate-banner {
    background: linear-gradient(90deg, var(--brand-gold) 0%, var(--brand-gold-deep) 100%);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.donate-banner-text {
    color: var(--ink);
    font-weight: 700;
}

.btn-donate-sm {
    background: var(--brand-maroon);
    color: white;
    border-radius: var(--r-pill);
    padding: 0.4rem 1rem;
    font-weight: 700;
    font-size: var(--fs-sm);
    border: none;
    transition: background-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.btn-donate-sm:hover {
    background: var(--brand-maroon-deep);
    color: white;
    transform: translateY(-1px);
}

.donate-school-link {
    color: var(--brand-maroon);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

footer.bg-dark {
    background: var(--ink) !important;
    color: var(--cream-deep);
}

footer.bg-dark h5 {
    color: white;
    letter-spacing: -0.01em;
}

footer.bg-dark a {
    color: var(--cream-deep) !important;
    transition: color var(--dur-fast) var(--ease);
}

footer.bg-dark a:hover {
    color: var(--brand-gold) !important;
}

/* ===== Calendar polish ===== */

.calendar-legend .badge {
    border-radius: var(--r-pill);
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    font-size: var(--fs-xs);
    letter-spacing: 0.06em;
}

/* ===== Misc cleanups ===== */

.bg-light {
    background: var(--cream) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-md) !important;
}

hr {
    border-color: var(--hairline);
}

/* Card override on schools list grid etc. */
.school-card {
    border-radius: var(--r-lg) !important;
}

/* Pill-shaped chips */
.lhpto-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: var(--r-pill);
    background: white;
    border: 1px solid var(--hairline-strong);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--ink-soft);
}

/* ============================================================
   Tier 1 engagement components: alert bar, today-at-a-glance,
   menu grid, spirit days
   ============================================================ */

/* District alert ribbon */
.lhpto-alert {
    background: linear-gradient(90deg, #8B1538 0%, #672E45 100%);
    color: white;
    padding: 0.85rem 0;
    position: relative;
    overflow: hidden;
}

.lhpto-alert--urgent {
    background: linear-gradient(90deg, #B12342 0%, #8B1538 100%);
    animation: alertPulse 2.4s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% { box-shadow: inset 0 0 0 rgba(255, 255, 255, 0); }
    50%      { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18); }
}

.lhpto-alert__inner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 600;
}

.lhpto-alert__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--brand-gold);
    color: var(--brand-maroon-deep);
    padding: 0.3rem 0.8rem;
    border-radius: var(--r-pill);
    font-size: var(--fs-xs);
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.lhpto-alert__headline {
    flex: 1;
    line-height: 1.3;
}

.lhpto-alert__body {
    display: none;
}

@media (min-width: 992px) {
    .lhpto-alert__body {
        display: inline;
        font-weight: 500;
        opacity: 0.85;
        margin-left: 0.5rem;
    }
}

/* "Today at a glance" card */
.lhpto-glance {
    background: white;
    border-radius: var(--r-xl);
    padding: var(--sp-4);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--hairline);
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: var(--sp-3);
    align-items: stretch;
}

.lhpto-glance--two {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .lhpto-glance {
        grid-template-columns: 1fr;
        padding: var(--sp-3);
    }
}

.lhpto-glance__cell {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-right: var(--sp-3);
    border-right: 1px solid var(--hairline);
}

.lhpto-glance__cell:last-child {
    border-right: none;
    padding-right: 0;
}

@media (max-width: 768px) {
    .lhpto-glance__cell {
        border-right: none;
        border-bottom: 1px solid var(--hairline);
        padding-right: 0;
        padding-bottom: var(--sp-3);
    }
    .lhpto-glance__cell:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.lhpto-glance__eyebrow {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-maroon);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.lhpto-glance__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-md);
    margin: 0;
    line-height: 1.25;
    color: var(--ink);
}

.lhpto-glance__list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--ink-soft);
    font-size: var(--fs-sm);
    line-height: 1.4;
}

.lhpto-glance__list li {
    padding: 0.15rem 0;
}

.lhpto-glance__empty {
    color: var(--ink-muted);
    font-size: var(--fs-sm);
    font-style: italic;
}

.lhpto-glance__cta {
    margin-top: auto;
    color: var(--brand-maroon);
    font-weight: 700;
    font-size: var(--fs-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.lhpto-glance__cta:hover {
    color: var(--brand-maroon-deep);
    gap: 0.6rem;
}

.lhpto-glance__big {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-xl);
    color: var(--brand-maroon);
    line-height: 1;
}

/* Spirit days row */
.lhpto-spirit-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-2);
}

.lhpto-spirit {
    background: white;
    border-radius: var(--r-md);
    padding: var(--sp-2) var(--sp-3);
    border: 1px solid var(--hairline);
    display: flex;
    align-items: flex-start;
    gap: var(--sp-2);
    box-shadow: var(--shadow-sm);
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.lhpto-spirit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-gold);
}

.lhpto-spirit__emoji {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    background: var(--brand-gold-soft);
    width: 56px; height: 56px;
    border-radius: var(--r-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lhpto-spirit__title {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 0.1rem;
}

.lhpto-spirit__date {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--brand-maroon);
    margin-bottom: 0.25rem;
}

.lhpto-spirit__desc {
    font-size: var(--fs-sm);
    color: var(--ink-soft);
    line-height: 1.4;
}

/* ============================================================
   Mobile pass — focused tightening for phones.
   Keeps the desktop story intact, but on small screens:
     - cuts section padding roughly in half
     - shrinks hero hero typography and mascot
     - stats become 2x2 instead of 4 stacked rows
     - school cards become a 2-col square grid
     - storytelling art ratio flattens 4:3 -> 16:9
     - "this week" caps at 4 events, spirit days at 2,
       with the "see all" CTA still available in the section head
     - quote, final CTA, section titles all dial back
   ============================================================ */

@media (max-width: 768px) {

    /* ----- Section primitives ----- */
    .lhpto-section {
        padding: var(--sp-4) 0;
    }

    .lhpto-section__title {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
        margin-bottom: var(--sp-1);
    }

    .lhpto-section__lede {
        font-size: var(--fs-base);
        margin-bottom: var(--sp-3);
    }

    .lhpto-section__eyebrow {
        font-size: var(--fs-xs);
    }

    /* ----- Hero ----- */
    .lhpto-hero {
        min-height: auto;
        padding: var(--sp-4) 0 var(--sp-5);
    }

    .lhpto-hero h1 {
        font-size: clamp(2rem, 8vw, 2.75rem);
        margin-top: var(--sp-2);
        margin-bottom: var(--sp-2);
        max-width: 100%;
    }

    .lhpto-hero__lede {
        font-size: var(--fs-base);
        margin-bottom: var(--sp-3);
    }

    .lhpto-hero__eyebrow {
        font-size: var(--fs-xs);
        padding: 0.3rem 0.85rem 0.3rem 0.3rem;
    }

    .lhpto-hero__mascot {
        max-width: 200px;
    }

    /* Hide the third chip row on mobile — chips wrap awkwardly and
       most of the same info is in the body copy and CTA buttons. */
    .lhpto-hero .lhpto-chip:nth-child(n+2) {
        display: none;
    }

    /* ----- Stats: 2x2 ----- */
    .lhpto-stats {
        padding: var(--sp-3) 0;
    }

    .lhpto-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-1) var(--sp-2);
    }

    .lhpto-stat {
        padding: var(--sp-1) 0;
    }

    .lhpto-stat__value {
        font-size: 1.75rem;
    }

    .lhpto-stat__label {
        font-size: 0.7rem;
        margin-top: 0.15rem;
    }

    /* ----- Today at a glance ----- */
    .lhpto-glance {
        padding: var(--sp-2);
        gap: var(--sp-2);
    }

    .lhpto-glance__title {
        font-size: var(--fs-base);
    }

    /* ----- This week events: cap at 4 ----- */
    .lhpto-events > .lhpto-event:nth-child(n+5) {
        display: none;
    }

    /* ----- Spirit days: cap at 2 ----- */
    .lhpto-spirit-row > .lhpto-spirit:nth-child(n+3) {
        display: none;
    }

    .lhpto-spirit {
        padding: var(--sp-1) var(--sp-2);
    }

    .lhpto-spirit__emoji {
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
    }

    /* ----- Storytelling rows: flatter art + tighter copy ----- */
    .lhpto-story {
        gap: var(--sp-3);
    }

    .lhpto-story__art {
        aspect-ratio: 16 / 9;
        border-radius: var(--r-lg);
    }

    .lhpto-story__art-sticker {
        width: 64px;
        height: 64px;
        font-size: 0.65rem;
        padding: 0.3rem;
    }

    .lhpto-story__art-tag {
        font-size: var(--fs-xs);
        padding: 0.4rem 0.75rem;
        bottom: var(--sp-2);
        left: var(--sp-2);
    }

    .lhpto-story__title {
        font-size: clamp(1.4rem, 5vw, 1.85rem);
    }

    .lhpto-story__body {
        font-size: var(--fs-base);
    }

    /* ----- Schools: 2-col square grid ----- */
    .lhpto-schools {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-2);
    }

    .lhpto-school-card {
        aspect-ratio: 1;
        padding: var(--sp-2);
        border-radius: var(--r-md);
    }

    .lhpto-school-card__name {
        font-size: var(--fs-md);
    }

    .lhpto-school-card__eyebrow {
        font-size: 0.65rem;
    }

    .lhpto-school-card__arrow {
        width: 30px;
        height: 30px;
        top: var(--sp-1);
        right: var(--sp-1);
    }

    /* ----- Quote ----- */
    .lhpto-quote {
        padding: var(--sp-4) var(--sp-3) var(--sp-3);
        border-radius: var(--r-lg);
    }

    .lhpto-quote__text {
        font-size: var(--fs-md);
        margin: var(--sp-2) 0;
    }

    .lhpto-quote::before {
        width: 48px;
        height: 48px;
        font-size: 3rem;
        top: -22px;
        padding-top: 10px;
    }

    /* ----- Feature grid ----- */
    .lhpto-feature {
        padding: var(--sp-3);
    }

    /* ----- Final CTA ----- */
    .lhpto-finalcta {
        padding: var(--sp-4) var(--sp-3);
        border-radius: var(--r-lg);
    }

    .lhpto-finalcta h2 {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
    }

    .lhpto-finalcta p {
        font-size: var(--fs-base);
    }

    /* ----- District alert ribbon ----- */
    .lhpto-alert__inner {
        font-size: var(--fs-sm);
        gap: 0.5rem;
    }

    .lhpto-alert__pill {
        font-size: 0.6rem;
        padding: 0.25rem 0.55rem;
    }

    /* ----- Buttons: keep tappable but compact ----- */
    .btn-lg {
        padding: 0.75rem 1.4rem;
        font-size: var(--fs-base);
    }

    /* ----- Donate banner: stack tighter ----- */
    .donate-banner {
        padding: 0.4rem 0;
        font-size: var(--fs-sm);
    }
}

/* Even tighter for the smallest phones */
@media (max-width: 380px) {
    .lhpto-hero h1 {
        font-size: 1.85rem;
    }

    .lhpto-stat__value {
        font-size: 1.5rem;
    }

    .lhpto-school-card__name {
        font-size: var(--fs-base);
    }
}

/* ============================================================
   PTO member / officer cards
   Polished initials-based avatars for officers without a photo
   yet (placeholders), plus a refresh of the school-detail rep card.
   ============================================================ */

/* About page placeholder upgrade (was an icon, now initials) */
.pto-member-placeholder {
    background: linear-gradient(135deg, var(--brand-maroon) 0%, var(--brand-maroon-deep) 100%) !important;
    color: white !important;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
    border-color: var(--brand-gold) !important;
}

.pto-member-card {
    border-radius: var(--r-lg);
    border: 1px solid var(--hairline);
    box-shadow: var(--shadow-md);
}

.pto-member-card:hover {
    box-shadow: var(--shadow-pop) !important;
}

/* School-detail PTO rep sidebar card */
.pto-reps-card {
    border-radius: var(--r-lg) !important;
    border: 1px solid var(--hairline);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pto-reps-card .card-header {
    background: linear-gradient(135deg, var(--brand-maroon) 0%, var(--brand-maroon-deep) 100%) !important;
    border: none;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 0.85rem 1.15rem;
}

.pto-rep {
    padding: 1rem 1.15rem;
    border-color: var(--hairline);
}

.pto-rep:last-child {
    border-bottom: none;
}

.pto-rep__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px var(--brand-gold);
}

.pto-rep__avatar--img {
    object-fit: cover;
}

.pto-rep__avatar--initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-maroon) 0%, var(--brand-maroon-deep) 100%);
    color: white;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1;
}

.pto-rep__bio {
    font-size: var(--fs-sm);
    color: var(--ink-soft);
    line-height: 1.4;
}

.min-width-0 {
    min-width: 0;
}

/* ============================================================
   PWA install banner — refresh + mobile prominence
   ============================================================ */

.lhpto-install-banner {
    background: linear-gradient(135deg, var(--brand-maroon-deep) 0%, var(--brand-maroon) 100%) !important;
    border-radius: var(--r-lg) !important;
    box-shadow: var(--shadow-pop) !important;
    border: 2px solid var(--brand-gold);
    overflow: hidden;
    position: relative;
}

.lhpto-install-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 90% 30%, rgba(254, 219, 0, 0.18), transparent 60%);
    pointer-events: none;
}

.lhpto-install-banner__icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: var(--r-sm) !important;
    box-shadow: var(--shadow-md);
    position: relative;
}

.lhpto-install-banner__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-base);
    color: white;
    position: relative;
}

.lhpto-install-banner__copy {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: var(--fs-sm) !important;
    position: relative;
}

.lhpto-install-banner__actions {
    position: relative;
}

.lhpto-install-banner .btn-secondary {
    background: var(--brand-gold);
    color: var(--ink);
    font-weight: 800;
    border: none;
    padding: 0.55rem 1.1rem;
    border-radius: var(--r-pill);
    box-shadow: var(--shadow-gold);
}

.lhpto-install-banner .btn-outline-light {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.4rem 0.6rem;
    border-radius: var(--r-pill);
}

.lhpto-install-banner .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* Entry animation — gentle bounce to draw attention without being annoying */
@keyframes lhptoInstallBannerEnter {
    0%   { transform: translateY(120%); opacity: 0; }
    60%  { transform: translateY(-6px); opacity: 1; }
    100% { transform: translateY(0); opacity: 1; }
}

.lhpto-install-banner--enter {
    animation: lhptoInstallBannerEnter 700ms var(--ease) both;
}

/* Mobile: full-width sticky bottom, more prominent */
@media (max-width: 768px) {
    .lhpto-install-banner {
        left: 8px !important;
        right: 8px !important;
        bottom: 8px !important;
        max-width: none !important;
        border-radius: var(--r-md) !important;
    }

    .lhpto-install-banner__inner {
        padding: 14px 14px !important;
        gap: 12px !important;
    }

    .lhpto-install-banner__icon {
        width: 44px !important;
        height: 44px !important;
    }

    .lhpto-install-banner__title {
        font-size: var(--fs-base);
        line-height: 1.2;
    }

    .lhpto-install-banner__copy {
        font-size: 0.8rem !important;
        line-height: 1.35;
        margin-top: 2px;
    }

    .lhpto-install-banner .btn-secondary {
        padding: 0.5rem 0.85rem;
        font-size: var(--fs-sm);
    }

    .lhpto-install-banner .btn-outline-light {
        padding: 0.35rem 0.55rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lhpto-install-banner--enter {
        animation: none;
    }
}

/* ============================================================
   Cheddar Up hub — /forms/
   ============================================================ */

.cheddar-group {
    margin-bottom: var(--sp-5);
}

.cheddar-group:last-child {
    margin-bottom: 0;
}

.cheddar-group__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-2xl);
    color: var(--brand-maroon);
    margin-bottom: var(--sp-3);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--brand-gold);
    display: inline-block;
}

.cheddar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-3);
}

.cheddar-card {
    background: white;
    border: 1px solid var(--hairline);
    border-radius: var(--r-lg);
    padding: var(--sp-3);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}

.cheddar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-pop);
    border-color: var(--brand-gold);
}

.cheddar-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.cheddar-card__kind {
    background: var(--brand-maroon-soft);
    color: var(--brand-maroon);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: var(--r-pill);
}

.cheddar-card__school {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cheddar-card__school--district {
    color: var(--brand-maroon);
}

.cheddar-card__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-md);
    color: var(--ink);
    margin: 0;
    line-height: 1.25;
}

.cheddar-card__body {
    color: var(--ink-soft);
    font-size: var(--fs-sm);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.cheddar-card__cta {
    align-self: flex-start;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .cheddar-group__title {
        font-size: var(--fs-xl);
    }
    .cheddar-card {
        padding: var(--sp-2);
    }
}
