/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
    --red:       #CC0000;
    --red-h:     #e52020;
    --black:     #0a0a0a;
    --dark:      #111111;
    --gray:      #1c1c1c;
    --gray-mid:  #333333;
    --gray-txt:  #888888;
    --white:     #ffffff;
    --white-dim: rgba(255,255,255,0.65);

    --font-body: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
    --font-disp: 'Bebas Neue', 'Oswald', sans-serif;

    --hh: 70px;
    --pad: 100px;
    --wrap: 1160px;
    --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 28px;
}

.section      { padding: var(--pad) 0; }
.section-dark { background: var(--dark); }
.section-red  { background: var(--red); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    inset: 0 0 auto;
    height: var(--hh);
    z-index: 200;
    transition: background 0.4s var(--ease), box-shadow 0.4s;
}

.header.scrolled {
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(204,0,0,0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 28px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img    { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.logo-accent { font-size: 1.15rem; font-weight: 900; color: var(--red); letter-spacing: .03em; }
.logo-sep    { color: var(--gray-mid); font-weight: 300; }
.logo-sub    { font-size: .8rem; color: var(--white-dim); font-weight: 400; letter-spacing: .12em; }

/* Desktop nav */
.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--white-dim);
    position: relative;
    transition: color .3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -5px;
    width: 0; height: 2px;
    background: var(--red);
    transition: width .3s var(--ease);
}

.nav-link:hover               { color: var(--white); }
.nav-link:hover::after        { width: 100%; }
.nav-link.active              { color: var(--white); }
.nav-link.active::after       { width: 100%; }

.nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 8px 22px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
    transition: background .3s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--red-h); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 38px; height: 38px;
    background: none; border: none;
    cursor: pointer; padding: 4px;
}
.hamburger span {
    display: block;
    width: 100%; height: 2px;
    background: var(--white);
    transition: transform .35s var(--ease), opacity .35s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 199;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform .45s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul   { text-align: center; }
.mob-link {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: .08em;
    padding: 18px 40px;
    transition: color .3s;
}
.mob-link:hover { color: var(--red); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, #1a0000 0%, #0a0a0a 60%),
        url('S__57589763.jpg') center/cover no-repeat;
    background-blend-mode: multiply;
    transform: scale(1.06);
    animation: bgZoom 22s ease-in-out infinite alternate;
}

@keyframes bgZoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,10,10,.88) 0%,
        rgba(120,0,0,.45)  50%,
        rgba(10,10,10,.85) 100%
    );
}

/* grid texture */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg,  transparent, transparent 79px, rgba(204,0,0,.04) 79px, rgba(204,0,0,.04) 80px),
        repeating-linear-gradient(0deg,   transparent, transparent 79px, rgba(204,0,0,.04) 79px, rgba(204,0,0,.04) 80px);
}

/* diagonal red stripe */
.hero-stripe {
    position: absolute;
    top: 0; bottom: 0;
    left: 60%;
    width: 6px;
    background: var(--red);
    transform: skewX(-12deg);
    opacity: .35;
    z-index: 1;
}
.hero-stripe::before {
    content: '';
    position: absolute;
    inset: 0;
    left: 18px;
    width: 2px;
    background: var(--red);
    opacity: .5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 28px;
    max-width: 900px;
}

.hero-label {
    font-family: var(--font-disp);
    font-size: clamp(.55rem, 1.1vw, .8rem);
    letter-spacing: .28em;
    color: var(--red);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) .3s forwards;
}

.hero-title {
    font-weight: 900;
    font-size: clamp(5.5rem, 17vw, 14rem);
    line-height: .88;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.hero-t1 {
    display: block;
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) .55s forwards;
}
.hero-t2 {
    display: block;
    color: var(--red);
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) .75s forwards;
}

