/*
Theme Name: Chronos Theme
Theme URI: https://chronos-conservation.org
Author: Antigravity
Author URI: https://example.com
Description: A translucent glassmorphism theme with navy signature color for a public foundation.
Version: 6.1.0
Text Domain: chronos-theme
*/

/* ================================================
   1. CSS VARIABLES - Navy Glass Palette
   ================================================ */
:root {
    /* Navy & Accent */
    --color-primary: #0b2545;
    --color-primary-light: #163d6b;
    --color-primary-dark: #071a30;
    --color-accent: #b8963e;
    --color-accent-warm: #c9a84c;

    /* Backgrounds — Pearl White */
    --color-bg-body: #f6f5f2;
    --color-bg-mesh-1: #f4f3ef;
    --color-bg-mesh-2: #f0eeea;
    --color-bg-mesh-3: #faf9f7;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-bg-strong: rgba(255, 255, 255, 0.8);
    --glass-bg-subtle: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px rgba(11, 37, 69, 0.05);
    --glass-blur: blur(20px);
    --glass-blur-strong: blur(40px);

    /* Text */
    --color-text-main: #2a3444;
    --color-text-heading: #0b2545;
    --color-text-sub: #5a6a7e;
    --color-text-light: #8a99ab;

    /* Borders */
    --color-border: rgba(11, 37, 69, 0.1);
    --color-border-light: rgba(11, 37, 69, 0.05);

    /* Fonts */
    --font-main: 'Zen Kaku Gothic New', sans-serif;
    --font-heading: 'Shippori Mincho', serif;
    --font-english: 'Cormorant Garamond', serif;

    /* Spacing */
    --spacing-container: 1200px;
    --spacing-section: 120px;
    --header-height: 72px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;

    /* Easing */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ================================================
   2. RESET & BASE
   ================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Floating Scrollbar — overlay style */
html {
    background: var(--color-bg-body);
    scrollbar-width: thin;
    scrollbar-color: rgba(11, 37, 69, 0.15) transparent;
    overflow-x: clip;
    overflow-y: auto;
    overflow-y: overlay;
}

/* WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 6px;
    background: transparent;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(11, 37, 69, 0.15);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(11, 37, 69, 0.3);
}

body {
    background: var(--color-bg-body);
    color: var(--color-text-main);
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.9;
    margin: 0;
    overflow-x: clip;
    letter-spacing: 0.04em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Mesh Gradient Background — Pearl White */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(11, 37, 69, 0.025) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(184, 150, 62, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(22, 61, 107, 0.015) 0%, transparent 60%),
        linear-gradient(160deg, var(--color-bg-mesh-1) 0%, var(--color-bg-mesh-3) 50%, var(--color-bg-mesh-2) 100%);
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-heading);
    margin-top: 0;
    font-weight: 700;
    line-height: 1.4;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: var(--color-accent);
    opacity: 1;
}

img {
    max-width: 100%;
    height: auto;
}

/* ================================================
   3. UTILITIES
   ================================================ */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 40px;
}

.text-center { text-align: center; }
.text-sub { font-size: 0.9rem; color: var(--color-text-sub); }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.pl-5 { padding-left: 1.25rem; }
.list-disc { list-style-type: disc; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* Glass Card Mixin */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}

/* Fade-in Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   4. HEADER - Frosted Glass
   ================================================ */
#site-header {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1280px;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border: none;
    border-radius: 18px;
    padding: 0;
    box-shadow: 0 2px 16px rgba(11, 37, 69, 0.06);
    transition: all 0.4s var(--ease-out-expo);
}

#site-header.scrolled {
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 4px 30px rgba(11, 37, 69, 0.1);
    top: 8px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 0 28px;
    position: relative;
    z-index: 10002;
}

.logo a {
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    letter-spacing: 0.06em;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 10003;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.logo a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.logo-sub {
    font-size: 0.58rem;
    font-family: var(--font-english);
    color: var(--color-text-sub);
    letter-spacing: 0.12em;
    font-weight: 400;
    font-style: italic;
}

/* Navigation */
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    height: 100%;
    gap: 0;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links li a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-main);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.02em;
    border-radius: 10px;
}

.nav-links li a:hover {
    color: var(--color-primary);
    background: rgba(11, 37, 69, 0.06);
    opacity: 1;
}

.nav-links li a.nav-active {
    color: var(--color-accent);
    font-weight: 700;
}

.nav-links li a.nav-active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 10005;
    padding: 0;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

/* Header Spacer */
.header-spacer {
    height: calc(var(--header-height) + 32px);
}

/* ================================================
   5. HERO SECTION
   ================================================ */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-top: -100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 30s infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(7, 26, 48, 0.88) 0%,
            rgba(11, 37, 69, 0.5) 40%,
            rgba(0, 0, 0, 0.1) 100%
        );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 760px;
    padding-left: 8vw;
    text-align: left;
}

.hero-title-en {
    font-family: var(--font-english);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.08;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.02em;
    font-weight: 600;
    font-style: italic;
}

.hero-title-jp {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 36px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.85);
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.hero-title-jp::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--color-accent);
    border-radius: 2px;
}

.hero-desc {
    font-size: 0.9rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 24px;
}

.hero-cta {
    margin-top: 40px;
}

.hero-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0;
    background: none;
    border: none;
    transition: all 0.5s var(--ease-out-expo);
    text-decoration: none;
    position: relative;
}

.hero-cta a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.5s var(--ease-out-expo);
}

.hero-cta a:hover::after {
    width: 100%;
}

.hero-cta a:hover {
    opacity: 1;
    transform: none;
}

.hero-cta-label {
    font-family: var(--font-english);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--color-accent);
    padding: 5px 12px;
    border: 1px solid rgba(184, 150, 62, 0.4);
    border-radius: 3px;
    margin-right: 14px;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0;
    background: none;
    border: none;
    transition: all 0.5s var(--ease-out-expo);
    text-decoration: none;
    position: relative;
}

.hero-cta-secondary::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.5s var(--ease-out-expo);
}

.hero-cta-secondary:hover::after {
    width: 100%;
}

.hero-cta-secondary:hover {
    opacity: 1;
    color: #fff;
}

.hero-cta-secondary .hero-cta-label {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

.hero-cta-secondary:hover .hero-cta-label {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.hero-cta-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.8);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-english);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 8px;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ================================================
   6. SECTIONS (Common)
   ================================================ */
.section {
    padding: var(--spacing-section) 0;
    position: relative;
}

/* Section Title System */
.design-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.design-title-wrapper.text-center {
    align-items: center;
}

.design-title-en {
    font-family: var(--font-english);
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    display: block;
    margin-bottom: 6px;
    font-style: italic;
    font-weight: 600;
}

.design-title-jp {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--color-primary-dark);
    letter-spacing: 0.05em;
}

.design-title-divider {
    width: 32px;
    height: 2px;
    background: var(--color-accent);
    display: block;
    border: none;
    border-radius: 2px;
}

/* ================================================
   7. MVV SECTION - Glass Cards
   ================================================ */
.mvv-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.mvv-background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-family: var(--font-english);
    font-size: 14vw;
    color: rgba(11, 37, 69, 0.025);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    font-weight: 700;
}

