:root {
    --bg: #ffffff;
    --text: #1b1b1f;
    --muted: #5b5b66;

    --primary: #2f7af8;
    --primary-2: #1f62d4;

    --soft1: #f6fbff;
    --soft2: #fff7e6;
    --soft3: #f3fff3;

    --card: #ffffff;
    --border: rgba(30, 30, 50, 0.10);
    --shadow: 0 10px 30px rgba(20, 20, 40, 0.08);

    --radius: 18px;
    --radius2: 26px;
    --max: 1120px;

    --globeBlueHex: #b4e0f8;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Zen Maru Gothic", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

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

/* =========================
   HEADER
   ========================= */
.siteHeader {
    background: #fff;
}

.siteBannerRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    background: #fff;
    padding: 0;
    margin: 0;
    border-bottom: 0;
}

.siteBrand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.siteBrand img {
    height: 120px;
    width: auto;
    display: block;
}

.siteBanner {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.siteBanner img {
    width: 100%;
    max-width: 820px;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 640px) {
    .siteBannerRow {
        padding: 0;
        gap: 0;
    }

    .siteBrand img {
        height: 64px;
        margin: 0;
    }

    .siteBanner {
        justify-content: flex-end;
    }

    .siteBanner img {
        max-width: none;
        width: 100%;
    }
}

/* =========================
   NAVBAR
   ========================= */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background:
        radial-gradient(circle at 85% 0%,
            rgba(180, 224, 248, 1) 0%,
            rgba(180, 224, 248, 0.70) 36%,
            rgba(255, 255, 255, 0.98) 64%),
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.98) 100%);
    border-bottom: 1px solid var(--border);
    backdrop-filter: none;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand__logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.brand__name {
    font-weight: 800;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navToggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 10px;
    border-radius: 12px;
}

.navToggle:hover {
    background: rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

.navToggle__bar {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

.nav {
    display: none;
    position: absolute;
    right: 16px;
    top: 62px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 10px;
    min-width: 220px;
}

.nav.isOpen {
    display: grid;
}

.nav a {
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.nav a:hover {
    background: rgba(47, 122, 248, 0.08);
    text-decoration: none;
}

.nav__cta {
    margin-top: 6px;
    background: rgba(47, 122, 248, 0.10);
    color: var(--primary-2);
}

@media (min-width: 900px) {
    .navToggle {
        display: none;
    }

    .nav {
        display: flex;
        position: static;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
        gap: 6px;
        min-width: auto;
    }

    .nav a {
        padding: 10px 10px;
    }

    .nav__cta {
        background: var(--primary);
        color: #fff;
        padding: 10px 14px;
        margin-top: 0;
    }

    .nav__cta:hover {
        background: var(--primary-2);
    }
}

/* =========================
   HERO
   ========================= */
.hero {
    position: relative;
    padding: 64px 0 48px;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.0) 0%,
            rgba(255, 255, 255, 0.4) 55%,
            rgba(255, 255, 255, 1.0) 100%),
        url("../img/splash5.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero {
        background-position: 10% top;
    }
}

.hero__inner {
    padding-top: 140px;
    padding-bottom: 40px;
}

.hero__card {
    width: 100%;
    background: rgba(255, 255, 255, 0.50);
    border: 1px solid var(--border);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    padding: 22px 18px;
}

@media (min-width: 640px) {
    .hero__card {
        padding: 28px 26px;
    }
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 999px;
    margin: 0 0 6px;
    font-weight: 600;
}

.pill--primary {
    background: rgba(255, 247, 230, 0.9);
    border: 1px solid rgba(255, 200, 80, 0.4);
    color: #6b4e00;
    font-weight: 700;
}

.pill--secondary {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #555;
    font-weight: 500;
}

.pill__sep {
    margin: 0 6px;
    opacity: 0.5;
}

.heroTrust {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
    margin: 2px 0 10px !important;
}

.heroTrust__big {
    display: block !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #1f3fbf !important;
    letter-spacing: 0.06em !important;
    line-height: 1.2 !important;
}

.heroTrust__small {
    font-size: 11px;
    color: #555;
    font-weight: 500;
    opacity: 1;
    line-height: 1.4;
}

.hero h1 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 40px;
    }
}

