:root {
    --primary: #2B6EA4;
    --secondary: #8FB8DA;
    --accent: #EEF6FC;
    --surface: #FFFFFF;
    --background: #F5F8FB;
    --text: #16344E;
    --muted: #47657D;
    --line: rgba(43, 110, 164, 0.16);
    --shadow: 0 14px 28px rgba(31, 73, 110, 0.07);
    --shadow-soft: 0 8px 18px rgba(31, 73, 110, 0.05);
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Trebuchet MS", "Lucida Sans", sans-serif;
    color: var(--text);
    background: var(--background);
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
input, textarea, select {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(14, 90, 167, 0.14);
    padding: 14px 16px;
    background: #fff;
}
textarea { resize: vertical; min-height: 120px; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-shell { min-height: 100vh; padding-bottom: 0; }
.flash-stack { display: grid; gap: 12px; margin-top: 18px; }
.flash-banner { padding: 14px 18px; border-radius: 18px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-soft); }
.flash-success { border-color: rgba(9, 137, 90, 0.22); background: rgba(9, 137, 90, 0.08); }
.flash-error { border-color: rgba(191, 58, 58, 0.22); background: rgba(191, 58, 58, 0.08); }
.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    border-bottom: 1px solid rgba(14, 90, 167, 0.12);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding: 18px 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    max-width: 100%;
    flex: 1 1 320px;
}
.brand-media {
    width: 96px;
    height: 96px;
    padding: 6px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(14, 90, 167, 0.12);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}
