﻿/* ════ HERO ════ */
.hero {
    min-height: 100vh;
    background: linear-gradient(158deg, var(--navy-dark) 0%, var(--navy) 50%, var(--teal) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 2.5rem 5.5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 80% 15%, rgba(169,202,214,0.12) 0%, transparent 50%), radial-gradient(ellipse at 5% 85%, rgba(216,168,79,0.07) 0%, transparent 48%), linear-gradient(180deg, transparent 45%, rgba(7,37,58,0.5) 100%);
}

.hero-watermark {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.035;
    pointer-events: none;
}

.hero-content {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    padding-top: 9rem;
}

.hero-eyebrow {
    font-family: var(--label);
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    animation: fadeUp 0.9s ease both 0.1s;
}

.hero-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.55;
}

.hero h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(3.2rem, 8vw, 7rem);
    color: var(--white);
    line-height: 1.06;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
    max-width: 860px;
    animation: fadeUp 0.95s ease both 0.28s;
}

.hero h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--blue);
}

.hero-sub {
    font-family: var(--body);
    font-weight: 300;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    color: rgba(216,236,242,0.62);
    max-width: 640px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.9s ease both 0.46s;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.9s ease both 0.6s;
}

.btn-gold {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    background: var(--gold);
    padding: 0.95rem 2.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.btn-gold:hover {
    background: var(--gold-champ);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(216,168,79,0.28);
}

.btn-ghost-light {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(169,202,214,0.3);
    padding: 0.95rem 2.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
}

.btn-ghost-light:hover {
    border-color: var(--blue);
    background: rgba(169,202,214,0.08);
}

.trust-bar {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    border-top: 1px solid rgba(169,202,214,0.12);
    padding-top: 1.75rem;
    animation: fadeUp 0.9s ease both 0.75s;
}

.trust-pill {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    color: rgba(169,202,214,0.48);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-right: 1.5rem;
    margin-right: 1.5rem;
    border-right: 1px solid rgba(169,202,214,0.12);
}

.trust-pill:last-child {
    border-right: none;
}

.trust-pill::before {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}

.scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    animation: fadeUp 0.9s ease both 1.1s;
}

.scroll-cue-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(169,202,214,0.35), transparent);
    animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,100% {
        opacity: 0.35
    }

    50% {
        opacity: 0.8
    }
}

/* ════ ANNOUNCEMENT ════ */
.announce {
    background: linear-gradient(90deg, var(--navy-dark), var(--teal));
    border-top: 2px solid var(--gold);
    padding: 0;
}

.announce-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 1.2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.announce-badge {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    padding: 0.28em 0.8em;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.announce-text {
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(216,236,242,0.72);
    flex: 1;
}

.announce-text strong {
    color: var(--white);
    font-weight: 500;
}

.announce-cta {
    font-family: var(--label);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(216,168,79,0.38);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.22s;
    white-space: nowrap;
    flex-shrink: 0;
}

.announce-cta:hover {
    background: rgba(216,168,79,0.1);
    border-color: var(--gold);
}

/* ════ SECTION UTILITIES ════ */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.kicker-teal {
    color: var(--teal);
}

.kicker-gold {
    color: var(--gold-dark);
}

.kicker-light {
    color: var(--blue);
    opacity: 0.72;
}

.kicker-sage {
    color: var(--sage);
}

.section-h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.h2-navy {
    color: var(--navy);
}

.h2-white {
    color: var(--white);
}

.h2-em {
    font-style: italic;
    font-weight: 300;
}

.prose {
    font-family: var(--body);
    font-weight: 300;
    font-size: 1.02rem;
    color: var(--ink-muted);
    line-height: 1.88;
    margin-bottom: 1.3rem;
}

.prose:last-child {
    margin-bottom: 0;
}

.prose strong {
    font-weight: 500;
    color: var(--ink-mid);
}

.hero-enc {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(169,202,214,0.42);
    margin-top: 1.1rem;
    line-height: 1.6;
    animation: fadeUp 0.9s ease both 0.9s;
}

/* ════ FOUNDING PREMISE ════ */
.premise {
    background: var(--white);
    padding: 9rem 2.5rem;
}

.premise-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2px 1.35fr;
    gap: 6rem;
    align-items: start;
}

.premise-rule {
    background: var(--cream-deep);
    align-self: stretch;
}

