:root {
    --navy: #0d1b2e;
    --navy2: #1a2a4a;
    --red: #c0392b;
    --red2: #e74c3c;
    --gold: #c9a84c;
    --cream: #fdf8f0;
    --white: #fff;
    --text: #2c2c2c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 27, 46, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #8b1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif JP';
    font-weight: 900;
    color: white;
    font-size: 18px;
    border: 2px solid var(--gold);
}

.nav-logo-img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-text h3 {
    font-family: 'Cinzel';
    font-size: 15px;
    letter-spacing: 1px;
    color: white;
}

.nav-logo-text span {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color .3s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-enroll {
    background: var(--red);
    color: white;
    padding: 9px 22px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .3s;
}

.nav-enroll:hover {
    background: var(--red2);
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(13, 27, 46, 0.99);
    z-index: 999;
    padding: 20px;
    flex-direction: column;
    gap: 0;
}

.mobile-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
}

.mobile-menu.open {
    display: flex;
}

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #0d1b2e 0%, #1a2a4a 40%, #2d1515 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 1;
    transition: background-image 0.8s ease-in-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 27, 46, 0.95) 20%, rgba(13, 27, 46, 0.3) 100%),
                radial-gradient(ellipse 60% 50% at 70% 50%, rgba(192, 57, 43, 0.2) 0%, transparent 60%), 
                radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201, 168, 76, 0.1) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

.hero-c1 {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.hero-c2 {
    position: absolute;
    right: -50px;
    top: -50px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.petal {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 182, 193, 0.6);
    border-radius: 50% 0;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1
    }

    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 120px 80px 80px;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-badge span {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.5)
    }
}

.hero-sub {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-title {
    font-family: 'Cinzel';
    color: white;
    line-height: 1.05;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-title .accent {
    color: var(--red);
}

.hero-kanji {
    font-family: 'Noto Serif JP';
    font-size: 80px;
    color: rgba(201, 168, 76, 0.1);
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    letter-spacing: 10px;
    user-select: none;
    font-weight: 900;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hloc {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.hero-batch {
    display: inline-block;
    background: linear-gradient(135deg, #1a0808, #2d1515);
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 14px 24px;
    margin-bottom: 36px;
}

.hb-label {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hb-date {
    font-family: 'Cinzel';
    font-size: 26px;
    color: white;
    font-weight: 700;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-p {
    background: var(--red);
    color: white;
    padding: 15px 36px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-p:hover {
    background: var(--red2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192, 57, 43, 0.4);
}

.btn-o {
    background: transparent;
    color: white;
    padding: 15px 36px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-o:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.08);
}

/* FEATURES */
.features-bar {
    background: var(--navy2);
    padding: 28px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 2px solid var(--gold);
}

.fi {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fi:last-child {
    border-right: none;
}

.fi-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.fi h4 {
    color: white;
    font-size: 13px;
    font-weight: 700;
}

.fi p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.5;
    margin-top: 2px;
}

/* SECTIONS */
section {
    padding: 90px 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--red);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Cinzel';
    font-size: clamp(24px, 3vw, 36px);
    color: var(--navy2);
    font-weight: 700;
    margin-bottom: 14px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 16px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.section-divider::before {
    left: -10px;
}

.section-divider::after {
    right: -10px;
}

.section-sub {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* COURSES */
.courses {
    background: var(--cream);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.cc {
    background: white;
    border-radius: 8px;
    padding: 32px 28px;
    border: 1px solid #e8e0d0;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}

.cc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
}

.cc:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.cc-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.1), rgba(192, 57, 43, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    border: 1px solid rgba(192, 57, 43, 0.2);
}

.cc h3 {
    font-family: 'Cinzel';
    font-size: 13px;
    color: var(--navy2);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: .5px;
}

.cc p {
    color: #666;
    font-size: 13px;
    line-height: 1.7;
}

/* PATHWAY */
.pathway {
    background: white;
}

.pathway-roadmap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 20px;
}

.ps {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    transition: all .3s;
}

.pn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(13, 27, 46, 0.3);
}

.pn-icon {
    font-size: 26px;
    margin-bottom: 2px;
}

.pn-num {
    font-family: 'Cinzel';
    font-size: 9px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
}

.pl {
    margin-top: 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--navy2);
    max-width: 80px;
    line-height: 1.4;
}

.pa {
    display: flex;
    align-items: center;
    padding: 0 4px;
    margin-bottom: 40px;
}

.pa-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    position: relative;
}

.pa-line::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 7px solid var(--red);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.pn-final {
    background: linear-gradient(135deg, var(--red), #8b1a1a) !important;
    border-color: var(--red2) !important;
}

.pn-final .pn-num {
    color: rgba(255, 255, 255, 0.8);
}

/* ACHIEVEMENTS */
.achieve {
    background: var(--cream);
}

.achieve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ach {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid #ede8df;
    border-radius: 8px;
    transition: all .3s;
    background: white;
    position: relative;
    overflow: hidden;
}

.ach::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transition: transform .3s;
}

.ach:hover::after {
    transform: scaleX(1);
}

.ach:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.ach-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.ach h3 {
    font-family: 'Cinzel';
    font-size: 13px;
    color: var(--navy2);
    font-weight: 700;
    margin-bottom: 8px;
}

.ach p {
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}

/* SCHEDULE */
.schedule {
    background: var(--navy2);
}

.sch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sch {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    padding: 28px 22px;
    transition: all .3s;
}

.sch:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.sch-period {
    font-family: 'Cinzel';
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sch-level {
    font-size: 18px;
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
}

.sch ul {
    list-style: none;
}

.sch li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.7;
    padding-left: 12px;
    position: relative;
}

.sch li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--red);
}

.sch-note {
    margin-top: 28px;
    text-align: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 6px;
    padding: 14px 24px;
    color: var(--gold);
    font-size: 13px;
}

/* FOUNDER */
.founder {
    background: white;
}

.founder-inner {
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    border-radius: 12px;
    padding: 60px 70px;
    position: relative;
    overflow: hidden;
}

.founder-inner::before {
    content: '"';
    font-family: 'Cinzel';
    font-size: 200px;
    color: rgba(201, 168, 76, 0.06);
    position: absolute;
    top: -40px;
    left: 30px;
    line-height: 1;
}

.founder-inner::after {
    content: '佳';
    font-family: 'Noto Serif JP';
    font-size: 160px;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-weight: 900;
}

.founder-tag {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
}

.founder-inner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.f-sig {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    position: relative;
    z-index: 1;
}

.f-sig-name {
    color: var(--gold);
    font-family: 'Cinzel';
    font-size: 15px;
    font-weight: 700;
}

.f-sig-role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 4px;
}

/* BLOG PREVIEW */
.blog-preview {
    background: var(--cream);
}

.bp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bp-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8e0d0;
    transition: all .3s;
    cursor: pointer;
}