.accent {
    color: var(--primary-2);
}

.lead {
    margin: 0 0 16px;
    color: var(--muted);
    font-weight: 600;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 16px;
    border: 1px solid transparent;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.btn:hover {
    text-decoration: none;
}

.btn--primary {
    background: var(--primary);
    color: #fff;
}

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

.btn--ghost {
    background: rgba(47, 122, 248, 0.10);
    color: var(--primary-2);
    border-color: rgba(47, 122, 248, 0.18);
}

.btn--ghost:hover {
    background: rgba(47, 122, 248, 0.15);
}

.btn--small {
    padding: 10px 12px;
    font-size: 14px;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    font-weight: 800;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px dashed rgba(47, 122, 248, 0.35);
    background: rgba(246, 251, 255, 0.9);
}

.hideSm {
    display: none;
}

@media (min-width: 640px) {
    .hideSm {
        display: inline;
    }
}

/* =========================
   SECTIONS / CARDS / TYPOGRAPHY
   ========================= */
.section {
    padding: 44px 0;
}

.section--alt {
    background: linear-gradient(180deg, var(--soft1), #ffffff 70%);
}

.sectionHead {
    margin-bottom: 18px;
}

.sectionHead h2 {
    margin: 0 0 6px;
    font-size: 26px;
}

.sectionHead p {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
}

.card--soft {
    background: rgba(255, 255, 255, 0.92);
}

.card--foundation {
    background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
    border: 1px solid #e3ebff;
}

.card--foundation h3 {
    color: #1f3fbf;
    font-size: 22px;
}

.h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.iconBubble {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 122, 248, 0.10);
    border: 1px solid rgba(47, 122, 248, 0.15);
    font-size: 22px;
    margin-bottom: 10px;
}

.iconBubble i {
    font-size: 26px;
    color: var(--primary-2);
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.grid3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

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

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

/* Lists */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    padding-left: 28px;
    position: relative;
    margin: 10px 0;
    font-weight: 600;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-2);
    font-weight: 900;
}

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

.steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.steps li span {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 247, 230, 0.95);
    border: 1px solid rgba(255, 200, 80, 0.35);
}

.bullets {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-weight: 600;
}

.note {
    color: var(--muted);
    font-weight: 600;
    margin: 12px 0 0;
}

.noteSmall {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    margin-top: 4px;
}

/* =========================
   TEACHER
   ========================= */
.teacherCard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
    border-radius: var(--radius2);
    padding: 18px;
}

.teacherText p {
    margin: 0 0 12px;
    color: var(--muted);
    font-weight: 600;
}

.teacherPhotoWrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 860px) {
    .teacherCard {
        grid-template-columns: 1.5fr 0.7fr;
        padding: 22px;
    }

    .teacherPhotoWrap {
        justify-content: flex-end;
    }
}

.teacherPhoto {
    width: min(220px, 55vw);
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(30, 30, 50, 0.12);
    box-shadow: var(--shadow);
}

.factPills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.factPill {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(246, 251, 255, 0.85);
    border: 1px solid rgba(47, 122, 248, 0.12);
}

.factPill span {
    color: var(--muted);
    font-weight: 700;
}

.factPill strong {
    color: var(--primary-2);
    font-weight: 900;
}

/* =========================
   SCHEDULE
   ========================= */
.scheduleCard {
    padding: 16px;
}

.scheduleTableWrap {
    overflow: auto;
    border-radius: 18px;
    border: 1px solid rgba(30, 30, 50, 0.10);
    background: #fff;
}

.scheduleTable {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
}

.scheduleTable thead th {
    padding: 12px 10px;
    text-align: center;
    font-weight: 900;
    background: rgba(180, 224, 248, 0.55);
    border-bottom: 2px solid rgba(30, 30, 50, 0.12);
}

.scheduleTable td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(30, 30, 50, 0.10);
    border-right: 1px solid rgba(30, 30, 50, 0.10);
    text-align: center;
    background: rgba(255, 247, 230, 0.38);
}

.scheduleTable tr:last-child td {
    border-bottom: 0;
}