.mvv-intro {
    max-width: 780px;
    margin: 0 auto 90px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mvv-intro-lead {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    margin-bottom: 32px;
    line-height: 1.8;
    font-weight: 500;
    color: var(--color-text-heading);
}

.mvv-intro-text {
    font-size: 0.92rem;
    line-height: 2.2;
    color: var(--color-text-sub);
    text-align: justify;
    text-align-last: center;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.mvv-card {
    padding: 48px 32px;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(11, 37, 69, 0.1);
    background: var(--glass-bg-strong);
}

.mvv-number {
    display: block;
    font-family: var(--font-english);
    font-size: 2.4rem;
    color: var(--color-accent);
    opacity: 0.18;
    margin-bottom: 6px;
    font-weight: 300;
    font-style: italic;
}

.mvv-label {
    display: block;
    font-family: var(--font-english);
    color: var(--color-primary);
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    margin-bottom: 18px;
}

.mvv-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
    font-weight: 700;
}

.mvv-desc {
    font-size: 0.88rem;
    color: var(--color-text-sub);
    line-height: 1.9;
}

/* ================================================
   8. NEWS / INFO SECTION
   ================================================ */
.info-section {
    background: transparent;
}

.info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.view-all-link {
    font-size: 0.82rem;
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.view-all-link::after {
    content: '\2192';
    font-size: 1em;
    transition: transform 0.3s ease;
}

.view-all-link:hover {
    opacity: 1;
    color: var(--color-accent);
}

.view-all-link:hover::after {
    transform: translateX(3px);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.info-list li {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li:hover {
    background: rgba(11, 37, 69, 0.03);
}

.info-date {
    width: 100px;
    color: var(--color-text-light);
    font-family: var(--font-english);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    font-style: italic;
}

.info-cat {
    display: inline-block;
    font-size: 0.65rem;
    padding: 3px 10px;
    margin-right: 16px;
    min-width: 80px;
    text-align: center;
    border-radius: 20px;
    flex-shrink: 0;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.cat-default { background: rgba(11, 37, 69, 0.06); color: var(--color-text-sub); }
.cat-news { background: rgba(11, 37, 69, 0.1); color: var(--color-primary); }
.cat-event { background: rgba(180, 60, 100, 0.08); color: #a83460; }
.cat-report { background: rgba(40, 100, 180, 0.08); color: #2864a8; }
.cat-press { background: rgba(201, 168, 76, 0.12); color: #9a7a20; }
.cat-media { background: rgba(120, 60, 180, 0.08); color: #6e30a8; }

.info-title {
    flex-grow: 1;
    font-weight: 500;
    color: var(--color-text-main);
    transition: color 0.3s ease;
    font-size: 0.92rem;
}

.info-title a {
    color: inherit;
}

.info-list li:hover .info-title {
    color: var(--color-primary);
}

.info-list li::after {
    content: '\2192';
    color: var(--color-accent);
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
    margin-left: 12px;
    font-size: 0.85rem;
}

.info-list li:hover::after {
    opacity: 0.6;
    transform: translateX(0);
}

/* ================================================
   9. ACTIVITIES SHOWCASE - Glass
   ================================================ */
.activities-section {
    padding: 140px 0;
    position: relative;
}

.activity-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.activity-showcase-item {
    position: relative;
    overflow: visible;
    transition: transform 0.5s var(--ease-out-expo);
}

.activity-showcase-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.activity-showcase-item:hover {
    transform: translateY(-6px);
}

.activity-showcase-img {
    position: relative;
    height: 380px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 8px 28px rgba(11, 37, 69, 0.1);
}

.activity-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
    filter: brightness(0.92) saturate(1.05);
}

.activity-showcase-item:hover .activity-showcase-img img {
    transform: scale(1.05);
    filter: brightness(1) saturate(1.1);
}

.activity-cat-vertical {
    position: absolute;
    top: 14px;
    right: 14px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--font-english);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: var(--color-primary-dark);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 7px;
    z-index: 10;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.activity-showcase-content {
    position: relative;
    width: 86%;
    margin: -40px auto 0;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 24px 20px;
    z-index: 5;
    text-align: center;
    box-shadow: 0 8px 32px rgba(11, 37, 69, 0.06);
    transition: all 0.4s var(--ease-out-expo);
    border-radius: var(--radius-sm);
}

.activity-showcase-item:hover .activity-showcase-content {
    box-shadow: 0 12px 40px rgba(11, 37, 69, 0.1);
    background: rgba(255, 255, 255, 0.85);
}

.activity-showcase-content h3 {
    font-size: 1.15rem;
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    margin: 0 0 8px;
    font-weight: 700;
}

.activity-showcase-content p {
    font-size: 0.82rem;
    color: var(--color-text-sub);
    line-height: 1.8;
    margin-bottom: 14px;
}

.activity-showcase-more {
    display: inline-block;
    font-family: var(--font-english);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 4px;
}

.activity-showcase-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease-out-expo);
}

.activity-showcase-item:hover .activity-showcase-more {
    color: var(--color-accent);
}

.activity-showcase-item:hover .activity-showcase-more::after {
    width: 100%;
}

/* ================================================
   10. ACHIEVEMENTS - Glass Cards
   ================================================ */
.achievements-section {
    padding: var(--spacing-section) 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 56px;
    margin-bottom: 56px;
}

.achievement-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(11, 37, 69, 0.1);
}

.achievement-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.achievement-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.achievement-card:hover .achievement-img {
    transform: scale(1.04);
}

.achievement-status-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--color-primary-dark);
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 20px;
    font-family: var(--font-english);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.achievement-content {
    padding: 24px;
}

.achievement-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.achievement-jp-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-heading);
    font-family: var(--font-heading);
}

.achievement-icon {
    color: var(--color-text-light);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.achievement-en-title {
    display: block;
    font-family: var(--font-english);
    font-size: 0.72rem;
    color: var(--color-text-light);
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    text-transform: uppercase;
    font-style: italic;
}

.achievement-text {
    font-size: 0.88rem;
    color: var(--color-text-sub);
    line-height: 1.8;
    margin-bottom: 18px;
}

.achievement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.achievement-tag-item {
    background: rgba(11, 37, 69, 0.06);
    color: var(--color-text-sub);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 500;
}

/* Button Outline */
.btn-outline-navy {
    display: inline-block;
    padding: 13px 40px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    letter-spacing: 0.05em;
    border-radius: 40px;
}

.btn-outline-navy:hover {
    background: var(--color-primary);
    color: #fff;
    opacity: 1;
    box-shadow: 0 4px 16px rgba(11, 37, 69, 0.2);
}

/* ================================================
   11. SUPPORT SECTION - Glass
   ================================================ */
.top-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
}

.top-support-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 48px 36px;
    transition: all 0.4s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: var(--glass-shadow);
}

.top-support-card:hover {
    box-shadow: 0 16px 48px rgba(11, 37, 69, 0.1);
    transform: translateY(-4px);
    background: var(--glass-bg-strong);
}

.top-support-card h3 {
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    margin-bottom: 18px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.top-support-card p {
    color: var(--color-text-main);
    margin-bottom: 32px;
    font-size: 0.92rem;
    line-height: 2;
    opacity: 0.85;
}

.link-arrow {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: var(--font-heading);
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.link-arrow:hover {
    color: var(--color-accent);
    gap: 16px;
    opacity: 1;
    border-bottom-color: var(--color-accent);
}

/* ================================================
   12. DISCLOSURE SECTION - Glass
   ================================================ */
.top-disclosure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.top-disclosure-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 20px 22px;
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
}

.top-disclosure-link:hover {
    background: var(--glass-bg-strong);
    box-shadow: 0 6px 20px rgba(11, 37, 69, 0.06);
    transform: translateY(-2px);
    opacity: 1;
}

.top-disclosure-link::after {
    content: '\2192';
    font-family: var(--font-english);
    transition: transform 0.3s ease;
    color: var(--color-text-light);
}

.top-disclosure-link:hover::after {
    transform: translateX(3px);
    color: var(--color-accent);
}

/* ================================================
   13. FOOTER - Frosted Dark
   ================================================ */
footer {
    background:
        linear-gradient(135deg, rgba(11, 37, 69, 0.92), rgba(22, 61, 107, 0.88)),
        var(--color-primary);
    color: #fff;
    padding: 72px 0 36px;
    font-size: 0.9rem;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    margin-bottom: 6px;
    font-weight: 700;
}

.footer-brand-en {
    font-family: var(--font-english);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.12em;
    font-style: italic;
    display: block;
    margin-bottom: 16px;
}

.footer-address {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    font-style: normal;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--color-accent);
    opacity: 1;
}

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: var(--color-accent);
    opacity: 1;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.72rem;
    font-family: var(--font-english);
    letter-spacing: 0.08em;
}