.hero-sub {
    font-size: clamp(.8rem, 1.4vw, 1rem);
    color: var(--white-dim);
    letter-spacing: .22em;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) .95s forwards;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) 1.1s forwards;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) 1.6s forwards;
}
.hero-scroll span {
    font-family: var(--font-disp);
    font-size: .65rem;
    letter-spacing: .35em;
    color: var(--white-dim);
}
.hero-scroll-line {
    width: 1px; height: 56px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: scrollBlink 2.2s ease-in-out infinite;
}
@keyframes scrollBlink {
    0%,100% { opacity: .35; }
    50%      { opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .1em;
    cursor: pointer;
    border: none;
    transition: transform .3s var(--ease), opacity .3s, background .3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
}

.btn-red   { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-h); transform: translateY(-2px); }

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.38);
    clip-path: none;
    border-radius: 2px;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-2px); }

.btn-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
}
.btn-ig:hover { opacity: .88; transform: translateY(-2px); }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.sec-head { margin-bottom: 56px; }
.sec-en {
    display: block;
    font-family: var(--font-disp);
    font-size: clamp(.6rem, .95vw, .72rem);
    letter-spacing: .42em;
    color: var(--red);
    margin-bottom: 8px;
}
.sec-ja {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.1;
}
.sec-head-light .sec-ja { color: var(--white); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 64px;
    align-items: center;
}

.about-catch {
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--white-dim);
    font-size: .95rem;
    margin-bottom: 18px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-mid);
}

.stat-num {
    font-family: var(--font-disp);
    font-size: 2.2rem;
    color: var(--red);
    line-height: 1;
}
.stat-num small { font-size: 1rem; }
.stat-lbl { font-size: .7rem; color: var(--white-dim); letter-spacing: .08em; margin-top: 4px; }
.stat-bar { width: 1px; height: 48px; background: var(--gray-mid); }

/* Logo in about section */
.about-emblem { display: flex; align-items: center; justify-content: center; }
/* チーム写真 */
.about-photo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-team-photo {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.about-logo-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--red);
    box-shadow: 0 4px 20px rgba(0,0,0,.5);
    background: var(--dark);
}
@media (max-width: 600px) {
    .about-logo-badge { width: 64px; height: 64px; top: -10px; right: -10px; }
}

.about-results {
    margin-top: 28px;
    padding: 18px 20px;
    border-left: 3px solid var(--red);
    background: rgba(204,0,0,.06);
}
.about-results-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--red);
    margin-bottom: 10px;
}
.about-results ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.about-results li {
    font-size: .84rem;
    color: var(--white-dim);
    line-height: 1.5;
}
.about-results li strong { color: var(--white); font-weight: 700; }

.about-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 3px var(--red), 0 0 28px rgba(204,0,0,0.4);
    transition: box-shadow .4s;
}
.about-logo:hover {
    box-shadow: 0 0 0 6px var(--red), 0 0 60px rgba(204,0,0,0.6);
}

/* ============================================================
   NEWS
   ============================================================ */
.news-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 20px;
}

.news-card {
    background: var(--gray);
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(204,0,0,.2);
}

.news-img { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.news-card-lg .news-img { aspect-ratio: 16/8; }

.news-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.news-card:hover .news-img img { transform: scale(1.06); }

.news-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--red);
    color: var(--white);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 3px 10px;
}

.news-body    { padding: 22px 24px; }
.news-date    { display: block; font-family: var(--font-disp); font-size: .82rem; color: var(--red); letter-spacing: .15em; margin-bottom: 8px; }
.news-title   { font-size: 1.05rem; font-weight: 900; margin-bottom: 10px; }
.news-card-lg .news-title { font-size: 1.35rem; }
.news-text    { font-size: .875rem; color: var(--white-dim); line-height: 1.7; }

/* ============================================================
   TIMELINE / 歩み
   ============================================================ */
.timeline {
    position: relative;
    padding: 20px 0 40px;
}

/* 中央ライン */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
        transparent 0%,
        var(--red) 8%,
        var(--red) 92%,
        transparent 100%
    );
    transform: translateX(-50%);
}

/* 各アイテム */
.tl-item {
    display: grid;
    grid-template-columns: 1fr 64px 1fr;
    align-items: center;
    margin-bottom: 56px;
    gap: 0 16px;
}

/* 左：年号エリア */
.tl-left  { }
.tl-right { }