.scheduleTable td:last-child,
.scheduleTable th:last-child {
    border-right: 0;
}

.colTime {
    width: 150px;
}

.timeCell {
    font-weight: 900;
    background: rgba(255, 247, 230, 0.60);
}

.blankCell {
    color: rgba(27, 27, 31, 0.35);
    font-weight: 800;
    background: rgba(255, 255, 255, 0.75);
}

.classCell {
    background: rgba(255, 247, 230, 0.38);
}

.slot {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(30, 30, 50, 0.08);
    border-radius: 14px;
    padding: 10px;
}

.lvl {
    font-weight: 1000;
    font-size: 18px;
    color: #ff3b30;
}

.lvl.pre {
    color: #ff3b30;
}

.or {
    font-size: 12px;
    color: var(--muted);
    font-weight: 900;
    margin: 0 6px;
}

.legendBlock {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(30, 30, 50, 0.18);
}

.legendTitle {
    font-weight: 900;
    margin-bottom: 8px;
}

.legendGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

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

.legendItem {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(47, 122, 248, 0.10);
    border: 1px solid rgba(47, 122, 248, 0.18);
    color: var(--primary-2);
    font-weight: 1000;
}

.tag.pre {
    background: rgba(255, 59, 48, 0.10);
    border: 1px solid rgba(255, 59, 48, 0.22);
    color: #ff3b30;
}

/* =========================
   TARGET / CLASS POP STYLING
   ========================= */
.sectionHead--pop h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.sectionHead--pop h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 4px;
    border-radius: 999px;
    background: var(--primary);
    opacity: 0.9;
}

.classGrid .card--pop {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(30, 30, 50, 0.10);
    box-shadow: 0 10px 26px rgba(20, 20, 40, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.classGrid .card--pop::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, rgba(180, 224, 248, 0.9), rgba(255, 255, 255, 0));
}

.classGrid .card--pop:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(20, 20, 40, 0.10);
}

.cardTop {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cardIcon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 224, 248, 0.55);
    border: 1px solid rgba(180, 224, 248, 0.75);
}

.cardIcon i {
    font-size: 20px;
    color: var(--primary-2);
}

.card--popAccent::before {
    background: linear-gradient(90deg, var(--primary), rgba(255, 255, 255, 0));
}

.miniList {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.7;
}

.miniList strong {
    color: var(--text);
}

/* =========================
   FEES
   ========================= */
.feeCard,
.payCard {
    padding: 18px;
}

.feeRows {
    margin-top: 10px;
    display: grid;
    gap: 10px;
}

.feeRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    background: rgba(246, 251, 255, 0.85);
    border: 1px solid rgba(30, 30, 50, 0.10);
}

.feeRow strong {
    color: var(--primary-2);
    font-weight: 1000;
}

.feeNote {
    margin: 0 2px 6px;
    color: var(--muted);
    font-weight: 600;
}

.payBox {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(30, 30, 50, 0.10);
}

.payText {
    margin: 0;
    font-weight: 800;
    color: var(--text);
}

.tableCard {
    padding: 16px;
}

.tableWrap {
    overflow: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.table th,
.table td {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
}

.table th {
    background: rgba(47, 122, 248, 0.06);
}

.table td {
    color: var(--muted);
}

.priceRows {
    display: grid;
    gap: 10px;
}

.priceRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(246, 251, 255, 0.9);
    border: 1px solid rgba(47, 122, 248, 0.12);
}

.priceRow strong {
    color: var(--primary-2);
    font-size: 18px;
}

/* =========================
   FAQ
   ========================= */
.faq {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px 12px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.9);
}

.faq summary {
    cursor: pointer;
    font-weight: 900;
}

.faq p {
    margin: 10px 0 0;
    color: var(--muted);
    font-weight: 600;
}

/* =========================
   NEWS
   ========================= */
.scheduleBlock,
.scheduleBlock .scheduleText,
.scheduleBlock .classSchedule {
    font-weight: 400 !important;
}

.scheduleBlock .scheduleLabel {
    font-weight: 800 !important;
}