.footer-privacy-link {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.72rem;
    font-family: var(--font-main);
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-privacy-link:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* ================================================
   14. PAGE HERO - Nature Gradient
   ================================================ */
.page-hero-wrapper.hero-geometric {
    position: relative;
    width: 100%;
    min-height: 340px;
    max-height: 500px;
    overflow: hidden;
    margin-bottom: 0;
    padding: 120px 0 60px;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(22, 61, 107, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(184, 150, 62, 0.08) 0%, transparent 50%),
        linear-gradient(160deg, #071a30 0%, #0b2545 50%, #0a1628 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.geo-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
    animation: floatShape 18s infinite alternate ease-in-out;
}

.shape-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(22, 61, 107, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -60px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: -6s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseShape 12s infinite alternate ease-in-out;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, 30px) scale(1.06); }
}

@keyframes pulseShape {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

.geo-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
}

.page-title-large {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-family: var(--font-english);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.95);
}

.page-subtitle-large {
    font-size: 0.95rem;
    font-family: var(--font-heading);
    letter-spacing: 0.3em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    display: inline-block;
}

.page-subtitle-large::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--color-accent);
    margin: 12px auto 0;
    opacity: 0.5;
}

/* ================================================
   15. BREADCRUMBS
   ================================================ */
.breadcrumb-area {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(11, 37, 69, 0.06);
    font-size: 0.8rem;
    color: var(--color-text-sub);
}

.breadcrumb-area .container {
    display: flex;
    align-items: center;
}

.breadcrumb-area a {
    color: var(--color-text-sub);
    transition: color 0.3s;
    font-family: var(--font-english);
    letter-spacing: 0.04em;
}

.breadcrumb-area a:hover {
    color: var(--color-primary);
    opacity: 1;
}

.breadcrumb-area .sep {
    margin: 0 8px;
    font-size: 0.6rem;
    color: var(--color-text-light);
}

/* ================================================
   16. PAGE CONTENT
   ================================================ */
.page-content {
    padding: 0 0 100px;
    position: relative;
    z-index: 10;
}

/* ================================================
   17. ABOUT PAGE
   ================================================ */
/* Philosophy - Cinematic Full Width */
.about-philosophy-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.about-philosophy-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-philosophy-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-philosophy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(7, 26, 48, 0.3) 0%,
        rgba(7, 26, 48, 0.75) 40%,
        rgba(7, 26, 48, 0.92) 100%
    );
}

/* MVV Item divider line */
.about-mvv-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-mvv-item:hover::after {
    opacity: 1;
}

/* Organization Table */
.about-org-table {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
}

.about-org-row {
    display: flex;
    align-items: baseline;
    border-bottom: 1px solid rgba(11, 37, 69, 0.08);
    transition: background 0.2s ease;
}

.about-org-row:first-child {
    border-top: 2px solid var(--color-primary);
}

.about-org-row:last-child {
    border-bottom: 1px solid rgba(11, 37, 69, 0.08);
}

.about-org-row:hover {
    background: rgba(11, 37, 69, 0.02);
}

.about-org-label {
    flex: 0 0 140px;
    padding: 20px 0 20px 4px;
    font-family: var(--font-english);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: transparent;
    border-right: none;
}

.about-org-value {
    flex: 1;
    padding: 20px 0;
    font-size: 0.92rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* Member Cards Grid */
.about-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.about-member-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 20px 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(11, 37, 69, 0.08);
}

.about-member-card--lead {
    background: var(--color-primary);
    border-color: var(--color-primary);
    grid-column: span 2;
}

.about-member-card--lead .about-member-role {
    color: var(--color-accent);
}

.about-member-card--lead .about-member-name {
    color: #fff;
    font-size: 1.15rem;
}

.about-member-bio {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-top: 10px;
    font-family: var(--font-main);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.about-member-role {
    display: block;
    font-size: 0.7rem;
    font-family: var(--font-heading);
    color: var(--color-accent);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.about-member-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.05em;
}

.about-member-group-label {
    grid-column: 1 / -1;
    font-family: var(--font-english);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    text-transform: uppercase;
    padding: 16px 0 4px;
    border-bottom: 1px solid var(--color-border-light);
    margin-bottom: 4px;
}

/* Partner Cards */
.about-partner-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 28px 24px;
    transition: all 0.3s ease;
    border-top: 2px solid var(--color-accent);
}

.about-partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(11, 37, 69, 0.08);
}

/* ================================================
   18. TIMELINE / PROJECTS PAGE
   ================================================ */
.timeline-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 56px;
}

.timeline-item {
    flex: 1;
    min-width: 240px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(11, 37, 69, 0.08);
}

.timeline-item::before { display: none; }

.timeline-year {
    display: block;
    font-family: var(--font-english);
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 10px;
    font-weight: 700;
    font-style: italic;
}

.timeline-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-weight: 700;
}

.timeline-item p {
    font-size: 0.85rem;
    color: var(--color-text-sub);
    line-height: 1.8;
}

/* Archive Grid */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.activity-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 0;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    overflow: hidden;
}

.activity-card-thumb {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.activity-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.activity-card:hover .activity-card-thumb img {
    transform: scale(1.05);
}

.activity-card-year {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--color-text-sub);
    font-family: var(--font-english);
    font-style: italic;
}

.activity-card h4,
.activity-card p,
.activity-card-year {
    padding-left: 24px;
    padding-right: 24px;
}

.activity-card-year {
    padding-top: 16px;
}

.activity-card:hover {
    box-shadow: 0 8px 24px rgba(11, 37, 69, 0.08);
    transform: translateY(-3px);
}

.activity-card h4 {
    margin: 6px 0 10px;
    font-size: 1rem;
    color: var(--color-text-heading);
    font-weight: 700;
}

.activity-card p {
    font-size: 0.82rem;
    color: var(--color-text-sub);
    margin: 0;
    line-height: 1.7;
    padding-bottom: 24px;
}

/* ================================================
   19. SUPPORT PAGE
   ================================================ */
.support-hero-image {
    max-width: 800px;
    margin: 0 auto 48px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.support-hero-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* ================================================
   19b. SUPPORT PAGE BUTTONS
   ================================================ */
.btn-donate {
    display: inline-block;
    padding: 13px 24px;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-xs);
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.92rem;
    box-shadow: 0 2px 8px rgba(11, 37, 69, 0.15);
}

.btn-donate:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(11, 37, 69, 0.2);
}

.btn-donate.monthly {
    background: var(--color-accent-warm);
}

.btn-donate.monthly:hover {
    background: #d4b555;
}

.btn-donate-custom {
    display: block;
    padding: 10px 16px;
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary);
    background: transparent;
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-xs);
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.03em;
}

.btn-donate-custom:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(184, 150, 62, 0.04);
}

/* ================================================
   19.5 SUPPORT PAGE - BRIGHT REDESIGN
   ================================================ */

/* Lead Section - bright version without dark overlay */
.support-lead-section {
    padding: 80px 0 60px;
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(255, 253, 248, 0.6) 0%,
        rgba(250, 249, 247, 0) 100%
    );
}

.support-lead-section::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--color-accent));
}

.support-lead-inner {
    max-width: 640px;
    margin: 0 auto;
}

/* Impact Cards */
.support-impact-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow:
        0 4px 24px rgba(11, 37, 69, 0.05),
        0 1px 3px rgba(11, 37, 69, 0.04);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.support-impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-warm), rgba(184, 150, 62, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.support-impact-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px rgba(11, 37, 69, 0.08),
        0 2px 6px rgba(11, 37, 69, 0.04);
}

.support-impact-card:hover::before {
    opacity: 1;
}

.support-impact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #faf6eb 0%, #f2e9c8 100%);
    color: var(--color-accent);
}

/* Highlight Banner */
.support-highlight-banner {
    padding: 0;
    margin: 0;
}