.brand-logo {
    width: 82px;
    height: 82px;
    object-fit: contain;
    transform: scale(1.08);
    transform-origin: center;
}
.brand-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
    max-width: min(100%, 360px);
    overflow-wrap: anywhere;
}
.brand strong { display: block; font-size: 1.22rem; color: var(--text); }
.brand small { display: block; color: var(--text); line-height: 1.35; max-width: 320px; }
.desktop-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    flex: 1 1 420px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.nav-link {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--text);
    transition: 0.2s ease;
    white-space: nowrap;
    flex: 0 0 auto;
}
.nav-link:hover, .nav-link.is-active {
    color: var(--primary);
    background: rgba(14, 90, 167, 0.08);
}
.app-frame { display: grid; gap: 60px; padding: 30px 0 72px; }
.hero-section { padding-top: 12px; }
.hero-card,
.panel-card,
.mission-card,
.contact-card,
.notice-card,
.info-card,
.team-card,
.gallery-card,
.faq-card,
.stat-card,
.program-card,
.branch-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.hero-card { padding: 30px; }
.notice-card:hover,
.info-card:hover,
.program-card:hover,
.team-card:hover,
.gallery-card:hover,
.faq-card:hover,
.branch-card:hover,
.stat-card:hover,
.highlight-pill:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 32px rgba(31, 73, 110, 0.12);
    border-color: rgba(43, 110, 164, 0.24);
}
.hero-card-split,
.split-layout,
.story-section,
.two-column-split,
.contact-grid,
.mission-grid,
.footer-grid,
.section-grid,
.stats-block,
.gallery-grid { display: grid; gap: 20px; }
.hero-card-split { grid-template-columns: 1.12fr 0.88fr; }
.hero-copy h1, .split-copy h1 { margin: 14px 0 16px; font-size: clamp(2.25rem, 4vw, 4.35rem); line-height: 1.02; letter-spacing: -0.03em; }
.hero-copy p, .split-copy p, .notice-card p, .info-card p, .program-card p, .team-card p, .contact-card p, .gallery-card p, .faq-card p, .branch-card p, .mission-card p { color: #35536A; line-height: 1.72; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(14, 90, 167, 0.08); color: var(--primary); font-size: 0.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent; font-weight: 700; }
.button.primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.button.ghost { border-color: rgba(14, 90, 167, 0.14); background: #fff; color: var(--primary); }
.hero-highlights { display: grid; gap: 12px; margin-top: 24px; }
.highlight-pill {
    padding: 16px 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(14, 90, 167, 0.1);
    box-shadow: var(--shadow-soft);
}
.highlight-pill strong { display: block; margin-bottom: 8px; }
.highlight-pill span { color: #35536A; font-size: 0.95rem; line-height: 1.6; }
.hero-visual-stack { display: grid; gap: 18px; }
.hero-media-frame,
.split-media,
.story-media {
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow);
    min-height: 100%;
}
.hero-media,
.split-media img,
.story-media img,
.notice-image,
.branch-image,
.gallery-photo,
.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease;
}
.hero-media { min-height: 380px; }
.floating-insight {
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(14, 90, 167, 0.08);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 12px;
}
.panel-kicker, .badge, .text-link { color: var(--primary); }
.section-block { display: grid; gap: 22px; }
.section-heading { display: grid; gap: 10px; }
.section-heading h2 { margin: 0; font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
.row-between { display: flex; align-items: end; justify-content: space-between; gap: 16px; }
.section-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.compact-grid { gap: 18px; }
.stats-block { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat-card { padding: 24px; text-align: center; }
.stat-card strong { display: block; font-size: 2rem; color: var(--primary); margin-bottom: 10px; }
.info-card, .program-card, .notice-card, .team-card, .gallery-card, .faq-card, .panel-card, .contact-card, .mission-card, .branch-card { padding: 24px; }
.story-section { grid-template-columns: 0.95fr 1.05fr; }
.story-copy { display: grid; align-content: center; gap: 16px; }
.split-layout { grid-template-columns: 1fr 1fr; }
.split-copy { display: grid; align-content: center; gap: 18px; }
.info-note {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(43, 110, 164, 0.05);
    display: grid;
    gap: 8px;
}
.info-note strong { color: var(--primary); }
.notice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.notice-card-large { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.notice-card:hover .notice-image,
.branch-card:hover .branch-image,
.gallery-card:hover .gallery-photo {
    transform: scale(1.04);
}
.notice-image { height: 220px; }
.notice-card-body { padding: 22px; display: grid; gap: 12px; }
.notice-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #47657D; font-size: 0.94rem; }
.badge { display: inline-flex; align-items: center; border-radius: 999px; background: rgba(14, 90, 167, 0.08); padding: 6px 12px; font-size: 0.85rem; }
.team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.team-photo,
.team-avatar {
    width: 88px;
    height: 88px;
    border-radius: 26px;
    margin-bottom: 18px;
}
.team-avatar {
    display: grid;
    place-items: center;
    background: #E3EEF7;
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
}
.team-card span,
.team-card small { display: block; color: var(--primary); margin-bottom: 10px; }
.contact-grid, .two-column-split, .mission-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-list, .footer-list, .stack-list, .ordered-list, .check-list { margin: 0; padding-left: 20px; color: #47657D; line-height: 1.8; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; }
.branch-card { padding: 0; overflow: hidden; }
.branch-image { height: 220px; }
.branch-card-body { padding: 22px; }
.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-card-media { margin-bottom: 18px; }
.gallery-visual, .gallery-photo {
    width: 100%;
    height: 240px;
    border-radius: 22px;
}
.gallery-visual { background: #EAF2F8; }
.faq-list { display: grid; gap: 16px; }
.ordered-card { padding-left: 40px; }
.share-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(43, 110, 164, 0.14);
    background: rgba(43, 110, 164, 0.04);
    color: var(--primary);
    font-size: 0.88rem;
}
.share-button:hover { background: rgba(43, 110, 164, 0.09); }
.notice-card-link {
    display: block;
    color: inherit;
}
.notice-card-footer {
    padding: 0 22px 22px;
    border-top: 1px solid rgba(43, 110, 164, 0.08);
}
.card-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
}
.announcement-detail-article {
    align-content: start;
}
.announcement-richtext {
    color: #2C4A61;
    line-height: 1.85;
    white-space: normal;
}
.footer { background: #18384f; color: rgba(255,255,255,0.94); padding: 60px 0 calc(126px + env(safe-area-inset-bottom)); }
.footer-grid { grid-template-columns: 1.25fr 1fr 1fr; }
.footer h3, .footer h4 { color: #fff; margin-top: 0; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.footer-tagline { margin: 0; color: rgba(255,255,255,0.86); }
.footer-copy { color: rgba(255,255,255,0.88); line-height: 1.8; }
.footer-logo {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: rgba(255,255,255,0.12);
    padding: 8px;
    object-fit: contain;
    transform: scale(1.08);
}
.footer-list { list-style: none; padding: 0; }
.footer-list li + li { margin-top: 8px; }
.footer-list a { color: rgba(255,255,255,0.92); transition: color 0.2s ease; }
.footer-list a:hover { color: #ffffff; }
.footer-social-panel { display: grid; gap: 12px; margin-top: 20px; }
.footer-social-note { color: rgba(255,255,255,0.76); font-size: 0.9rem; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 0; }
.social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #ffffff;
    color: #18384f;
    border: 1px solid rgba(255,255,255,0.18);
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.social-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
}
.social-pill.is-passive {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.92);
    border-color: rgba(255,255,255,0.14);
}
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 28px; padding-top: 18px; font-size: 0.95rem; }
.mobile-nav {
    position: fixed;
    left: 50%;
    bottom: calc(14px + env(safe-area-inset-bottom) / 2);
    transform: translateX(-50%);
    width: min(760px, calc(100% - 16px));
    padding: 8px;
    background: #ffffff;
    border: 1px solid rgba(14, 90, 167, 0.12);
    border-radius: 24px;
    box-shadow: 0 16px 32px rgba(18, 56, 94, 0.14);
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    z-index: 30;
}
.mobile-nav-link { display: flex; align-items: center; justify-content: center; min-height: 56px; padding: 8px 6px; text-align: center; line-height: 1.15; border-radius: 18px; font-size: 0.8rem; color: var(--text); white-space: normal; overflow-wrap: anywhere; }
.mobile-nav-link.is-active { background: var(--primary); color: #fff; }

.desktop-nav::-webkit-scrollbar { display: none; }
.not-found-card { justify-items: start; }
.reveal {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 1100px) {
    .topbar-inner { align-items: flex-start; }
    .desktop-nav {
        width: 100%;
        justify-content: flex-start;
        flex-basis: 100%;
    }
    .section-grid,
    .notice-grid,
    .gallery-grid,
    .team-grid,
    .stats-block { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
    .hero-card-split,
    .split-layout,
    .story-section,
    .contact-grid,
    .two-column-split,
    .mission-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .desktop-nav { display: none; }
}

@media (max-width: 720px) {
    .topbar-inner, .row-between, .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .brand {
        width: 100%;
        flex-basis: auto;
    }
    .brand-copy {
        max-width: calc(100% - 104px);
    }
    .brand small {
        font-size: 0.92rem;
    }
    .section-grid,
    .notice-grid,
    .gallery-grid,
    .stats-block,
    .team-grid { grid-template-columns: 1fr; }
    .hero-card { padding: 24px; }
    .hero-media { min-height: 260px; }
    .mobile-nav { display: grid; }
    .gallery-photo, .gallery-visual { height: 210px; }
}

@media (max-width: 520px) {
    .container { width: min(100% - 20px, 1180px); }
    .brand { gap: 12px; }
    .brand-media { width: 78px; height: 78px; padding: 5px; }
    .brand-logo { width: 68px; height: 68px; }
    .brand-copy { max-width: calc(100% - 90px); }
    .brand strong { font-size: 1.08rem; }
    .brand small { font-size: 0.82rem; }
    .mobile-nav-link { font-size: 0.68rem; min-height: 52px; padding: 6px 4px; }
}
:root {
    --font-sans: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
    --font-serif: "Trebuchet MS", "Lucida Sans", sans-serif;
    --shadow-card: 0 20px 40px rgba(23, 57, 89, 0.08);
    --shadow-hover: 0 24px 42px rgba(23, 57, 89, 0.14);
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
}

.container { width: min(1200px, calc(100% - 32px)); }
.app-frame { gap: 84px; padding: 36px 0 88px; }

.hero-card,
.panel-card,
.mission-card,
.contact-card,
.notice-card,
.info-card,
.team-card,
.gallery-card,
.faq-card,
.stat-card,
.program-card,
.branch-card {
    box-shadow: var(--shadow-card);
}

.notice-card:hover,
.info-card:hover,
.program-card:hover,
.team-card:hover,
.gallery-card:hover,
.faq-card:hover,
.branch-card:hover,
.stat-card:hover,
.highlight-pill:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.hero-card {
    padding: 40px;
}

.hero-card-split {
    grid-template-columns: 1.04fr 0.96fr;
    gap: 30px;
}

.hero-copy h1,
.split-copy h1,
.section-heading h2,
.story-copy h2,
.program-card h3,
.notice-card h3,
.signature-panel-copy h2 {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: -0.035em;
}

.hero-copy h1,
.split-copy h1 {
    margin: 16px 0 18px;
    font-size: clamp(2.5rem, 4.6vw, 4.9rem);
    line-height: 0.98;
    max-width: 11ch;
}

.hero-copy p,
.split-copy p,
.notice-card p,
.info-card p,
.program-card p,
.team-card p,
.contact-card p,
.gallery-card p,
.faq-card p,
.branch-card p,
.mission-card p {
    color: #35536A;
    line-height: 1.78;
}

.hero-lead {
    margin: 0;
    max-width: 58ch;
    font-size: 1.08rem;
}

.eyebrow {
    padding: 8px 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-kicker-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.hero-kicker-note {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(43, 110, 164, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.button {
    min-height: 54px;
    padding: 0 24px;
    letter-spacing: 0.01em;
}

.button.primary {
    box-shadow: 0 14px 24px rgba(43, 110, 164, 0.18);
}

.hero-metric-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-metric-pill {
    min-width: 176px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(43, 110, 164, 0.12);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 6px;
}

.hero-metric-pill strong {
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: 1.38rem;
    line-height: 1;
}

.hero-metric-pill span {
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-highlights-premium {
    margin-top: 28px;
}

.highlight-pill-numbered {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 16px;
}

.highlight-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(43, 110, 164, 0.08);
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-media-frame-tall,
.hero-media-frame-tall .hero-media {
    min-height: 520px;
}

.hero-floating-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hero-focus-card strong,
.hero-rhythm-card strong {
    font-size: 1.16rem;
}

.compact-check-list {
    display: grid;
    gap: 8px;
    padding-left: 18px;
}

.panel-kicker,
.badge,
.text-link {
    color: var(--primary);
    font-weight: 700;
}

.section-block {
    gap: 28px;
}

.section-heading {
    gap: 14px;
}

.section-heading h2 {
    font-size: clamp(1.85rem, 3vw, 2.8rem);
    line-height: 1.05;
}

.section-heading p {
    margin: 0;
    max-width: 63ch;
    color: #4B667C;
    line-height: 1.75;
}

.row-between {
    align-items: flex-end;
    gap: 20px;
}

.signature-panel {
    display: grid;
    gap: 28px;
    padding: 34px;
}

.signature-panel-copy {
    display: grid;
    gap: 14px;
    max-width: 760px;
}

.signature-panel-copy h2 {
    margin: 0;
    font-size: clamp(1.95rem, 3vw, 3rem);
    line-height: 1.02;
}

.signature-panel-copy p {
    margin: 0;
    max-width: 62ch;
    color: #35536A;
}

.signature-stats {
    gap: 16px;
}

.stat-card {
    padding: 28px;
    text-align: left;
}

.stat-card strong {
    font-family: var(--font-serif);
}

.stat-card-premium {
    border: 1px solid rgba(43, 110, 164, 0.1);
    background: rgba(255, 255, 255, 0.94);
}

.stat-card-premium strong {
    font-size: 2.2rem;
}

.program-grid-premium {
    gap: 20px;
}

.program-card-premium {
    padding: 28px;
    display: grid;
    gap: 16px;
    align-content: start;
}

.program-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.program-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(43, 110, 164, 0.08);
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: 1.08rem;
    font-weight: 700;
}

.program-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(43, 110, 164, 0.06);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.program-card-premium h3 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.15;
}

.story-section-premium {
    gap: 28px;
    align-items: stretch;
}

.story-points-grid {
    display: grid;
    gap: 14px;
    margin-top: 6px;
}

.story-point-chip {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border: 1px solid rgba(43, 110, 164, 0.1);
    border-radius: 20px;
    background: rgba(43, 110, 164, 0.04);
}

.story-point-chip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #ffffff;
    color: var(--primary);
    font-family: var(--font-serif);
    font-weight: 700;
}

.story-point-chip p {
    margin: 0;
}

.notice-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.notice-card-body {
    padding: 24px;
    display: grid;
    gap: 14px;
}

.notice-meta {
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}

.home-notice-grid {
    align-items: stretch;
}

.home-notice-grid .notice-card.is-featured {
    grid-column: span 2;
}

.home-notice-grid .notice-card.is-featured .notice-image {
    height: 300px;
}

.home-notice-grid .notice-card.is-featured .notice-card-body {
    padding: 26px;
}

.home-notice-grid .notice-card.is-featured h3 {
    font-size: 1.55rem;
    line-height: 1.08;
}

.card-inline-link {
    font-size: 0.95rem;
}

@media (max-width: 1100px) {
    .home-notice-grid .notice-card.is-featured {
        grid-column: span 2;
    }
}

@media (max-width: 980px) {
    .app-frame {
        gap: 68px;
    }

    .hero-card-split,
    .signature-panel,
    .story-section-premium,
    .hero-floating-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .app-frame {
        gap: 58px;
        padding-bottom: 80px;
    }

    .hero-card,
    .signature-panel {
        padding: 28px;
    }

    .hero-copy h1,
    .split-copy h1 {
        max-width: none;
        font-size: clamp(2rem, 9vw, 3.15rem);
    }

    .hero-media-frame-tall,
    .hero-media-frame-tall .hero-media {
        min-height: 320px;
    }

    .hero-metric-row,
    .hero-floating-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-metric-pill {
        min-width: 0;
    }

    .home-notice-grid .notice-card.is-featured {
        grid-column: span 1;
    }
}

@media (max-width: 520px) {
    .signature-panel,
    .program-card-premium,
    .story-point-chip,
    .stat-card-premium {
        padding: 22px;
    }

    .hero-kicker-row {
        gap: 8px;
    }

    .hero-kicker-note {
        font-size: 0.7rem;
    }

    .program-card-top {
        align-items: flex-start;
        flex-direction: column;
    }
}
.hero-editorial {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
}

.hero-editorial::before {
    content: "";
    position: absolute;
    top: -72px;
    right: -54px;
    width: 220px;
    height: 220px;
    border-radius: 42px;
    background: #F0F6FB;
    border: 1px solid rgba(43, 110, 164, 0.08);
}

.hero-editorial::after {
    content: "";
    position: absolute;
    left: 42px;
    bottom: 38px;
    width: 112px;
    height: 4px;
    border-radius: 999px;
    background: rgba(43, 110, 164, 0.16);
}

.hero-copy,
.hero-visual-stack {
    position: relative;
    z-index: 1;
}

.hero-media-frame-tall {
    padding: 10px;
    border: 1px solid rgba(43, 110, 164, 0.08);
    background: #ffffff;
}

.hero-focus-card {
    background: #18384f;
    border-color: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.hero-focus-card strong {
    color: #ffffff;
}

.hero-focus-card .panel-kicker {
    color: rgba(255, 255, 255, 0.72);
}

.hero-focus-card p {
    color: rgba(255, 255, 255, 0.82);
}

.hero-rhythm-card {
    background: #f9fcfe;
}

.signature-panel {
    grid-template-columns: 0.95fr 1.05fr;
    background: #18384f;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.05);
}

.signature-panel .eyebrow {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.signature-panel-copy h2 {
    color: #ffffff;
}

.signature-panel-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.signature-panel .stat-card-premium {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.signature-panel .stat-card-premium strong,
.signature-panel .stat-card-premium span {
    color: #ffffff;
}

.program-card-premium {
    position: relative;
    overflow: hidden;
}

.program-card-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #d6e6f3;
}

.program-card-premium:hover::before {
    background: var(--primary);
}

.story-section-premium .story-media {
    padding: 10px;
    background: #ffffff;
    border: 1px solid rgba(43, 110, 164, 0.08);
}

.story-section-premium .story-media img {
    border-radius: 22px;
}

.home-notice-grid .notice-card.is-featured {
    border-color: rgba(43, 110, 164, 0.18);
}

.home-notice-grid .notice-card.is-featured .notice-card-footer {
    background: #fbfdff;
}

.home-notice-grid .notice-card.is-featured .card-inline-link {
    letter-spacing: 0.02em;
}

@media (max-width: 980px) {
    .signature-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .hero-editorial::before,
    .hero-editorial::after {
        display: none;
    }
}

.hero-card-split {
    grid-template-columns: 1.18fr 0.82fr;
}

.hero-copy h1,
.split-copy h1 {
    max-width: 14ch;
}

.hero-lead {
    max-width: 64ch;
}

.section-heading.row-between > div {
    flex: 1 1 0;
    min-width: 0;
}

.section-heading.row-between .text-link {
    flex: 0 0 auto;
}

.section-heading-rich h2 {
    max-width: 18ch;
}

.section-heading-rich p {
    max-width: 78ch;
}

.hero-focus-card {
    background: #f8fbfe;
    border-color: rgba(43, 110, 164, 0.12);
    color: var(--text);
}

.hero-focus-card strong {
    color: var(--text);
}

.hero-focus-card .panel-kicker {
    color: var(--primary);
}

.hero-focus-card p {
    color: var(--muted);
}

.signature-panel {
    background: #f8fbfe;
    color: var(--text);
    border-color: rgba(43, 110, 164, 0.12);
}

.signature-panel .eyebrow {
    background: rgba(43, 110, 164, 0.08);
    color: var(--primary);
}

.signature-panel-copy h2 {
    color: var(--text);
}

.signature-panel-copy p {
    color: var(--muted);
}

.signature-panel .stat-card-premium {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(43, 110, 164, 0.12);
}

.signature-panel .stat-card-premium strong {
    color: var(--primary);
}

.signature-panel .stat-card-premium span {
    color: var(--muted);
}

@media (max-width: 980px) {
    .hero-card-split {
        grid-template-columns: 1fr;
    }

    .section-heading-rich h2,
    .section-heading-rich p {
        max-width: none;
    }
}
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.contact-card-heading {
    align-items: flex-start;
    margin-bottom: 18px;
}

.contact-card-heading > div {
    display: grid;
    gap: 8px;
}

.contact-map-copy {
    margin: 0;
    color: #47657D;
    line-height: 1.72;
}

.contact-map-card {
    display: grid;
    gap: 18px;
}

.contact-map-frame {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(43, 110, 164, 0.12);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.contact-map-note {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(43, 110, 164, 0.05);
}

.contact-map-note strong {
    color: var(--primary);
}

.contact-map-note span {
    color: #47657D;
    line-height: 1.72;
}

@media (max-width: 720px) {
    .contact-card-heading {
        display: grid;
        gap: 14px;
    }

    .contact-card-heading .button {
        width: 100%;
    }

    .contact-map-frame iframe {
        min-height: 320px;
    }
}
.hero-section .hero-card-split {
    grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.78fr);
    gap: 14px;
    align-items: start;
}

.hero-section .hero-copy h1 {
    font-size: clamp(1.95rem, 2.7vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    max-width: 21ch;
    text-wrap: balance;
}

.hero-section .hero-lead {
    max-width: 68ch;
}

.hero-section .hero-visual-stack {
    gap: 10px;
    align-content: start;
}

.hero-section .hero-media-frame-tall {
    aspect-ratio: 4 / 3;
    min-height: 0;
}

.hero-section .hero-media-frame-tall .hero-media {
    min-height: 0;
}

.hero-section .hero-floating-grid {
    align-items: start;
    gap: 10px;
    grid-auto-rows: 1fr;
}

.hero-section .hero-floating-grid .floating-insight {
    height: 100%;
    min-height: 172px;
    padding: 20px 18px;
    gap: 8px;
    align-content: start;
}

.hero-section .hero-focus-card strong,
.hero-section .hero-rhythm-card strong {
    font-size: 1.02rem;
    line-height: 1.28;
}

.hero-section .hero-focus-card p,
.hero-section .hero-rhythm-card li {
    font-size: 0.92rem;
    line-height: 1.52;
}

.hero-section .compact-check-list {
    gap: 6px;
    padding-left: 16px;
}

@media (max-width: 980px) {
    .hero-section .hero-card-split {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-section .hero-copy h1 {
        max-width: none;
    }

    .hero-section .hero-media-frame-tall {
        aspect-ratio: auto;
    }
}
:focus-visible {
    outline: 3px solid rgba(43, 110, 164, 0.26);
    outline-offset: 3px;
}

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

.hero-card-refined.hero-card-split {
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    gap: 20px;
    align-items: start;
}

.hero-card-refined {
    padding: 34px;
}

.hero-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-metric-pill-compact {
    min-width: 0;
    padding: 14px 16px;
}

.hero-bullet-list {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.hero-bullet-list li {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(43, 110, 164, 0.10);
}

.hero-bullet-list strong {
    font-size: 0.98rem;
    color: var(--text);
}

.hero-bullet-list span {
    color: var(--muted);
    line-height: 1.58;
}

.hero-visual-stack-refined {
    gap: 12px;
    align-content: start;
}

.hero-media-frame-wide {
    aspect-ratio: 4 / 3;
    min-height: 0;
}

.hero-media-frame-wide .hero-media {
    min-height: 0;
}

.hero-focus-card-blend {
    background: #f9fcff;
    color: var(--text);
    border-color: rgba(43, 110, 164, 0.10);
}

.hero-focus-card-blend .panel-kicker,
.hero-focus-card-blend strong,
.hero-focus-card-blend p {
    color: inherit;
}

.hero-focus-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 18px;
    align-items: start;
}

.hero-focus-copy {
    display: grid;
    gap: 10px;
}

.hero-rhythm-list {
    margin: 0;
    padding-left: 18px;
}

.hero-rhythm-list li {
    color: var(--muted);
    line-height: 1.6;
}

.contact-form-meta {
    margin: 0 0 8px;
    color: var(--muted);
    line-height: 1.68;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mobile-nav {
    overflow: visible;
}

.mobile-nav-more {
    position: relative;
}

.mobile-nav-summary {
    list-style: none;
    cursor: pointer;
}

.mobile-nav-summary::-webkit-details-marker {
    display: none;
}

.mobile-nav-summary.is-active,
.mobile-nav-more[open] .mobile-nav-summary {
    background: var(--primary);
    color: #fff;
}

.mobile-nav-sheet {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    width: min(340px, calc(100vw - 24px));
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(14, 90, 167, 0.12);
    box-shadow: 0 22px 44px rgba(18, 56, 94, 0.16);
}

.mobile-nav-sheet-header {
    display: grid;
    gap: 4px;
    margin-bottom: 12px;
}

.mobile-nav-sheet-header strong {
    color: var(--text);
}

.mobile-nav-sheet-header span {
    color: var(--muted);
    font-size: 0.9rem;
}

.mobile-nav-sheet-list {
    display: grid;
    gap: 8px;
}

.mobile-nav-sheet-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    background: #f5f9fd;
    color: var(--text);
}

.mobile-nav-sheet-link.is-active {
    background: rgba(43, 110, 164, 0.12);
    color: var(--primary);
}

@media (max-width: 980px) {
    .hero-card-refined.hero-card-split,
    .hero-focus-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .hero-card-refined {
        padding: 28px;
    }

    .hero-proof-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mobile-nav {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .mobile-nav-sheet {
        right: 0;
        left: auto;
    }
}

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

    .reveal,
    .hero-card,
    .panel-card,
    .nav-link,
    .button,
    .social-pill,
    .notice-image,
    .branch-image,
    .gallery-photo,
    .hero-media {
        transition: none;
        transform: none;
    }

    .reveal {
        opacity: 1;
    }
}
/* Final visual polish */
.topbar {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: rgba(22, 69, 108, 0.10);
    box-shadow: 0 10px 26px rgba(20, 52, 78, 0.05);
    backdrop-filter: blur(18px);
}

.topbar-inner {
    gap: 20px;
    padding: 16px 0;
}

.brand {
    gap: 18px;
}

.brand-media {
    width: 102px;
    height: 102px;
    border-radius: 30px;
    border-color: rgba(22, 69, 108, 0.10);
    box-shadow: 0 16px 34px rgba(20, 52, 78, 0.08);
}

.brand-logo {
    width: 86px;
    height: 86px;
}

.brand strong {
    font-size: 1.28rem;
    letter-spacing: -0.02em;
}

.brand small {
    color: #5d778b;
    font-size: 0.92rem;
}

.desktop-nav {
    gap: 8px;
    padding: 7px;
    border-radius: 999px;
    border: 1px solid rgba(22, 69, 108, 0.09);
    background: rgba(255, 255, 255, 0.82);
}

.nav-link {
    padding: 12px 17px;
    color: #456278;
    font-weight: 700;
}

.nav-link:hover,
.nav-link.is-active {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(20, 52, 78, 0.06);
}

.app-frame {
    gap: 74px;
    padding: 38px 0 92px;
}

.hero-section {
    padding-top: 18px;
}

.hero-card-refined {
    padding: 40px;
    border-radius: 36px;
    border-color: rgba(22, 69, 108, 0.12);
    box-shadow: 0 26px 52px rgba(20, 52, 78, 0.08);
}

.hero-card-refined.hero-card-split {
    gap: 24px;
}

.hero-kicker-row {
    gap: 10px;
    margin-bottom: 2px;
}

.hero-kicker-note {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(22, 69, 108, 0.05);
    color: #5e7b91;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.hero-section .hero-copy h1 {
    font-size: clamp(2.1rem, 3vw, 3.45rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    max-width: 15ch;
    margin-bottom: 18px;
}

.hero-section .hero-lead {
    max-width: 58ch;
    font-size: 1.03rem;
    line-height: 1.8;
    color: #425f76;
}

.button {
    min-height: 54px;
    padding: 0 24px;
    box-shadow: 0 10px 20px rgba(20, 52, 78, 0.06);
}

.button.primary:hover,
.button.ghost:hover {
    transform: translateY(-2px);
}

.hero-metric-pill-compact {
    min-width: 176px;
    border-radius: 20px;
    border: 1px solid rgba(22, 69, 108, 0.10);
    box-shadow: 0 10px 18px rgba(20, 52, 78, 0.05);
}

.hero-bullet-list {
    gap: 12px;
}

.hero-bullet-list li {
    padding: 16px 18px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(20, 52, 78, 0.04);
}

.hero-media-frame-wide {
    padding: 12px;
    border-radius: 30px;
    border-color: rgba(22, 69, 108, 0.10);
    box-shadow: 0 18px 34px rgba(20, 52, 78, 0.07);
}

.hero-focus-card-blend {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 16px 28px rgba(20, 52, 78, 0.06);
}

.hero-focus-copy strong {
    font-size: 1.14rem;
    line-height: 1.3;
}

.hero-rhythm-list li + li {
    margin-top: 6px;
}

.section-block {
    gap: 26px;
}

.section-heading {
    gap: 12px;
}

.section-heading-rich h2 {
    max-width: 20ch;
    font-size: clamp(1.8rem, 2.85vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.section-heading-rich p {
    max-width: 70ch;
    color: #567286;
    font-size: 1rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(22, 69, 108, 0.10);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 18px rgba(20, 52, 78, 0.05);
    font-weight: 700;
}

.signature-panel {
    gap: 24px;
    padding: 32px;
    border-radius: 34px;
    box-shadow: 0 20px 40px rgba(20, 52, 78, 0.07);
}

.signature-panel-copy h2 {
    max-width: 14ch;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.signature-panel-copy p {
    max-width: 62ch;
}

.signature-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 16px;
}

.signature-panel .stat-card-premium {
    min-height: 132px;
    padding: 24px;
    text-align: left;
    display: grid;
    align-content: start;
    gap: 8px;
}

.signature-panel .stat-card-premium strong {
    font-size: 2.05rem;
}

.program-grid-premium {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.program-grid-premium > .program-card-premium {
    grid-column: span 4;
}

.program-card-premium {
    min-height: 100%;
    padding: 24px 24px 22px;
    border-radius: 28px;
    box-shadow: 0 16px 28px rgba(20, 52, 78, 0.06);
}

.program-card-top {
    margin-bottom: 16px;
}

.program-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 16px;
    background: rgba(22, 69, 108, 0.07);
    color: var(--primary);
    font-weight: 800;
}

.program-chip {
    color: #6c8799;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.program-card-premium h3 {
    margin-bottom: 12px;
    font-size: 1.18rem;
    letter-spacing: -0.02em;
}

.story-section-premium {
    gap: 24px;
    align-items: stretch;
}

.story-section-premium .story-media {
    box-shadow: 0 20px 38px rgba(20, 52, 78, 0.07);
}

.story-copy {
    padding: 32px;
    border-radius: 30px;
}

.story-copy h2 {
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.story-points-grid {
    gap: 14px;
}

.story-point-chip {
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(22, 69, 108, 0.10);
    box-shadow: 0 10px 18px rgba(20, 52, 78, 0.04);
}

.home-notice-grid {
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 18px;
}

.home-notice-grid > .notice-card {
    grid-column: span 3;
}

.home-notice-grid > .notice-card.is-featured {
    grid-column: span 4;
}

.notice-card-large {
    border-radius: 28px;
    box-shadow: 0 18px 34px rgba(20, 52, 78, 0.07);
}

.notice-card-link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.notice-card-body {
    flex: 1 1 auto;
    gap: 14px;
}

.notice-card-body h3 {
    margin: 0;
    font-size: 1.16rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.notice-card-footer {
    background: rgba(245, 248, 251, 0.85);
}

.share-button {
    min-height: 40px;
    font-weight: 700;
}

.footer {
    padding-top: 68px;
    background: #16344e;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-grid {
    gap: 28px;
}

.footer-grid > div {
    min-width: 0;
}

.footer-brand {
    align-items: flex-start;
    margin-bottom: 18px;
}

.footer-logo {
    width: 88px;
    height: 88px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.footer h4 {
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.footer-copy,
.footer-tagline,
.footer-list,
.footer-bottom {
    font-size: 0.98rem;
}

.footer-list li + li {
    margin-top: 10px;
}

.footer-contact li {
    line-height: 1.72;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-nav {
    border: 1px solid rgba(22, 69, 108, 0.10);
    box-shadow: 0 18px 34px rgba(20, 52, 78, 0.10);
    backdrop-filter: blur(16px);
}

.mobile-nav-link {
    font-size: 0.74rem;
    font-weight: 700;
    border-radius: 16px;
}

.mobile-nav-link.is-active,
.mobile-nav-summary.is-active,
.mobile-nav-more[open] .mobile-nav-summary {
    box-shadow: 0 12px 24px rgba(43, 110, 164, 0.24);
}

.mobile-nav-sheet {
    border-radius: 26px;
}

@media (max-width: 1120px) {
    .signature-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .program-grid-premium {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .program-grid-premium > .program-card-premium {
        grid-column: auto;
    }

    .home-notice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-notice-grid > .notice-card,
    .home-notice-grid > .notice-card.is-featured {
        grid-column: auto;
    }
}

@media (max-width: 980px) {
    .topbar-inner {
        gap: 16px;
    }

    .desktop-nav {
        padding: 6px;
        width: 100%;
        justify-content: flex-start;
    }

    .hero-card-refined,
    .signature-panel,
    .story-copy {
        padding: 30px;
    }

    .section-heading-rich h2,
    .signature-panel-copy h2 {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .topbar-inner {
        padding: 14px 0;
    }

    .brand {
        gap: 14px;
    }

    .brand-media {
        width: 88px;
        height: 88px;
        border-radius: 24px;
    }

    .brand-logo {
        width: 74px;
        height: 74px;
    }

    .app-frame {
        gap: 60px;
        padding: 28px 0 88px;
    }

    .hero-card-refined,
    .signature-panel,
    .story-copy,
    .program-card-premium,
    .notice-card-body,
    .notice-card-footer {
        padding-left: 22px;
        padding-right: 22px;
    }

    .hero-card-refined,
    .signature-panel,
    .story-copy {
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .section-heading-rich h2 {
        font-size: clamp(1.55rem, 7.4vw, 2.2rem);
    }

    .signature-stats,
    .program-grid-premium,
    .home-notice-grid,
    .story-points-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding-top: 58px;
    }
}
/* Desktop navigation alignment fix */
@media (min-width: 981px) {
    .topbar-inner {
        flex-wrap: nowrap;
        align-items: center;
    }

    .brand {
        flex: 0 1 360px;
    }

    .brand-copy {
        max-width: 240px;
    }

    .brand small {
        max-width: 240px;
        font-size: 0.84rem;
        line-height: 1.28;
    }

    .desktop-nav {
        min-width: 0;
        margin-left: auto;
        flex: 0 1 auto;
        justify-content: flex-start;
        overflow: visible;
        flex-wrap: nowrap;
        row-gap: 0;
        gap: 6px;
        padding-bottom: 0;
    }

    .nav-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 11px 14px;
        font-size: 0.94rem;
    }
}