/* 年号 */
.tl-year {
    font-family: var(--font-disp);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    color: var(--red);
    line-height: 1;
    letter-spacing: -.02em;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tl-year span {          /* "NOW" バッジ */
    font-size: .6rem;
    letter-spacing: .3em;
    color: var(--white);
    background: var(--red);
    padding: 2px 8px;
    display: inline-block;
    width: fit-content;
}

/* tl-l: 年号左・カード右 */
.tl-l .tl-left  { text-align: right; }
.tl-l .tl-year  { justify-content: flex-end; align-items: flex-end; }

/* tl-r: カード左・年号右 */
.tl-r .tl-right { text-align: left; }
.tl-r .tl-year  { justify-content: flex-start; align-items: flex-start; }
.tl-r .tl-card  { text-align: right; border-left: none; border-right: 4px solid var(--red); }
.tl-r .tl-card::after { left: auto; right: -10px; border-right: none; border-left: 10px solid var(--gray); }

/* ドット */
.tl-center { display: flex; align-items: center; justify-content: center; position: relative; }
.tl-dot {
    width: 14px; height: 14px;
    background: var(--red);
    border-radius: 50%;
    border: 3px solid var(--dark);
    box-shadow: 0 0 0 2px var(--red);
    position: relative; z-index: 2;
    flex-shrink: 0;
}
.tl-dot-big {
    width: 20px; height: 20px;
    box-shadow: 0 0 0 3px var(--red), 0 0 16px rgba(204,0,0,0.6);
}
.tl-dot-now {
    width: 18px; height: 18px;
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%,100% { box-shadow: 0 0 0 2px var(--red); }
    50%      { box-shadow: 0 0 0 6px rgba(204,0,0,.3), 0 0 20px rgba(204,0,0,.5); }
}

/* カード */
.tl-card {
    background: var(--gray);
    padding: 22px 26px;
    border-left: 4px solid var(--red);
    position: relative;
}

/* カードの矢印（→ dot方向） */
.tl-l .tl-card::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%; transform: translateY(-50%);
    border: 10px solid transparent;
    border-right: 10px solid var(--gray);
}
.tl-r .tl-card::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%; transform: translateY(-50%);
    border: 10px solid transparent;
    border-left: 10px solid var(--gray);
}

/* カードタイトル・テキスト */
.tl-card-title {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.3;
}
.tl-card-text {
    font-size: .85rem;
    color: var(--white-dim);
    line-height: 1.75;
}

/* ハイライトカード */
.tl-card-highlight {
    background: rgba(204,0,0,.12);
    border-left-width: 6px;
}
.tl-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .15em;
    padding: 2px 8px;
    margin-bottom: 8px;
}

/* アニメーション（anim クラス上書き） */
.tl-item.tl-l { opacity: 0; transform: translateX(-40px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.tl-item.tl-r { opacity: 0; transform: translateX(40px);  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
.tl-item.in   { opacity: 1; transform: translateX(0); }

/* モバイル用：カード内の年号（デスクトップでは非表示） */
.tl-mob-year {
    display: none;
    font-family: var(--font-disp);
    font-size: 1.6rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 6px;
}

/* モバイル */
@media (max-width: 700px) {
    .timeline::before { left: 24px; transform: none; }

    .tl-item {
        grid-template-columns: 48px 1fr;
        gap: 0 12px;
        margin-bottom: 36px;
    }

    /* ドットを1列目に */
    .tl-center { grid-column: 1; grid-row: 1; align-self: start; padding-top: 16px; }

    /* tl-l: コンテンツ（tl-right）を2列目に、tl-leftを非表示 */
    .tl-l .tl-left  { display: none; }
    .tl-l .tl-right { grid-column: 2; grid-row: 1; }

    /* tl-r: コンテンツ（tl-left）を2列目に、tl-rightを非表示 */
    .tl-r .tl-right { display: none; }
    .tl-r .tl-left  { grid-column: 2; grid-row: 1; }

    /* カードのスタイルをリセット */
    .tl-card {
        border-left: 4px solid var(--red) !important;
        border-right: none !important;
        text-align: left !important;
    }
    .tl-card::after { display: none !important; }

    /* モバイルで年号を表示 */
    .tl-mob-year { display: block; }

    /* アニメーションをシンプルに */
    .tl-item.tl-l,
    .tl-item.tl-r { transform: translateX(-20px); }
}

/* ============================================================
   カード全体をリンクにするラッパー */
.news-card-link-wrap {
    display: block;
    color: inherit;
    height: 100%;
}

.news-more {
    display: inline-block;
    margin-top: 14px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: .05em;
}

/* 一覧ボタン */
.news-footer {
    margin-top: 40px;
    text-align: center;
}

/* ============================================================
   INSTAGRAM / SNS
   ============================================================ */
.ig-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    background: var(--gray);
    border-left: 4px solid var(--red);
    margin-bottom: 32px;
}
.ig-banner-icon { color: var(--red); flex-shrink: 0; }
.ig-handle { font-family: var(--font-disp); font-size: 1.6rem; color: var(--red); letter-spacing: .04em; }
.ig-desc   { font-size: .875rem; color: var(--white-dim); margin-top: 2px; }

/* Instagram grid */
.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 32px;
}

.ig-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
}
.ig-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.ig-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(204,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}
.ig-item:hover img { transform: scale(1.06); }
.ig-item:hover .ig-item-overlay { opacity: 1; }