.support-highlight-inner {
    background: linear-gradient(
        135deg,
        #0b2545 0%,
        #163d6b 60%,
        #1a4a7a 100%
    );
    border-radius: var(--radius);
    padding: 48px 48px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.support-highlight-inner h3,
.support-highlight-inner p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.support-highlight-inner h3 {
    color: #fff !important;
}

.support-highlight-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 150, 62, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.support-highlight-inner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Bright Support Cards */
.support-card-bright {
    position: relative;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow:
        0 4px 24px rgba(11, 37, 69, 0.06),
        0 1px 3px rgba(11, 37, 69, 0.03);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease-out-expo);
}

.support-card-bright:hover {
    box-shadow:
        0 8px 40px rgba(11, 37, 69, 0.1),
        0 2px 8px rgba(11, 37, 69, 0.05);
    transform: translateY(-2px);
}

.support-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.support-card-accent.accent-gold {
    background: linear-gradient(90deg, #9a7d34, #c9a84c, #e5d49a);
}

.support-card-accent.accent-navy {
    background: linear-gradient(90deg, #071a30, #0b2545, #163d6b);
}

.support-option-box {
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(250, 246, 235, 0.7) 0%, rgba(242, 233, 200, 0.3) 100%);
    border: 1px solid rgba(184, 150, 62, 0.12);
    padding: 20px;
}

/* Activities Section */
.support-activities-section {
    padding: 80px 0;
    background: linear-gradient(
        180deg,
        rgba(250, 249, 247, 0) 0%,
        rgba(255, 253, 248, 0.5) 50%,
        rgba(250, 249, 247, 0) 100%
    );
}

.support-activity-item {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-activity-item:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 37, 69, 0.06);
}

.support-activity-num {
    font-family: var(--font-english);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--color-accent);
    line-height: 1;
    letter-spacing: 0.05em;
}

/* Bank Transfer Card */
.support-bank-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius);
    padding: 48px 40px;
    box-shadow:
        0 4px 24px rgba(11, 37, 69, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Donation Hero */
.donation-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--header-height);
}

.donation-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.donation-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(7, 26, 48, 0.3) 0%,
        rgba(7, 26, 48, 0.5) 100%
    );
}

/* Donation Tab Switcher */
.donate-tabs {
    display: flex;
    gap: 4px;
    background: rgba(11, 37, 69, 0.06);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 32px;
}

.donate-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--color-text-sub);
    cursor: pointer;
    transition: all 0.35s var(--ease-out-expo);
}

.donate-tab:hover {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.4);
}

.donate-tab.active {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    box-shadow: 0 2px 12px rgba(11, 37, 69, 0.08);
}

.donate-tab svg {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.donate-tab.active svg {
    opacity: 1;
    stroke: var(--color-accent);
}

/* Donation Panels */
.donate-panel {
    display: none;
}

.donate-panel.active {
    display: block;
    animation: panelFadeIn 0.4s var(--ease-out-expo);
}

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

/* Bank Info Table */
.bank-info-table {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(11, 37, 69, 0.08);
}

.bank-info-row {
    display: flex;
    border-bottom: 1px solid rgba(11, 37, 69, 0.06);
}

.bank-info-row:last-child {
    border-bottom: none;
}

.bank-info-label {
    flex: 0 0 120px;
    padding: 14px 16px;
    background: rgba(11, 37, 69, 0.03);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-primary);
}

.bank-info-value {
    flex: 1;
    padding: 14px 16px;
    font-size: 0.88rem;
    color: var(--color-text-main);
}

/* Tax Deduction Section */
.support-deduction-section {
    padding: 80px 0;
    background: linear-gradient(
        180deg,
        rgba(250, 246, 235, 0.5) 0%,
        rgba(238, 241, 245, 0) 100%
    );
}

.deduction-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 24px rgba(11, 37, 69, 0.05);
}

.deduction-card-header {
    padding: 20px 28px;
    color: #fff !important;
}

.deduction-card-header * {
    color: inherit !important;
}

.deduction-card-header span[class*="tw-uppercase"] {
    opacity: 0.8;
}

.deduction-card-header.individual {
    background: linear-gradient(135deg, #b8963e, #c9a84c);
}

.deduction-card-header.corporate {
    background: linear-gradient(135deg, #0b2545, #163d6b);
}

.deduction-card-body {
    padding: 28px;
}

.deduction-method {
    position: relative;
    padding: 16px;
    border-radius: var(--radius-xs);
    background: rgba(238, 241, 245, 0.5);
    border: 1px solid rgba(11, 37, 69, 0.06);
}

.deduction-method-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.deduction-method-badge.recommend {
    background: linear-gradient(135deg, #b8963e, #c9a84c);
    color: #fff;
}

.deduction-formula {
    font-family: var(--font-main);
    font-size: 0.82rem;
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(11, 37, 69, 0.08);
    border-radius: var(--radius-xs);
    padding: 12px 16px;
    text-align: center;
    letter-spacing: 0.02em;
}

.deduction-example {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-xs);
    background: linear-gradient(135deg, rgba(250, 246, 235, 0.8), rgba(242, 233, 200, 0.4));
    border: 1px solid rgba(184, 150, 62, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .donation-hero {
        min-height: 260px;
    }
    .support-lead-section {
        padding: 60px 0 40px;
    }
    .support-highlight-inner {
        padding: 32px 24px;
    }
    .support-card-bright {
        padding: 28px 24px;
    }
    .support-bank-card {
        padding: 32px 24px;
    }
    .donate-tabs {
        flex-direction: column;
    }
    .bank-info-row {
        flex-direction: column;
    }
    .bank-info-label {
        flex: none;
        border-bottom: 1px solid rgba(11, 37, 69, 0.04);
    }
    .deduction-card-body {
        padding: 20px;
    }
}

/* ================================================
   20. DISCLOSURE PAGE
   ================================================ */
.disclosure-wrap {
    padding: 60px 0 80px;
}

/* リード文 */
.disclosure-lead {
    text-align: center;
    margin-bottom: 56px;
    padding: 28px 32px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}
.disclosure-lead p {
    font-size: 0.875rem;
    line-height: 2;
    color: var(--color-text-sub);
    margin: 0;
}

/* セクション共通 */
.disclosure-section {
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--color-border-light);
}
.disclosure-section:last-of-type {
    border-bottom: none;
}

/* セクションヘッダ */
.disclosure-section-head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(184, 150, 62, 0.2);
}
.disclosure-en {
    font-family: var(--font-english);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    white-space: nowrap;
}
.disclosure-h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin: 0;
}

/* 説明文 */
.disclosure-note {
    font-size: 0.8125rem;
    line-height: 1.9;
    color: var(--color-text-sub);
    margin-bottom: 16px;
}

/* ドキュメント行 */
.disclosure-doc-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    margin-bottom: 8px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.25s ease;
}
.disclosure-doc-row--link {
    color: var(--color-text-heading);
    cursor: pointer;
}
.disclosure-doc-row--link:hover {
    background: var(--glass-bg-strong);
    box-shadow: 0 4px 16px rgba(11, 37, 69, 0.08);
    transform: translateX(4px);
    opacity: 1;
    color: var(--color-text-heading);
}
.disclosure-doc-row--pending {
    opacity: 0.6;
    cursor: default;
}
.disclosure-doc-icon {
    color: var(--color-accent);
    flex-shrink: 0;
    display: flex;
}
.disclosure-doc-label {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-heading);
}
.disclosure-doc-badge {
    font-size: 0.6rem;
    font-family: var(--font-english);
    letter-spacing: 0.08em;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 40px;
    flex-shrink: 0;
}
.disclosure-doc-badge--pdf {
    background: var(--color-primary);
    color: #fff;
}
.disclosure-doc-badge--pending {
    background: rgba(11, 37, 69, 0.12);
    color: var(--color-text-sub);
}
.disclosure-doc-arrow {
    color: var(--color-text-light);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.disclosure-doc-row--link:hover .disclosure-doc-arrow {
    transform: translateX(3px);
    color: var(--color-accent);
}

/* 定款 大きいPDFボタン */
.disclosure-pdf-feature {
    margin-top: 8px;
}
.disclosure-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}
.disclosure-pdf-btn:hover {
    background: var(--color-primary-light);
    box-shadow: 0 8px 24px rgba(11, 37, 69, 0.25);
    transform: translateY(-2px);
    opacity: 1;
    color: #fff;
}
.disclosure-pdf-btn--pending {
    background: rgba(11, 37, 69, 0.15);
    opacity: 0.65;
}
.disclosure-pdf-btn-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.disclosure-pdf-btn-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}
.disclosure-pdf-btn-sub {
    font-size: 0.75rem;
    opacity: 0.8;
    letter-spacing: 0.05em;
}
.disclosure-badge-pending {
    font-size: 0.65rem;
    background: rgba(255,255,255,0.25);
    padding: 3px 10px;
    border-radius: 40px;
    letter-spacing: 0.05em;
}