.premise-left .section-h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 0;
}

.premise-right .prose-drop::first-letter {
    font-family: var(--serif);
    font-size: 4.2rem;
    font-weight: 500;
    color: var(--navy);
    float: left;
    line-height: 0.76;
    margin-right: 0.1em;
    margin-top: 0.12em;
}

.premise-pull {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.05rem, 1.9vw, 1.35rem);
    color: var(--navy);
    line-height: 1.58;
    margin: 2rem 0;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
}

.premise-big {
    background: var(--navy-dark);
    padding: 5.5rem 2.5rem;
    text-align: center;
    margin-top: -1px;
}

.premise-big-inner {
    max-width: 800px;
    margin: 0 auto;
}

.premise-big blockquote {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.3rem, 2.8vw, 1.85rem);
    color: var(--cream);
    line-height: 1.62;
    margin-bottom: 1.5rem;
}

.premise-big cite {
    font-family: var(--label);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    opacity: 0.6;
    font-style: normal;
}

/* ════ WHAT MAKES THIS DIFFERENT ════ */
.different {
    background: var(--cream);
    padding: 9rem 2.5rem;
}

.different-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.different-header {
    margin-bottom: 4rem;
    max-width: 580px;
}

.different-header .section-h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--cream-deep);
    border: 1.5px solid var(--cream-deep);
}

.pillar {
    background: var(--white);
    padding: 3rem 2.5rem 3.5rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s, background 0.25s;
}

    .pillar:hover {
        background: var(--cream);
        border-bottom-color: var(--navy);
    }

.pillar-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--cream-deep);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

.pillar h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.pillar p {
    font-family: var(--body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.82;
}

.different-cta {
    text-align: center;
    margin-top: 3.5rem;
}

.btn-outline-navy {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 0.9rem 2.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

/* ════ SUMMER PROGRAMS ════ */
.summer {
    background: var(--navy-dark);
    padding: 9rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.summer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 92% 12%, rgba(31,111,115,0.22) 0%, transparent 52%), radial-gradient(ellipse at 5% 88%, rgba(111,146,120,0.1) 0%, transparent 45%);
}

.summer-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.summer-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: end;
    margin-bottom: 3.5rem;
}

.summer-badge {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 0.28em 0.85em;
    border-radius: 2px;
    display: block;
    width: fit-content;
    margin-bottom: 1rem;
}

.summer-header .section-h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}

.summer-deck {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(0.95rem, 1.7vw, 1.18rem);
    color: rgba(169,202,214,0.68);
    line-height: 1.72;
    max-width: 480px;
    margin-top: 0.75rem;
}

.summer-header-note {
    text-align: right;
}

.summer-header-note p {
    font-family: var(--body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(169,202,214,0.42);
    line-height: 1.72;
    max-width: 220px;
    margin-left: auto;
    margin-bottom: 1rem;
}

.prog-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5px;
}

.prog-row {
    display: grid;
    gap: 1.5px;
}

.prog-row.three {
    grid-template-columns: repeat(3, 1fr);
}

.prog-row.two {
    grid-template-columns: repeat(2, 1fr);
}

.pc {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(169,202,214,0.07);
    padding: 2.5rem 2.25rem 2.75rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: background 0.28s;
}

.pc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--teal-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.38s ease;
}

.pc:hover {
    background: rgba(255,255,255,0.08);
}

.pc:hover::before {
    transform: scaleX(1);
}

.pc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    align-items: center;
    margin-bottom: 1.1rem;
}