.scheduleBlock .classSchedule {
    display: inline-block;
    margin-left: 1.2em;
    margin-top: 6px;
    line-height: 1.7;
    color: #555;
}

.newsDate {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.newsBadge {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #ff5a5a;
    padding: 3px 8px;
    border-radius: 999px;
    line-height: 1;
    letter-spacing: 0.04em;
}

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

.newsList li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 247, 230, 0.55);
    border: 1px solid rgba(255, 200, 80, 0.28);
}

.newsList time {
    font-weight: 900;
    color: #8a5a00;
    white-space: nowrap;
}

.newsList span {
    font-weight: 700;
    color: var(--text);
}

.callout {
    margin-top: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    border-radius: 16px;
    background: rgba(47, 122, 248, 0.08);
    border: 1px solid rgba(47, 122, 248, 0.15);
}

.callout__icon {
    font-size: 22px;
}

.callout__title {
    margin: 0;
    font-weight: 900;
}

.callout__text {
    margin: 2px 0 0;
    color: var(--muted);
    font-weight: 600;
}

.callout__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.icon {
    font-size: 28px;
    color: var(--primary-2);
    background: rgba(47, 122, 248, 0.10);
    padding: 14px;
    border-radius: 14px;
}

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

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

.newsArchive summary::after {
    content: "＋";
    margin-left: 0.5rem;
    font-weight: bold;
}

.newsArchive[open] summary::after {
    content: "−";
}

/* =========================
   GALLERY
   ========================= */
.galleryGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.galleryCard {
    background: rgba(255, 255, 255, 0.92);
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.galleryMedia {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.galleryMedia img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

@media (min-width: 640px) {
    .galleryMedia img {
        height: 240px;
    }
}

.galleryTitle {
    margin: 12px 14px 4px;
    font-size: 18px;
    font-weight: 1000;
}

.galleryText {
    margin: 0 14px 14px;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.6;
}

/* =========================
   MAP
   ========================= */
.mapPlaceholder {
    margin-top: 12px;
    border-radius: 16px;
    border: 1px dashed rgba(47, 122, 248, 0.25);
    background: rgba(246, 251, 255, 0.7);
    padding: 16px;
}

.mapEmbed {
    margin-top: 16px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: #fff;
}

.mapEmbed iframe {
    width: 100%;
    height: 360px;
    display: block;
}

@media (min-width: 900px) {
    .mapEmbed iframe {
        height: 420px;
    }
}

/* =========================
   CONTACT
   ========================= */
.contactCard .btn {
    margin-top: 24px;
}

.contactCard .h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contactCard .h3 i {
    color: var(--primary);
    font-size: 20px;
}

.contactCard .note {
    margin-top: 10px;
}

.contactCard .bigLink {
    margin: 0 0 8px;
    font-weight: 900;
    font-size: 18px;
}

.miniCard {
    margin-top: 12px;
    border-radius: 16px;
    border: 1px solid rgba(47, 122, 248, 0.15);
    background: rgba(246, 251, 255, 0.75);
    padding: 12px;
}

.miniCard__title {
    margin: 0;
    font-weight: 900;
}

.miniCard__text {
    margin: 6px 0 0;
    color: var(--muted);
    font-weight: 600;
}

.ctaStrip {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 200, 80, 0.28);
    background: rgba(255, 247, 230, 0.65);
    padding: 12px;
}

.ctaStrip__title {
    margin: 0;
    font-weight: 900;
}

.ctaStrip__text {
    margin: 2px 0 0;
    color: var(--muted);
    font-weight: 600;
}

/* =========================
   FOOTER
   ========================= */
.footer {
    padding: 26px 0;
    border-top: 1px solid var(--border);
    background: #fff;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
}

@media (min-width: 700px) {
    .footer__inner {
        flex-direction: row;
        align-items: center;
    }
}

.footer__brand {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer__brand img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.footer__name {
    margin: 0;
    font-weight: 900;
}

.footer__meta {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
}

.footer__copy {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
}

/* =========================
   LIGHTBOX
   ========================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    z-index: 100;
}

.lightbox.isOpen {
    display: flex;
}

.lightbox__img {
    max-width: min(980px, 100%);
    max-height: 82vh;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.22);
}