/* 事業報告書 テーブル */
.disclosure-table-wrap {
    overflow-x: auto;
    margin-top: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}
.disclosure-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
    min-width: 600px;
}
.disclosure-table thead th {
    background: var(--color-primary);
    color: #fff;
    padding: 12px 10px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.disclosure-table thead th:last-child { border-right: none; }
.disclosure-th-year {
    text-align: left !important;
    padding-left: 20px !important;
    width: 110px;
}
.disclosure-table tbody tr {
    border-bottom: 1px solid var(--color-border-light);
    transition: background 0.2s ease;
}
.disclosure-table tbody tr:last-child { border-bottom: none; }
.disclosure-table tbody tr:hover { background: rgba(255,255,255,0.5); }
.disclosure-table tbody td {
    padding: 13px 10px;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid var(--color-border-light);
}
.disclosure-table tbody td:last-child { border-right: none; }
.disclosure-td-year {
    text-align: left !important;
    padding-left: 20px !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-text-heading);
    white-space: nowrap;
}
.disclosure-table-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(11, 37, 69, 0.06);
    transition: all 0.2s ease;
}
.disclosure-table-link:hover {
    background: var(--color-primary);
    color: #fff;
    opacity: 1;
}
.disclosure-table-pending {
    color: var(--color-text-light);
    font-size: 0.85rem;
}
.disclosure-table-note {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--color-text-sub);
    line-height: 1.9;
}

/* お問い合わせ */
.disclosure-contact {
    margin-top: 60px;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    text-align: center;
}
.disclosure-contact p {
    font-size: 0.875rem;
    color: var(--color-text-sub);
    margin-bottom: 20px;
    line-height: 2;
}
.disclosure-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
}
.disclosure-contact-btn:hover {
    background: var(--color-primary-light);
    box-shadow: 0 6px 20px rgba(11, 37, 69, 0.2);
    transform: translateY(-2px);
    opacity: 1;
    color: #fff;
}

/* モバイル対応 */
@media (max-width: 640px) {
    .disclosure-section-head {
        flex-direction: column;
        gap: 4px;
    }
    .disclosure-pdf-btn {
        width: 100%;
    }
    .disclosure-contact {
        padding: 28px 20px;
    }
}

/* ================================================
   21. CONTACT PAGE - Split Glass
   ================================================ */
.contact-section {
    padding: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 680px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(11, 37, 69, 0.08);
    border: 1px solid var(--glass-border);
    margin: 40px 0;
}

.contact-info-col {
    background:
        linear-gradient(160deg, rgba(7, 26, 48, 0.95), rgba(11, 37, 69, 0.95)),
        var(--color-primary);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-info-col::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(22, 61, 107, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-col::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-inner {
    padding: 56px 36px;
    position: relative;
    z-index: 1;
}

.contact-info-label {
    font-family: var(--font-english);
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    margin-bottom: 18px;
    font-weight: 600;
    font-style: italic;
}

.contact-info-heading {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-text {
    font-size: 0.85rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 40px;
}

.contact-info-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-accent);
}

.contact-info-item-label {
    display: block;
    font-family: var(--font-english);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-info-item-value {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-form-col {
    padding: 56px 48px;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

/* Chronos Contact Form */
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cf-field {
    margin-bottom: 22px;
}

.cf-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text-heading);
}

.cf-required {
    font-size: 0.58rem;
    font-weight: 700;
    color: #fff;
    background: var(--color-accent);
    padding: 2px 5px;
    border-radius: 3px;
    letter-spacing: 0.06em;
}

.cf-input,
.cf-select,
.cf-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xs);
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--color-text-main);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.cf-input:focus, .cf-select:focus, .cf-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(22, 61, 107, 0.08);
    background: rgba(255, 255, 255, 0.8);
}

.cf-input::placeholder, .cf-textarea::placeholder {
    color: var(--color-text-light);
}

.cf-select-wrapper {
    position: relative;
}

.cf-select-wrapper::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--color-text-sub);
    pointer-events: none;
}

.cf-select { cursor: pointer; padding-right: 36px; }

.cf-textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.8;
}

.cf-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--color-text-main);
    user-select: none;
}

.cf-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cf-checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.5);
}

.cf-checkbox:checked + .cf-checkbox-custom {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.cf-checkbox:checked + .cf-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cf-checkbox-text a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cf-submit-area {
    margin-top: 8px;
}

.cf-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(11, 37, 69, 0.15);
    font-family: inherit;
}

.cf-submit-btn:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(11, 37, 69, 0.2);
    gap: 12px;
}

.cf-submit-btn svg { transition: transform 0.3s ease; }
.cf-submit-btn:hover svg { transform: translateX(3px); }

/* CF7 Override */
.contact-form-col .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xs);
    font-family: inherit;
    font-size: 0.88rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.contact-form-col .wpcf7-form-control:not(.wpcf7-submit):focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(22, 61, 107, 0.08);
}

.contact-form-col .wpcf7-form-control.wpcf7-submit {
    padding: 14px 40px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(11, 37, 69, 0.15);
    font-family: inherit;
    margin-top: 12px;
}

.contact-form-col .wpcf7-form-control.wpcf7-submit:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
}

/* ================================================
   22. SUB PAGE ELEMENTS
   ================================================ */
.section-title {
    font-size: 1.8rem;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 14px;
    display: inline-block;
    font-family: var(--font-english);
    font-style: italic;
    margin-bottom: 18px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
}

.section-lead {
    font-size: 0.92rem;
    line-height: 2.2;
    color: var(--color-text-sub);
    margin-top: 18px;
}

.btn-link {
    display: inline-block;
    margin-top: 14px;
    font-weight: 600;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 3px;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    color: var(--color-primary);
}

.btn-link:hover {
    border-bottom-color: var(--color-accent);
    color: var(--color-accent);
    opacity: 1;
}

/* ================================================
   23. ACTIVITIES PAGE
   ================================================ */
/* Lead Section */
.act-lead-section {
    padding: 80px 0 20px;
}

.act-lead {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 64px;
}

.act-lead-en {
    font-family: var(--font-english);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 16px;
}

.act-lead-heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-text-heading);
    line-height: 1.6;
    margin: 0;
}

.act-lead-right {
    padding-top: 8px;
}

.act-lead-text {
    font-size: 0.92rem;
    line-height: 2.1;
    color: var(--color-text-sub);
    margin: 0 0 16px;
}

.act-lead-text:last-child {
    margin-bottom: 0;
}

.act-lead-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* 3 Pillars Bar */
.act-lead-pillars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px 48px;
    box-shadow: var(--glass-shadow);
}

.act-lead-pillar {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.act-lead-pillar-num {
    font-family: var(--font-english);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-accent);
}

.act-lead-pillar-label {
    font-family: var(--font-english);
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    color: var(--color-text-heading);
    letter-spacing: 0.02em;
}

.act-lead-pillar-jp {
    font-size: 0.75rem;
    color: var(--color-text-sub);
    letter-spacing: 0.08em;
}

.act-lead-pillar-divider {
    width: 1px;
    height: 48px;
    background: var(--color-border);
    flex-shrink: 0;
}

.act-section {
    padding: 40px 0;
}

.act-section:first-of-type {
    padding-top: 20px;
}

.act-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.act-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(11, 37, 69, 0.12);
}

.act-card--reverse {
    direction: rtl;
}