.bp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.bp-img {
    height: 180px;
    background: linear-gradient(135deg, var(--navy), var(--navy2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    overflow: hidden;
    position: relative;
}

.bp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 46, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    backdrop-filter: blur(4px);
}

.bp-overlay span {
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    padding: 6px 12px;
    border-radius: 4px;
}

.bp-card:hover .bp-overlay {
    opacity: 1;
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.blog-modal {
    background: white;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 90px rgba(0,0,0,0.5);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

.modal-header {
    padding: 32px 36px 24px;
    border-bottom: 1px solid #eee;
}

.modal-cat {
    display: inline-block;
    background: rgba(192, 57, 43, 0.1);
    color: var(--red);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 12px;
}

.modal-header h2 {
    font-family: 'Cinzel';
    font-size: 24px;
    color: var(--navy2);
    margin: 0;
}

.modal-meta {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    font-size: 12px;
    color: #999;
}

.modal-body {
    padding: 32px 36px;
}

.bp-body {
    padding: 24px;
}

.bp-cat {
    display: inline-block;
    background: rgba(192, 57, 43, 0.1);
    color: var(--red);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.bp-card h3 {
    font-family: 'Cinzel';
    font-size: 14px;
    color: var(--navy2);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.5;
}

.bp-card p {
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

.bp-date {
    color: #aaa;
    font-size: 11px;
    margin-top: 12px;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--navy) 0%, #2d1515 100%);
    text-align: center;
    padding: 90px 60px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '夢';
    font-family: 'Noto Serif JP';
    font-size: 280px;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900;
}

.cta-c {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: 'Cinzel';
    font-size: clamp(26px, 4vw, 46px);
    color: white;
    margin-bottom: 14px;
}

.cta h2 span {
    color: var(--red);
}

.cta-tag {
    color: var(--gold);
    font-style: italic;
    font-size: 18px;
    margin-bottom: 28px;
}

.cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 32px;
}

/* FOOTER */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 60px 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-logo h2 {
    font-family: 'Cinzel';
    font-size: 22px;
    color: white;
    margin-bottom: 6px;
}

.footer-logo>p:first-of-type {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.fdesc {
    font-size: 13px;
    line-height: 1.8;
}

.fc h4 {
    color: white;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 700;
}

.fc ul {
    list-style: none;
}

.fc li {
    margin-bottom: 8px;
    font-size: 13px;
}

.fc a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color .3s;
}

.fc a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

/* SCROLL BTN */
.scroll-btn-group {
    position: fixed;
    right: 24px;
    bottom: 40px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scroll-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy2);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 18px;
}

.scroll-btn:hover {
    background: var(--red);
    border-color: var(--red2);
    transform: scale(1.1);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width:1024px) {
    .hero-content { padding: 120px 40px 60px; }
    .courses-grid, .achieve-grid, .sch-grid, .bp-grid { grid-template-columns: repeat(2, 1fr); }
    .features-bar { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-kanji { display: none; }
}

@media(max-width:768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    section { padding: 60px 20px; }
    .hero-content { padding: 100px 20px 40px; text-align: center; }
    .hero-location { justify-content: center; flex-direction: column; gap: 8px; }
    .hero-btns { justify-content: center; }
    .features-bar { grid-template-columns: 1fr; }
    .courses-grid, .achieve-grid, .sch-grid, .bp-grid { grid-template-columns: 1fr; }
    .founder-inner { padding: 36px 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}