.pc-age {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.pc-sep {
    color: rgba(169,202,214,0.2);
    font-size: 0.7rem;
}

.pc-format, .pc-dur {
    font-family: var(--label);
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(169,202,214,0.38);
}

.pc h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

.pc p {
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(189,213,200,0.65);
    line-height: 1.78;
    flex: 1;
    margin-bottom: 1.5rem;
}

.pc-note {
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(169,202,214,0.38);
    margin-top: -0.75rem;
    margin-bottom: 1.25rem;
}

.pc.featured {
    background: rgba(31,111,115,0.1);
    border-color: rgba(31,111,115,0.2);
}

.pc.featured::before {
    background: var(--teal);
    transform: scaleX(0.4);
}

.pc.featured:hover::before {
    transform: scaleX(1);
}

.pc-btns {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.pc-primary {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    background: var(--gold);
    padding: 0.65rem 1.25rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
}

.pc-primary:hover {
    background: var(--gold-champ);
    transform: translateY(-1px);
}

.pc-secondary {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--sage-light);
    border: 1px solid rgba(142,174,150,0.28);
    padding: 0.65rem 1.25rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
}

.pc-secondary:hover {
    border-color: var(--sage-light);
    color: var(--white);
    background: rgba(142,174,150,0.08);
}

.summer-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-ghost-white {
    font-family: var(--label);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(169,202,214,0.28);
    padding: 0.95rem 2.2rem;
    border-radius: 2px;
    transition: all 0.22s;
    display: inline-block;
}

.btn-ghost-white:hover {
    border-color: var(--blue);
    background: rgba(169,202,214,0.07);
}

/* ════ WHO THIS IS FOR ════ */
.serve {
    background: var(--cream-mid);
    padding: 9rem 2.5rem;
    border-top: 1px solid var(--cream-deep);
    border-bottom: 1px solid var(--cream-deep);
}

.serve-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.serve-header {
    margin-bottom: 3.5rem;
}

.serve-header .section-h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.9rem);
    max-width: 680px;
}

.serve-intro {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--ink-muted);
    max-width: 600px;
    line-height: 1.72;
    margin-top: 1rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 0;
    border-left: 1px solid var(--cream-deep);
}

.aud-card {
    padding: 2.25rem 2rem 2.5rem;
    border-right: 1px solid var(--cream-deep);
    border-bottom: 1px solid var(--cream-deep);
    position: relative;
    overflow: hidden;
}

.aud-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.aud-card:hover::before {
    transform: scaleX(1);
}

.aud-num {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--cream-deep);
    line-height: 1;
    display: block;
    margin-bottom: 0.65rem;
}

.aud-card h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.35rem;
    letter-spacing: -0.005em;
}

.aud-ages {
    font-family: var(--label);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    display: block;
    margin-bottom: 0.65rem;
}

.aud-card p {
    font-family: var(--body);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--ink-muted);
    line-height: 1.72;
}

/* ════ FOUNDER ════ */
.founder {
    background: var(--white);
    padding: 9rem 2.5rem;
}

.founder-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1px 1.5fr;
    gap: 6rem;
    align-items: start;
}

.founder-rule {
    background: var(--cream-deep);
    align-self: stretch;
}

.founder-left {
    padding-top: 0.5rem;
}

.founder-name {
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.0;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.founder-creds {
    list-style: none;
    font-family: var(--body);
    font-size: 0.82rem;
    color: var(--ink-muted);
    font-weight: 300;
    line-height: 2.1;
    letter-spacing: 0.02em;
}

.founder-creds li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.founder-creds li::before {
    content: '·';
    color: var(--gold);
    font-size: 1rem;
}

.founder-right .section-h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: 1.75rem;
}

.founder-right .prose {
    margin-bottom: 1.35rem;
}

.founder-right .prose-italic {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.05rem, 1.9vw, 1.28rem);
    color: var(--navy);
    line-height: 1.62;
    margin: 1.75rem 0;
}

.text-link {
    font-family: var(--label);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border-bottom: 1.5px solid var(--cream-deep);
    padding-bottom: 0.15rem;
    transition: all 0.22s;
    margin-top: 0.5rem;
}

.text-link:hover {
    border-color: var(--navy);
    gap: 0.8rem;
}

.text-link svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ════ FINAL CTA ════ */
.final-cta {
    background: linear-gradient(138deg, var(--navy-dark) 0%, var(--navy) 55%, var(--teal) 100%);
    padding: 9rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 0%, rgba(216,168,79,0.09) 0%, transparent 58%);
}

.final-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-ornament {
    font-family: var(--label);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
    display: block;
    margin-bottom: 2rem;
}

.final-cta h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.6rem, 6vw, 5rem);
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.final-cta h2 em {
    font-style: italic;
    color: var(--blue);
}

.final-cta p {
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(169,202,214,0.62);
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 3rem;
}

.final-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.shortcuts {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.shortcut {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(169,202,214,0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 3px;
    transition: all 0.22s;
}

.shortcut:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(216,168,79,0.28);
}

.sc-name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 0.18rem;
    white-space: nowrap;
}

.sc-age {
    font-family: var(--label);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(169,202,214,0.35);
}