.act-card--reverse > * {
    direction: ltr;
}

.act-card-image {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.act-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.act-card:hover .act-card-image img {
    transform: scale(1.04);
}

.act-card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-english);
    font-size: 3.5rem;
    font-weight: 600;
    font-style: italic;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
    pointer-events: none;
}

.act-card--reverse .act-card-number {
    left: auto;
    right: 20px;
}

.act-card-body {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.act-card-header {
    margin-bottom: 28px;
}

.act-card-en {
    font-family: var(--font-english);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 8px;
}

.act-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin: 0;
    line-height: 1.5;
}

.act-card-detail {
    margin-bottom: 20px;
}

.act-card-detail:last-of-type {
    margin-bottom: 28px;
}

.act-card-sub {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 6px;
    font-family: var(--font-main);
}

.act-card-detail p {
    font-size: 0.88rem;
    line-height: 1.9;
    color: var(--color-text-sub);
    margin: 0;
}

.act-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.act-card-list li {
    font-size: 0.88rem;
    color: var(--color-text-sub);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.act-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
}

.act-card-list li strong {
    color: var(--color-text-main);
}

.act-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.act-card-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease-out-expo);
}

.act-card-link:hover {
    color: var(--color-accent);
    opacity: 1;
}

.act-card-link:hover::after {
    width: calc(100% - 24px);
}

.act-card-link svg {
    transition: transform 0.3s ease;
}

.act-card-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .act-card-body { padding: 36px 28px; }
    .act-card-title { font-size: 1.25rem; }
}

@media (max-width: 1024px) {
    .act-lead { grid-template-columns: 1fr; gap: 32px; }
    .act-lead-pillars { padding: 28px 32px; }
}

@media (max-width: 768px) {
    .act-lead-section { padding: 48px 0 10px; }
    .act-lead { gap: 20px; margin-bottom: 40px; }
    .act-lead-heading { font-size: 1.4rem; }
    .act-lead-pillars {
        flex-direction: column;
        padding: 28px 24px;
        gap: 20px;
    }
    .act-lead-pillar-divider {
        width: 40px;
        height: 1px;
    }
    .act-card {
        grid-template-columns: 1fr;
    }
    .act-card--reverse {
        direction: ltr;
    }
    .act-card-image {
        min-height: 240px;
        max-height: 280px;
    }
    .act-card-body {
        padding: 32px 24px;
    }
    .act-card-number {
        font-size: 2.5rem;
    }
    .act-section {
        padding: 20px 0;
    }
}

/* ================================================
   24. NEWS ARCHIVE / SINGLE
   ================================================ */
.news-item-row {
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
    transition: background 0.2s ease;
}

.news-item-row:hover { background: rgba(11, 37, 69, 0.02); }

.news-item-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.85rem;
}

.news-date {
    font-family: var(--font-english);
    color: var(--color-text-light);
    font-style: italic;
}

.news-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.news-title a {
    color: var(--color-primary);
    transition: color 0.2s ease;
}

.news-title a:hover { color: var(--color-accent); opacity: 1; }

.news-cat {
    display: inline-block;
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .news-item-inner { flex-direction: row; align-items: center; }
    .news-meta { min-width: 190px; flex-shrink: 0; }
}

/* News Pagination */
.navigation.pagination {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.navigation.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.navigation.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-family: var(--font-english);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-sub);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--color-border);
    text-decoration: none;
    transition: all 0.3s ease;
}

.navigation.pagination .page-numbers:hover {
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--color-accent);
}

.navigation.pagination .page-numbers.current {
    color: #fff;
    background: var(--color-primary);
    border-color: var(--color-primary);
    font-weight: 700;
}

.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next {
    width: auto;
    padding: 0 16px;
    font-size: 1rem;
}

.navigation.pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: var(--color-text-light);
    pointer-events: none;
}

/* News Single */
.news-single-container {
    max-width: 800px;
}

.news-single-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.news-single-meta .info-date {
    font-family: var(--font-english);
    color: var(--color-text-light);
}

.news-single-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-primary);
    margin: 0 0 40px;
}

.entry-header {
    margin-bottom: 32px;
}

.entry-content {
    line-height: 2;
    color: var(--color-text-main);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--color-border);
    margin-top: 56px;
    padding-top: 28px;
}

.post-navigation a {
    color: var(--color-primary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.post-navigation a:hover {
    color: var(--color-accent);
    opacity: 1;
}

/* ================================================
   25. RESPONSIVE - TABLET
   ================================================ */
@media screen and (max-width: 1024px) {
    :root { --spacing-section: 80px; }

    .achievements-grid { gap: 20px; }

    .activity-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .contact-wrapper { grid-template-columns: 320px 1fr; }
    .contact-form-col { padding: 40px 32px; }
}

/* ================================================
   25. RESPONSIVE - MOBILE
   ================================================ */
@media screen and (max-width: 768px) {
    :root {
        --spacing-section: 56px;
        --header-height: 56px;
        --radius: 14px;
    }

    .container { padding: 0 20px; }
    .page-content { padding-bottom: 64px; }

    /* Hide scrollbar on mobile */
    html, body { scrollbar-width: none; }
    html::-webkit-scrollbar, body::-webkit-scrollbar { display: none; }

    /* Prevent any horizontal overflow on mobile */
    html, body {
        overflow-x: clip;
        width: 100%;
        max-width: 100%;
    }

    /* Header Mobile */
    #site-header {
        top: 8px;
        width: calc(100% - 20px);
        border-radius: 14px;
    }

    .header-inner { padding: 0 18px; }

    .menu-toggle { display: flex; }

    #site-header .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(240, 245, 241, 0.96);
        backdrop-filter: saturate(180%) blur(32px);
        -webkit-backdrop-filter: saturate(180%) blur(32px);
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.5s var(--ease-out-expo), visibility 0s 0.5s;
        z-index: 9999;
        padding: 40px;
        gap: 0;
    }

    #site-header .nav-links.active {
        transform: translateX(0) !important;
        visibility: visible !important;
        transition: transform 0.5s var(--ease-out-expo), visibility 0s 0s;
    }

    #site-header .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(14px);
        transition: all 0.4s ease;
    }

    #site-header .nav-links.active li { opacity: 1; transform: translateY(0); }
    #site-header .nav-links.active li:nth-child(1) { transition-delay: 0.08s; }
    #site-header .nav-links.active li:nth-child(2) { transition-delay: 0.12s; }
    #site-header .nav-links.active li:nth-child(3) { transition-delay: 0.16s; }
    #site-header .nav-links.active li:nth-child(4) { transition-delay: 0.2s; }
    #site-header .nav-links.active li:nth-child(5) { transition-delay: 0.24s; }
    #site-header .nav-links.active li:nth-child(6) { transition-delay: 0.28s; }

    #site-header .nav-links li a {
        font-size: 1.05rem;
        padding: 16px 0;
        display: block;
        color: var(--color-primary-dark);
        border-radius: 0;
    }

    #site-header .nav-links li a:hover { color: var(--color-accent); background: transparent; }

    .menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    body.menu-open { overflow: hidden; }

    .logo a { font-size: 0.9rem; }

    /* Hero Mobile */
    .hero { min-height: 480px; margin-top: -80px; }
    .hero-content { padding: 0 20px; }
    .hero-title-en { font-size: 1.9rem; }
    .hero-title-jp { font-size: 0.95rem; letter-spacing: 0.12em; }
    .hero-desc { font-size: 0.82rem; }

    /* MVV Mobile */
    .mvv-section { padding: 72px 0; }
    .mvv-grid { grid-template-columns: 1fr; gap: 16px; }
    .mvv-card { padding: 32px 24px; }
    .mvv-intro { margin-bottom: 40px; }
    .mvv-intro-lead { font-size: 1.25rem; }
    .mvv-intro-text { text-align: left; text-align-last: left; }

    /* News Mobile */
    .info-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .info-list li { flex-direction: column; align-items: flex-start; padding: 14px 18px; }
    .info-cat { order: -1; margin-right: 0; margin-bottom: 4px; min-width: auto; }
    .info-date { width: auto; margin-bottom: 4px; }
    .info-title { width: 100%; font-size: 0.88rem; }

    /* Showcase Mobile */
    .activity-showcase-grid { grid-template-columns: 1fr; gap: 36px; }
    .activity-showcase-img { height: 300px; }
    .activity-showcase-content { width: 92%; margin-top: -32px; }

    /* Achievements Mobile */
    .achievements-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Support Mobile */
    .top-support-grid { grid-template-columns: 1fr; gap: 20px; }
    .top-support-card { padding: 32px 24px; }

    /* Disclosure Mobile */
    .top-disclosure-grid { grid-template-columns: 1fr; }

    /* Page Hero Mobile */
    .page-hero-wrapper.hero-geometric { min-height: auto; padding: 88px 0 40px; }
    .page-title-large { font-size: 1.8rem; letter-spacing: 0.08em; }
    .shape-1, .shape-2, .shape-3 { opacity: 0.35; }
    .shape-1 { width: 250px; height: 250px; }
    .shape-2 { width: 250px; height: 250px; }
    .shape-3 { width: 160px; height: 160px; }

    /* About Mobile */
    .about-philosophy-section { min-height: auto; padding: 80px 0; }
    .about-philosophy-overlay {
        background: linear-gradient(180deg, rgba(7,26,48,0.5) 0%, rgba(7,26,48,0.9) 100%) !important;
    }
    .about-org-label { flex: 0 0 100px; padding: 14px 16px; font-size: 0.8rem; }
    .about-org-value { padding: 14px 16px; font-size: 0.85rem; }
    .about-members-grid { grid-template-columns: repeat(2, 1fr); }
    .about-member-card--lead { grid-column: span 2; }

    .flex { flex-direction: column; gap: 20px; }
    .partner-list li { flex-direction: column; align-items: flex-start; }
    .partner-cat { margin-bottom: 3px; }

    /* Contact Mobile */
    .contact-wrapper { grid-template-columns: 1fr; margin: 20px 0; }
    .contact-info-inner { padding: 36px 24px; }
    .contact-info-heading { font-size: 1.3rem; }
    .contact-info-text { margin-bottom: 28px; }
    .contact-form-col { padding: 32px 20px; }
    .cf-row { grid-template-columns: 1fr; gap: 0; }
    .cf-submit-btn { width: 100%; justify-content: center; }

    /* Footer Mobile */
    .footer-main { flex-direction: column; gap: 24px; }
    .footer-nav { gap: 14px; }
}