.ig-cta-wrap { text-align: center; }

/* ============================================================
   SUPPORT
   ============================================================ */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

.support-card {
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.22);
    padding: 40px 36px;
    transition: border-color .3s;
}
.support-card:hover { border-color: rgba(255,255,255,.5); }
.support-icon { margin-bottom: 20px; opacity: .9; }
.support-card h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 14px; }
.support-card p  { font-size: .88rem; opacity: .82; line-height: 1.75; margin-bottom: 22px; }
.support-link { font-size: .88rem; font-weight: 700; text-decoration: underline; opacity: .9; transition: opacity .3s; }
.support-link:hover { opacity: 1; }

/* Account box */
.account-box {
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.22);
    padding: 40px 36px;
}
.account-title {
    font-size: 1.1rem; font-weight: 900;
    margin-bottom: 20px; padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.2);
}
.account-row {
    display: flex;
    gap: 24px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: .88rem;
}
.account-row:last-child { border-bottom: none; }
.ac-label { width: 120px; flex-shrink: 0; opacity: .6; }
.ac-val   { font-weight: 700; }
.ac-section-label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(255,255,255,.5);
    margin: 20px 0 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.ac-section-label:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    padding: 60px 0 28px;
    border-top: 1px solid rgba(204,0,0,.3);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-name  { font-size: .95rem; font-weight: 900; margin-bottom: 6px; }
.footer-motto { font-size: 1.6rem; font-weight: 900; color: var(--red); }

.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: .875rem; color: var(--white-dim); transition: color .3s; }
.footer-nav a:hover { color: var(--red); }

.footer-ig {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    color: var(--white-dim);
    transition: color .3s;
}
.footer-ig:hover { color: var(--red); }

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--gray);
    text-align: center;
}
.footer-bottom p { font-size: .72rem; color: var(--gray-txt); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.anim {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.anim.in { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 960px) {
    .nav { display: none; }
    .hamburger { display: flex; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-emblem { order: -1; }
    .emblem { width: 220px; height: 220px; }
    .emblem-year { font-size: 2.8rem; }

    .news-grid { grid-template-columns: 1fr; }

    .ig-grid { grid-template-columns: repeat(2, 1fr); }

    .support-grid { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
    :root { --pad: 64px; }

    .about-stats { flex-wrap: wrap; gap: 20px; }
    .stat-bar    { display: none; }

    .hero-btns { flex-direction: column; align-items: center; }

    .ig-banner { flex-direction: column; text-align: center; }

    .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }

    .support-card { padding: 28px 22px; }
    .account-box  { padding: 28px 22px; }
    .account-row  { flex-direction: column; gap: 2px; }
    .ac-label     { width: auto; }
}