/* ================================================
   26. SUB-ACTIVITY PAGES
   ================================================ */
.subpage-lead {
    max-width: 800px;
    margin: 0 auto 56px;
    padding-top: 16px;
}

.subpage-back {
    margin-top: 60px;
    text-align: center;
}
.subpage-flex {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    align-items: center;
}
.subpage-flex.reverse {
    flex-direction: row-reverse;
}
.subpage-text {
    flex: 1;
    min-width: 300px;
}
.subpage-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--radius);
    overflow: hidden;
}
.subpage-image img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
}
.subpage-image-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    color: var(--color-text-sub);
}
.subpage-image-placeholder .placeholder-icon {
    font-size: 4rem;
    opacity: 0.4;
}
.subpage-image-placeholder p {
    margin-top: 16px;
    opacity: 0.5;
    font-family: var(--font-english);
}
.subpage-heading {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 700;
}
.subpage-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.subpage-card-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 700;
}
.subpage-card-subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-sub);
}
.subpage-card-role {
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
    font-size: 0.95rem;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11,37,69,0.2);
}

@media (max-width: 768px) {
    .subpage-flex,
    .subpage-flex.reverse { flex-direction: column; gap: 24px; }
    .subpage-card-grid { grid-template-columns: 1fr; }
    .subpage-heading { font-size: 1.3rem; }
    .subpage-back { margin-top: 40px; }
}

/* ================================================
   27. FRONT PAGE v7 — Editorial Redesign
   ================================================ */

/* -- Common Elements -- */
.fp-label-en {
    font-family: var(--font-english);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 8px;
}

.fp-section-header {
    margin-bottom: 60px;
}

.fp-section-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    letter-spacing: 0.08em;
}

.fp-section-header--light .fp-section-title {
    color: #fff;
}

.fp-section-header--light .fp-label-en {
    color: var(--color-accent-warm);
}

.fp-title-line {
    width: 40px;
    height: 1px;
    background: var(--color-accent);
    margin-top: 16px;
}

.fp-text-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-primary);
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s var(--ease-out-expo);
    border-bottom: 1px solid transparent;
}

.fp-text-link:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.fp-text-link span {
    transition: transform 0.3s var(--ease-out-expo);
}

.fp-text-link:hover span {
    transform: translateX(4px);
}

/* -- INTRO — 財団紹介セクション -- */
.fp-intro {
    padding: 100px 0 80px;
    text-align: center;
}

.fp-intro-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.12em;
    margin: 0 0 28px;
    line-height: 1.6;
}

.fp-intro-text {
    font-size: 0.95rem;
    line-height: 2.4;
    color: var(--color-text-sub);
    max-width: 720px;
    margin: 0 auto;
    letter-spacing: 0.03em;
}

.pc-only {
    display: inline;
}

@media screen and (max-width: 768px) {
    .fp-intro { padding: 64px 0 48px; }
    .fp-intro-heading { font-size: 1.5rem; letter-spacing: 0.08em; }
    .fp-intro-text { font-size: 0.85rem; line-height: 2.2; }
    .pc-only { display: none; }
}

/* -- HERO -- */
.fp-hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: -100px;
    padding-top: 60px;
}

.fp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.fp-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 30s infinite alternate;
}

.fp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(7, 26, 48, 0.2) 0%, rgba(7, 26, 48, 0.45) 70%),
        linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(7,26,48,0.55) 100%);
}

.fp-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 40px;
}

/* Hero content should be visible immediately, not wait for scroll */
.fp-hero .fade-in-up {
    opacity: 1;
    transform: translateY(0);
    animation: heroFadeIn 1.2s var(--ease-out-expo) both;
}

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

.fp-hero-badge {
    display: inline-block;
    margin-bottom: 32px;
}

.fp-hero-badge span {
    font-family: var(--font-english);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent-warm);
    padding: 8px 24px;
    border: 1px solid rgba(184, 150, 62, 0.4);
    border-radius: 40px;
}

.fp-hero-title {
    font-family: var(--font-english);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 600;
    font-style: italic;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
}

.fp-hero-divider {
    width: 48px;
    height: 1px;
    background: var(--color-accent);
    margin: 28px auto;
}

.fp-hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.25em;
    margin: 0 0 12px;
    font-weight: 400;
}

.fp-hero-org {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.15em;
    margin: 0;
}

.fp-hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 60px 40px;
}

.fp-hero-cta-row {
    display: flex;
    gap: 32px;
}

.fp-hero-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
}

.fp-hero-link:hover { color: #fff; opacity: 1; }

.fp-hero-link-label {
    font-family: var(--font-english);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-accent-warm);
}

.fp-hero-link-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 4px;
}

.fp-hero-link-text::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--color-accent);
    transition: width 0.5s var(--ease-out-expo);
}

.fp-hero-link:hover .fp-hero-link-text::after {
    width: 100%;
}

.fp-hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.fp-hero-scroll span {
    font-family: var(--font-english);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.95);
}

.fp-hero-scroll-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.15));
    animation: scrollLine 2s infinite;
}

/* -- MISSION -- */
.fp-mission {
    padding: 0 0 120px;
}

.fp-mission-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 80px;
    max-width: 960px;
    margin: 0 auto 80px;
}

.fp-mission-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fp-label-num {
    font-family: var(--font-english);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(11, 37, 69, 0.06);
    line-height: 1;
    margin-top: 8px;
}

.fp-mission-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.7;
    color: var(--color-primary);
    margin: 0 0 28px;
    letter-spacing: 0.06em;
}

.fp-mission-text {
    font-size: 0.9rem;
    line-height: 2.2;
    color: var(--color-text-main);
    margin: 0 0 32px;
}

.fp-mission-image {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 80px;
    overflow: hidden;
    border-radius: 4px;
}

.fp-mission-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* MVV Row */
.fp-mvv-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid var(--color-border);
}

.fp-mvv-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 32px 28px;
    border-right: 1px solid var(--color-border);
    transition: background 0.3s ease;
}

.fp-mvv-item:last-child {
    border-right: none;
}

.fp-mvv-item:hover {
    background: rgba(255, 253, 248, 0.6);
}

.fp-mvv-num {
    font-family: var(--font-english);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    line-height: 1;
    flex-shrink: 0;
}

.fp-mvv-label {
    font-family: var(--font-english);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.fp-mvv-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.6;
}

/* -- ACTIVITIES -- */
.fp-activities {
    padding: 120px 0;
    background: rgba(11, 37, 69, 0.02);
}

.fp-activity-list {
    max-width: 1400px;
    margin: 0 auto;
}

.fp-activity-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.fp-activity-row:hover {
    color: inherit;
    opacity: 1;
}

.fp-activity-row--reverse {
    direction: rtl;
}

.fp-activity-row--reverse > * {
    direction: ltr;
}

.fp-activity-img {
    overflow: hidden;
    position: relative;
}

.fp-activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out-expo);
}

.fp-activity-row:hover .fp-activity-img img {
    transform: scale(1.05);
}

.fp-activity-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: #fff;
    position: relative;
}

.fp-activity-row--reverse .fp-activity-info {
    background: rgba(250, 249, 245, 0.8);
}

.fp-activity-num {
    font-family: var(--font-english);
    font-size: 3.5rem;
    font-weight: 200;
    color: rgba(11, 37, 69, 0.05);
    line-height: 1;
    margin-bottom: 8px;
}

.fp-activity-cat {
    font-family: var(--font-english);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.fp-activity-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 16px;
    letter-spacing: 0.08em;
}

.fp-activity-desc {
    font-size: 0.85rem;
    line-height: 2;
    color: var(--color-text-sub);
    margin: 0 0 24px;
}

.fp-activity-more {
    font-family: var(--font-english);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.fp-activity-more span {
    transition: transform 0.3s var(--ease-out-expo);
}

.fp-activity-row:hover .fp-activity-more {
    color: var(--color-accent);
}

.fp-activity-row:hover .fp-activity-more span {
    transform: translateX(4px);
}

/* -- ACHIEVEMENTS -- */
.fp-achievements {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a3a5c 0%, #0b2545 100%);
    position: relative;
}

.fp-achievements::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(22, 61, 107, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(184, 150, 62, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.fp-achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.fp-achievement-card {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s var(--ease-out-expo);
}

.fp-achievement-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.fp-achievement-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.fp-achievement-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.fp-achievement-card:hover .fp-achievement-img img {
    transform: scale(1.08);
}

.fp-achievement-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-english);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    background: rgba(184, 150, 62, 0.85);
    padding: 4px 10px;
    border-radius: 3px;
    backdrop-filter: blur(8px);
}

.fp-achievement-body {
    padding: 20px;
}

.fp-achievement-jp {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.fp-achievement-en {
    font-family: var(--font-english);
    font-size: 0.65rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 10px;
}

.fp-achievement-desc {
    font-size: 0.8rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.fp-btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.08em;
    padding: 14px 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    transition: all 0.4s var(--ease-out-expo);
    text-decoration: none;
}

.fp-btn-outline-light:hover {
    color: #fff;
    border-color: var(--color-accent);
    background: rgba(184, 150, 62, 0.1);
}

/* -- NEWS -- */
.fp-news {
    padding: 100px 0;
}

.fp-news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.fp-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fp-news-item {
    border-bottom: 1px solid var(--color-border-light);
}

.fp-news-item a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.fp-news-item a:hover {
    opacity: 1;
    color: var(--color-primary);
    padding-left: 8px;
}

.fp-news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.fp-news-date {
    font-family: var(--font-english);
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.fp-news-cat {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    flex-shrink: 0;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

/* Category Colors */
.fp-cat-event {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
}

.fp-cat-report {
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
}

.fp-cat-press {
    color: #d97706;
    background: rgba(217, 119, 6, 0.08);
}

.fp-cat-media {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.08);
}

.fp-cat-news {
    color: var(--color-accent);
    background: rgba(184, 150, 62, 0.08);
}

.fp-cat-default {
    color: var(--color-text-sub);
    background: rgba(11, 37, 69, 0.05);
}

.fp-news-title {
    font-size: 0.88rem;
    color: var(--color-text-main);
    letter-spacing: 0.02em;
    line-height: 1.6;
}

/* -- SUPPORT CTA -- */
.fp-support {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.fp-support-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.fp-support-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fp-support-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(135deg, rgba(7, 26, 48, 0.85) 0%, rgba(11, 37, 69, 0.72) 100%);
}

.fp-support-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.fp-support-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    margin: 12px 0 20px;
    letter-spacing: 0.1em;
}

.fp-support-text {
    font-size: 0.88rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 48px;
}

.fp-support-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 520px;
    margin: 0 auto;
}

.fp-support-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.fp-support-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-accent);
    color: #fff;
    opacity: 1;
    transform: translateY(-2px);
}

.fp-support-card-label {
    font-family: var(--font-english);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-warm);
    margin-bottom: 8px;
}

.fp-support-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 6px;
}

.fp-support-card p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.fp-support-card-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.fp-support-card:hover .fp-support-card-arrow {
    color: var(--color-accent);
    transform: translateX(4px);
}

/* -- DISCLOSURE -- */
.fp-disclosure {
    padding: 80px 0;
    background: rgba(255, 253, 248, 0.4);
}

.fp-disclosure-inner {
    max-width: 900px;
    margin: 0 auto;
}

.fp-disclosure-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.fp-disclosure-note {
    font-size: 0.8rem;
    color: var(--color-text-sub);
    max-width: 320px;
    text-align: right;
    margin: 0;
    line-height: 1.8;
}

.fp-disclosure-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
}

.fp-disclosure-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 0.82rem;
    color: var(--color-text-main);
    letter-spacing: 0.02em;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.fp-disclosure-link:hover {
    background: #fff;
    color: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.04);
    opacity: 1;
}

.fp-disclosure-link svg {
    opacity: 0.3;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.fp-disclosure-link:hover svg {
    opacity: 1;
    color: var(--color-accent);
    transform: translateX(2px);
}

/* -- FRONT PAGE RESPONSIVE -- */
@media (max-width: 1024px) {
    .fp-achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-activity-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .fp-activity-row--reverse {
        direction: ltr;
    }

    .fp-activity-img {
        height: 300px;
    }

    .fp-activity-info {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .fp-hero-content {
        padding: 0 24px;
    }

    .fp-hero-title {
        font-size: 2.4rem;
    }

    .fp-hero-bottom {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 0 24px 32px;
    }

    .fp-hero-cta-row {
        gap: 20px;
    }

    .fp-mission-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .fp-mission-left {
        flex-direction: row;
        align-items: center;
    }

    .fp-label-num { display: none; }

    .fp-mission-heading {
        font-size: 1.4rem;
    }

    .fp-mission-image img {
        height: 240px;
    }

    .fp-mvv-row {
        grid-template-columns: 1fr;
    }

    .fp-mvv-item {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

    .fp-mvv-item:last-child { border-bottom: none; }

    .fp-achievements-grid {
        grid-template-columns: 1fr;
    }

    .fp-news-item a {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 14px 0;
    }

    .fp-news-title {
        font-size: 0.82rem;
    }

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

    .fp-disclosure-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .fp-disclosure-note {
        text-align: left;
    }

    .fp-disclosure-links {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   28. PRINT STYLES
   ================================================ */
@media print {
    #site-header, footer, .hero, .scroll-indicator { display: none; }
    .section { padding: 20px 0; }
    body { color: #000; background: #fff; }
    body::before { display: none; }
}
